Feiyou Guo
Feiyou Guo
Sure thing. I will be looking into this as soon as I get some free time.
Interesting idea. I will look into this once I have time.
I believe 0.7 is going to be released today. Even if I am going to introduce a new interface to add commands to command_center based on the new API, I...
With ecb8b488584807bd14eddb1443b0797e3033bdcc, `command_center` now lets you to pass a Lua function as a command.
Supposedly, if you want use lua function, you'd have to use neovim 0.7 because it requires the new api. Otherwise, you can stick with 0.6 (see [this section](https://github.com/FeiyouG/command_center.nvim#command_centeradd)) However, I've...
> Supposedly, if you want use lua function, you'd have to use neovim 0.7 because it requires the new api. Otherwise, you can stick with 0.6 (see [this section](https://github.com/FeiyouG/command_center.nvim#command_centeradd)) >...
I am glad you love it! I was working on making command_center support/accept which-key and legendary's syntax, but not vice versa. However, this sounds like an even better idea. I...
Replace `command` with `cmd`.: ```lua { description = "...:", command = "...", ... } ``` is replaced by ```lua { description = "...:", cmd = "...", ... } ``` Using...
Many keywords and constants are shortened to make `command_center` less verbose to use. Specifically: 1. we used to specify a command to be added to `command_center` like this: ```lua {...
Thanks for bring this to my attention. I will look into this once I get some time this week. It should be an easy fix.