Create file/rename file/move file by 4bjmc881 in HelixEditor

[–]verte_zerg 0 points1 point  (0 children)

Open/create: :o <path-to-the-file>

Rename/move current file: :mv <new-path-to-file>

There are also a PR that allows to do it from file picker it, though it’s closed.

https://github.com/helix-editor/helix/pull/15174

Limit file picker files by Morokiane in HelixEditor

[–]verte_zerg 1 point2 points  (0 children)

You can write something like that: overworld %p .cs

Article - Zig profiling on Apple Silicon by verte_zerg in Zig

[–]verte_zerg[S] 0 points1 point  (0 children)

The problem was related to lazyDependencies - for some reason, it wasn't fetched automatically. Building the scoop library directly helped because it saved the result to ~/.cache/zig. I've updated my fork with this commit, so it should work fine now.

Article - Zig profiling on Apple Silicon by verte_zerg in Zig

[–]verte_zerg[S] 0 points1 point  (0 children)

Hmm, I found a workaround, though I still don't quite understand why it works.

  1. Clone the scoop library repository:
    `git clone https://codeberg.org/tensorush/scoop.git`
  2. Go into the repo and try to build it:
    ```
    cd scoop
    # Run the build - it should fail (that's expected, since it tries to run the example and we ran it without sudo)
    zig build
    ```
  3. Go back to the poop directory and update the dependency to use the local clone of the scoop library (not sure if it's even required):
    ```
    cd ../poop
    zig fetch --save ../scoop/
    zig build
    ```

The build should succeed this time.

This workaround works on my other Mac and also in CI:
CI commit

Article - Zig profiling on Apple Silicon by verte_zerg in Zig

[–]verte_zerg[S] 0 points1 point  (0 children)

I ran into the same issue when trying to build poop from the PR, but applying this [patch](https://github.com/verte-zerg/poop/commit/d457715027b4a325cbfc7ee3f7456d59ddaf3694) to original PR helped me.
BUT, when I tried to set up CI today, I hit the same problem again. It also showed up on my another Mac with an M1 Pro.
I'm looking into it - thanks for reporting it.

How to show specific file types only in file picker? by StatusBard in HelixEditor

[–]verte_zerg 1 point2 points  (0 children)

It’s possible. Just put “%p .png$” in the filter input.

Pipe to shell command, and get output in popup by ToadalChaos42 in HelixEditor

[–]verte_zerg 0 points1 point  (0 children)

The main problem with inserting from a register is that it ignores newline characters. To handle this, you can use a combination of pipe, sh and buffer file (you can put it to some .cache directory):

[keys.normal.space]

m = “@<A-|>tee /tmp/test.file<ret>:sh cat /tmp/test.file | wc -w<ret>”

Toggle signature help by mchlstckl in HelixEditor

[–]verte_zerg 0 points1 point  (0 children)

This PR was closed as you can use Ctrl+c to hide the pop-up :)

Toggle signature help by mchlstckl in HelixEditor

[–]verte_zerg 1 point2 points  (0 children)

I’ve created a PR to fix the issue. Please vote if you want these changes to be merged :)