hands-free-vim / neovim-talon

Talon user file set for controlling both neovim editing and neovim terminals using Talon voice.
MIT License
3 stars 2 forks source link

have `vim_run_command` to effectively run a command in command mode #21

Open saidelike opened 2 months ago

saidelike commented 2 months ago

At the moment we execute lots of commands from normal mode, for instance:

user.vim_run_normal_exterm(":term\n")

Moreover if you look at neovim-talon or talon-vim and look for all the commands that we try to execute ((": allows to find them all), there is some inconsistency because sometimes we use vim_run_normal/vim_run_normal_exterm, vim_run_commandline/vim_run_commandline_exterm or actions.insert.

However what we should really do is just:

saidelike commented 2 months ago