Jay Sitter

Results 61 issues of Jay Sitter

This allows the user to define things like `_`, `-`, or `$` to be included as buffer words by setting `iskeyword`

Keywords are only refreshed on `BufWinEnter`; does not obey the value of `events` in options: https://github.com/prabirshrestha/asyncomplete-buffer.vim/blob/c431ec2c174128564140986759b0da786391769b/autoload/asyncomplete/sources/buffer.vim#L54

`:h complete-item` says: ``` kind single letter indicating the type of completion ```

Because this plugin is only triggered on word characters (`let l:kw = matchstr(l:typed, '\w\+$')`), if a string is entered that contains hyphens, for instance, tags aren't searched. Would it be...

Right now the text in the buffer is split with the `\W` character, which includes hyphens; I'd like to be able to configure it so that it splits by other...

Do I need to do a `register_source` for this? I don't see anything about it in the docs, but I had to do it for all the other asyncomplete plugins.

Doesn't seem to happen when you first start typing something; only after going into insert mode, then back into normal mode, then back into insert mode again. Minimal .vimrc: ```vim...

The `grep` that comes with macOS is `grep (BSD grep) 2.5.1-FreeBSD`, which doesn't contain the `-P` flag, so searching tags fails. To fix this I installed the Homebrew `grep`, which...

Using `taglist`, we can get the tag "kind" and put that in the completion menu (the "c" here indicating "class" from .ctags config):

Because this plugin is only triggered on word characters (`let l:kw = matchstr(l:typed, '\w\+$')`), if a string is entered that contains hyphens, for instance, tags aren't searched. Would it be...