Daniel Hahler

Results 1440 comments of Daniel Hahler

See the [example 3](https://github.com/blueyed/awesome-cyclefocus#example-3-cycle-through-clients-with-the-same-class), which provides cycling through clients with the same class. Implementing what you have described is not trivial, because it requires to change the filter(s) while cycling...

It seems the dropdown has no tag attached (anymore)? Please try the following patch: ```diff diff --git i/init.lua w/init.lua index fe47736..2e497d7 100644 --- i/init.lua +++ w/init.lua @@ -601,7 +601,9 @@...

Just for reference: quoting could be avoided / forwarded to Neovim/Vim by not wrapping it manually in a shell (cmd.exe) probably. See https://github.com/mhinz/vim-grepper/issues/166 about using Python's `shlex.split` to split a...

Changed the vint changes.. for the map expr you can use "'foo'", i.e. double quotes for the outer level. What about a `.vintrc.yaml`? ```yaml policies: ProhibitEqualTildeOperator: enabled: false ProhibitUnnecessaryDoubleQuote: enabled:...

@tgoodlet https://github.com/tpope/vim-unimpaired/blob/4971b4226aa6f8a89fe4ba22310eb2451c84233a/doc/unimpaired.txt#L38-L39

@agross It would be nice, if you could provide your customizations as a pull request and/or fork.

I am using `g:deoplete#auto_complete_delay = 50` (or 100), but it's still noticable. Profiling shows this: ``` FUNCTION tmuxcomplete#completions() Called 12 times Total time: 1.172690 Self time: 1.172442 count total (s)...

Ok, there's the difference between word and WORD then, but we agree that `'foo bar'` should not get matched, right? :) The problem with the current pattern is that it...

> It was split on spaces before surrounding non word characters are stripped. Oh, I forgot about that part. Sorry. Then it's just about WORD vs. word, yes.