How to start a qt project using a fake card in qtcreator?

I would like to display the qq key in FakeVim insert mode or in command mode to start the current project. I googled but found nothing. There is an option to match Ex commands. But I have no idea about this.

+4
source share
1 answer

Assign the Run action to run the ex command in the FakeVim configuration.

Ex Command Mapping Configuration

Then put the line map qq :run<CR>in your file vimrcthat is read by FakeVim (by default it is %USERPROFILE%\_vimrcon Windows or ~/.vimrc, the path can be changed on the General tab).

+4
source

Source: https://habr.com/ru/post/1668892/


All Articles