Tony Chen

Results 66 comments of Tony Chen

If you have neovim 0.6+, newest master should have something similar to what you want. You could set up a custom keybinding to place a bookmark and then prompt the...

See #13 for more discussion.

Yes, this is possible, but difficult to do and thus low priority. Extmarks can have extra tagged data associated with them (like annotations), but regular marks are much more inflexible....

There is no filetype for popups, but you can set an autocmd on `WinEnter`, and check if your current window is floating via `vim.api.nvim_win_get_config()`. This will be a suitable workaround...

Can you please describe really quickly the intended usecase for this; ie, what would this allow that a regular toggle could not? Thanks for the PR.

One of the barriers for builtin auto completion is that there is no way to add and remove completion candidates after completion is started. So we have to either expose...

> people now mention auto-completion (which I think is mostly orthogonal to this), and chaining completion sources (your proposal seems to attack a different problem?) Yes, this proposal is slightly...

> Is filterfunc always global? is it possible to be for only a buffer? filterfunc is global, and I'm actually not so sure whether having it be buffer local is...

@bfredl There is one edge case that might merit more discussion. Sometimes, when starting completion, `compl_leader` will be set to `NULL`, meaning that no sorting/filtering is done. That means that...

@oberblastmeister If a plugin wants to take over filtering and sorting from the user, it can just specify the `filterfunc` key of the opts dict like so: `vim.api.nvim_complete(1, my_completion_entries, {filterfunc...