Where can I find the source code for C-W operation (delete a word in insert mode) of GVim?
I tried to search in the Vim repository http://vim.svn.sourceforge.net/viewvc/vim/vim7/ but I am not able to find it there.
I need the implementation in vimscript and not c++.
Some help would be appreciated.
Vim is written in C (not C++), and the code for the insert mode command is therefore written in C, not Vimscript. If you look at line 1074 in
src/edit.cyou can see that theins_bs()function is used:You should probably just explain what you really want to do, though…