Maxim Zhukov

Results 9 issues of Maxim Zhukov

cmp-path requires nvim-cmp at init, because of this I can't use this plugin as `requires` (dependency of nvim-cmp) in packer.nvim How about extract some nvim-cmp types into a new plugin-library...

I try this plugin from neovim/vim for me works this fix: ```diff diff --git a/plugin/quickfix-reflector.vim b/plugin/quickfix-reflector.vim index dbad617..3342f3d 100644 --- a/plugin/quickfix-reflector.vim +++ b/plugin/quickfix-reflector.vim @@ -34,7 +34,7 @@ function! s:OnQuickfixInit() augroup...

https://github.com/neovim/neovim/issues/7502

### Expected Behavior When a send /info, I receive a message containing my stats ### Actual Behavior When I send /info, I receive a message: "Stats not loaded yet" ###...

Bug
Waiting on Changes

Thanks for your great plugin! How about using treesitter for `find` function in `augend.user` (add a new helper)? treesitter can return textrange for found node via https://neovim.io/doc/user/treesitter.html#tsnode:range().

enhancement

vimrc: ```vim set nocompatible filetype off set runtimepath+=~/.vim/bundle/dein.vim/ call dein#begin(expand('~/.vim/bundle/')) let g:dein#types#git#clone_depth = 1 call dein#add('tpope/vim-surround') call dein#end() filetype plugin indent on ``` test sample: $ - cursor ```c #include...