Greg Hurrell

Results 404 comments of Greg Hurrell

I got a new build (after [a bit of help here](https://github.com/neovim/neovim/issues/18087#issuecomment-1105669769)) but it doesn't repro for me with `HEAD` of Neovim's `master`, so it's not version-related. I think the stack...

Interesting @deathmaz. I haven't reproduced this yet, but my working theory is that it's happening [here in auto-pairs](https://github.com/jiangmiao/auto-pairs/blob/39f06b873a8449af8ff6a3eee716d3da14d63a76/plugin/auto-pairs.vim#L625-L630): ```vimscript let info = maparg('', 'i', 0, 1) if empty(info) let old_cr...

> i guess you meant Yes, I did. Thanks, @deathmaz. Anyway, I did a little refactoring in 25ff997799bfc708d8c5d3a3198f78a67bc20fe8 that will allow you to work around the problem in auto-pairs by...

@deathmaz: These two files are in the plug-in: 1. `plugin/command-t.vim` 2. `plugin/command-t.lua` Neovim will load them in that order — Vimscript always comes before Lua. So, in order to force...

@deathmaz: You can try it from the `setup` callback and see if it works. If it doesn't work, you'll know because `:CommandT` will show the old Ruby UI instead of...

Not a Packer user myself but that config looks right to me. I'm not familiar with how you're supposed to use it but the stack trace shows that it's looking...

FWIW @vinitkumar, I just installed Packer in a VM and see the same error as you do if I run `:PackerCompile`. But if I run `:PackerInstall`, I see it download...

> when i press `Ctrl-w` in nvim buffer in insert mode, it will delete the word, the same goes for example when i use https://github.com/ibhagwan/fzf-lua. But this is not the...

> I tried this for command-t Yep @deathmaz, I was going to suggest something like that. Not sure if we should make it the default or not, but I am...

Ok @deathmaz, @yujinyuz; seems reasonable; added to the default mappings in https://github.com/wincent/command-t/commit/1d40403af6ded306967024d0badf0fe7dba4b9b3.