sudo-nice
sudo-nice
I propose to exchange current mappings `cw` and `cW`. Reasons: 1. Open vim, enter a string like `foo.ext`, place the cursor at `f` and press viw. You will get selected...
I see, thank you.
The exact example I thought about, was viewing images with sxiv: ``` filetype *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm \ {View with sxiv} \ sxiv -ab %d %i &, ``` This way, I can view...
Yes, it's kind of combination of searching and sorting. Let's look into details: ### Example: `?mp3$/s` It should search for `mp3$` **from the very bottom** of the file-list. So, the...
I think, `01` -> `03` -> `02` and then wrap again is more consistent acting, as we expect to iterate all over the matched files and unlikely want to miss...
Also related, this: ```ruby Process.detach spawn( "foo", *bar, [:out, :err] => "/dev/null", ) ``` formates to this: ```ruby Process.detach spawn( "foo", *bar, [:out, :err] => "/dev/null", ) ```
`['alacritty', '-e', 'nvim', '{file}']`
But why do you want to put the error at the bottom? Wouldn't it be better to print the most important information (the error message) at the top, where it...
@paulcsmith Oh, I see. For me it's opposite, I see the top and have to scroll to the bottom when needed. So, currently it's quite comfortable for me to observe...
@straight-shoota sorry for delay. > But I'm not really sure if the OP had this in mind. You got it right, the intention was to have global options (come before...