Michael Dorst
Michael Dorst
@Kangaxx-0 I updated the steps to repro. You do have to have uncommitted changes for this to happen.
For anyone trying to do `git commit` in an alias like I was, a simple workaround is to use a function instead. ``` def gca [] { git add -A...
@CAD97 Not quite. The `-a` flag will commit all files that have been changed or deleted, but not new files. To commit absolutely everything including new files you need to...
@merelymyself it works perfectly in 0.65.0, so I think it's unlikely to be an i3 problem.
Okay, now I don't know what the hell is going on. I tested with changing my shell to `zsh` and `bash`, and it's broken on both of them. I don't...
Okay, so I've figured out the problem. I was not specifying the full paths to the scripts I was running. ``` exec_always --no-startup-id set-wallpaper ``` should have been ``` exec_always...
@merelymyself yes my configuration does work now that I'm specifying full paths.
@kubouch That command didn't work but `$env.PATH` did. `$env.PATH | to text` on `0.65.0`: ``` /home/michael/.cargo/bin /home/michael/.local/bin /sbin /bin /usr/local/sbin /usr/local/bin /usr/bin /usr/sbin /var/lib/snapd/snap/bin /usr/bin/site_perl /usr/bin/vendor_perl /usr/bin/core_perl ``` `$env.PATH |...
Personally I have the vi indicator disabled in insert mode, and change to `[V]` in normal mode. I do this because I'm in insert mode 90% of the time, and...
The tutorial should be updated so people know to enable the `lexer` feature.