oberblastmeister

Results 71 comments of oberblastmeister

Yeah we should probably be reporting these errors.

I have a lot of experience with this because I implemented the async library in plenary. The first iteration was basically a direct copy of https://github.com/ms-jpq/lua-async-await. It was not the...

Could there also be a way to disable filtering and sorting all together but also still allow the user to type while the completion just stays? This can help with...

Example using the work around to set filterfunc to ```lua vim.api.nvim_register_filterfunc(function() return 1 end) ``` will produce this behavior: ![completion_menu](https://user-images.githubusercontent.com/61095988/106954247-85105380-6701-11eb-97e7-d85bf8acd7ee.gif) Having an option to disable filtering should result in the...

tldr: the plugin sorts internally, not using filterfunc to make the menu smoother. this collides with filterfunc causing flickering. disabling filterfunc removes flickering. currently i disable it by doing ```lua...

Allowing filterfunc to be nil is a good idea but what I am proposing is to disable any filterer, even the default exact prefix matching. The result of this should...

@chentau thank you for your explanation. I guess returning one from a function will work. I am wondering about performance though because vim should still be trying to sort the...

@tjdevries haha yes this was for the beloved rofl.nvim :smile: `filter_func = false` would be nice because even though you set the filterfunc to `function() return 1 end` it might...

When I call complete in quick succession neovim is crashing `free(): invalid pointer zsh: abort (core dumped)` This is the output of `coredumpctl -1 gdb` ``` PID: 244187 (nvim) UID:...

I think we could add this flag. I don't know if we should add a confirmation prompt, as `trash` is a lot less destructive than `trash empty`, `trash restore`, or...