Results 654 comments of Enno

@lifepillar Just discovered the list option, which seems similar to [Vim's `complete+=k`](https://github.com/girishji/vimcomplete/pull/86#issuecomment-2522534145). Might have been a Vim tip somewhere, and maybe needs to be known more > Other MUcomplete methods...

@lifepillar It seems as if `cmd` in `:help mucomplete-methods` is superseded by `omni` with `setlocal omnifunc=vimcomplete#Complete` in https://github.com/vim/vim/pull/18568

Similar to https://github.com/Konfekt/fzf-grep-all.sh/

Since this issue recurs regularly with many duplicates, should the doc point to these plug-ins or one try to build it in?

> compilers always output errors in the format filename:line:column @carli2 the fetch plug-in also handles other variants and seems rather robust. Still, it would make users' life more convenient if...

> I do think adding a whole family of :editq commands would nicely resolve the ambiguity, and you could do :editl if you want the location list. But that's a...

There are workarounds such as below from https://fortime.ws/blog/2020/03/14/20200312-01/ to use, say, arrow keys to scroll in popup window. ```vim function! s:IsScrollPopup() let winids = popup_list() if empty(winids) | return {}...

I agree that previewpopup does not feel finished; one reason being that this option is disabled by default and little known. Since the popup, different from the windows, is not...

In ```vim " syntax/javascript.vim (line 77) if exists("javaScript_fold") ``` there is rather `javaScript`, but let's prefer `javascript` as it is a single word rather than a composed one, even though...

@djmoch When you say changes, do you mean any change to the file or in substance? Replacing ```vim get(g:, 'csslint_makeprg', '') ``` to ```vim get(g:, 'csslint_makeprg', 'csslint') ``` will fully...