Alan
Alan
There's a bug currently: default keymap still gets applied if there's a `.helix` directory with other bindings in the project root. Edit: fixed now.
> I set it using fish shell with "set" but it does not change anything in the man page. Fish variables are not exported by default. For `moar` and other...
`set -x MANROFFOPT '-c'` should do the trick. But `LESS_TERMCAP_so` should work for the statusline even without it. @walles I think `$MANROFFOPT` could be included in debug output the same...
At least on some systems `MANPAGER` has precedence over `PAGER`, so `MANPAGER=less PAGER=moar man moar` will open `less`. I'd recommend running `man moar | moar` instead. Or like this for...
> On fish you cannot put the export command like that You can [since version 3.1.0](https://fishshell.com/docs/current/relnotes.html#fish-3-1b1-released-january-26-2020) > First of all, can you tell me why some people share commands with...
Just for my own learning, why is `crane` needed given that you can just give `rustPlatform.buildRustPackage` the local lockfile?
Potential colorscheme contributors would need unambiguous (to the possible extent) mapping between languages, capture groups and KTS faces. Here's my first try. I left comments marked with `?` where I...
In the meantime, one workaround to achieve blocking calls to `zellij run` would be to use [FIFO](https://www.baeldung.com/linux/anonymous-named-pipes)s (aka named pipes). It's a bit hacky but still simple enough. Here's an...
@blixenkrone you can open multiple files at once if you change it to ```zsh files=(${(fqq)"$( yazi --chooser-file=/dev/stdout | cat )"}) zellij action toggle-floating-panes zellij action write 27 # send escape-key...
> With this version i get the error "wrong argument count". You're probably executing the script with bash, not zsh, perhaps due to not adding the shebang? Try adding `#!...