ii14
ii14
- [x] Completing `echo [bufnr` eats the `[`. - [ ] Completing `set no` eats the `no`.
When changing the current buffer cursor is moved to the end of the new buffer, and it remains in insert mode. ``` :e some_file.txt :Repl /v b1 ```
A somewhat common thing to do is having post-install hooks. Maybe it could be included in the spec? A couple of ideas for the syntax (not 100% sure about the...
Maybe plugins should have some standard way of accessing versions of their dependencies to handle differences in API and behavior between versions? Example: ```lua packspec["telescope"].version -- returns a string, eg....
The way I see it there are a couple problems with the current `dependencies` format. First, special dependencies like `neovim`. I assume the implementation is supposed to just have special...
An alternative solution to #589 is to have a way of capturing variables that can be printed on assertion failures, to give them more context. ```lua describe('foo', function() it('does something',...
If the incoming HTTP header is invalid, which can be as trivial as providing the HTTP method in lowercase instead of uppercase, the socket is never released and it just...
Variables that start with a underscore character are conventionally considered private. Move them to the end when sorting completions.
Navigating the history after typing `print` should only match entries that start with `print`. This behavior should be optional.