Christian Brabandt
Christian Brabandt
hm, there is a sleep here: https://github.com/chrisbra/vim-autosave/blob/4ce9338e4798bc4451a9ce479ce7767aa2f8a54b/plugin/autosave.vim#L247-L255 but you shouldn't have hit this part, if there wasn't an error
I cannot reproduce this. Are you sure, you so not have an error and it runs into the Warning msg mentioned above?
Can you please show `:echo v:errmsg`
On So, 26 Mai 2019, Andy Massimino wrote: > I'd like to use vpager's -Q mode for terminal replacements of ":make" and ":grep." My issue is with the VPAGER buffer,...
I don't think I have ever stumbled over the perl style short names (or what this is called). But if you think this is useful, I am willing to integrate...
what exactly does not work? Please be specific. How do you undo? What exactly happens when you use `u` to undo? Do you see an error message? What about `g+`/`g-`...
when this happens, can you please show the following output: ``` :changes :echo &undolevels :echo changenr() ```
Assuming, the indentation should always start at the same level as the previous closing brace, this patch works: ```patch diff --git a/indent/sh.vim b/indent/sh.vim index d2fb1ba..aa47c6d 100644 --- a/indent/sh.vim +++ b/indent/sh.vim...
It's probably this one here: https://github.com/chrisbra/vim-sh-indent/blob/c646b1ac2662574bac53e09d702addb902cda03c/indent/sh.vim#L41 But if I remove this, then `do` won't be de-indented. Note sure if this is okay
Try this patch: ```patch diff --git a/indent/sh.vim b/indent/sh.vim index fde258d..73c8cd6 100644 --- a/indent/sh.vim +++ b/indent/sh.vim @@ -109,7 +109,9 @@ function! GetShIndent() let ind += s:indent_value('continuation-line') endif elseif s:end_block(line) && !s:start_block(line)...