kiryph
kiryph
Note, there is a vim builtin mapping `zi` to invert `foldenable`. --- I guess you have to convice tpope to add toggling mouse support. Writing a PR would make it...
Actually ``` ][q :copen []q :cclose ][l :lopen []l :lclose ``` add delays and do not override built-ins which I would not want either. I certainly think they are a...
Do you know [vim-indentwise](https://github.com/jeetsukumaran/vim-indentwise)?
I also thought about this a little bit more. And latex does not make this easy. Consider following two cases: ```tex \textcolor{red}{text in red} % single command with two mandatory...
@lervag @machakann thanks for your feedback. 1. Maybe a small improvement could be support for one argument in square brackets. Real-world examples would be: ```tex \chapter[toctitle with spaces]{title} \todo[inline]{hello} \framebox[1in]{text}...
I suspect the OP is referring to the concealment feature of vim and uses the term "visual editing mode" for it. This is unfortunate since vim provides a "visual mode"...
Just for the record: `[i` and `]i` step on the feet of vim itself ``` *[i* [i Display the first line that contains the keyword under the cursor. The search...
Mmmh. I am not sure if you got me right here. Your plugin works just fine for me. I just miss additional functionality and was wondering what mappings could be...
Workaround: add `Esc` to `feedkeys()`: ```diff diff --git a/plugin/ninja-feet.vim b/plugin/ninja-feet.vim index 7a5fc32..e80c0e5 100644 --- a/plugin/ninja-feet.vim +++ b/plugin/ninja-feet.vim @@ -28,12 +28,12 @@ endfunction function! s:ninja_insert(mode) let op = a:mode == 'line'...
> That would work, but as I pointed out before, implementing it as an operator would have the unintended side effect of overwriting the most recent operation (i.e., it breaks...