FakeVim
FakeVim copied to clipboard
Vim emulation in QTextEdit, QPlainTextEdit and similar Qt widgets
My .vimrc is shared with my actual vim installation. I have the following mappings, which lead to errors: ``` map j gj map k gk ``` This works fine in...
I hava a vimrc config file for Fakevim plugin, there is a `map` command in that file: ``` noremap yy "+yy ``` The source code lines below will delete the...
I found the following source code: ``` static const QMap k = { // FIXME: Should be value of mapleader. {"LEADER", Key_Backslash}, ``` It seems that the `leader` key is...
As stated in : > It is not possible to add a comment to a shell command ":!cmd" or to the ":map" command and a few others (mainly commands that...
qtcreator has "rewrap paragraph" which works almost correctly, unfortunately not quite (not entirely sure how it is supposed to work, it never does what I want), so can't just do...
I'd love to see binary builds that let the users integrate FakeVim with PyQt5 and let them add this library as a regular Python dependency. (This is essentially to improve...
It would be convenient to have `:put` and its shortcut version `:pu`, which would put the text [from register x] after [line] (default current line). So far `Not an editor...
I have this behaviour in the plugin for Qt creator. When I place a mark using the m mapping, and then add lines of text above the mark, moving back...
Control + S shortcut is not passed to Qt Creator in non-insertion mode under Linux. In Mac, if I press Command + S and file is not changed, fakevim behaves...
Hi, the following keymappings don't work in qt-creator with fakevim enabled. ``` nnoremap :save nmap :projectrun noremap noremap ``` Is there any workaround?