I'm trying to learn vim/vimscript by making changes to my .vimrc
as I find things I want to improve. One example is that I now print a paired closing paren whenever I type an open, using:
:inoremap ( ()<left>
This puts me back in the center of the parens, leaving me with a new problem.
How can I write a function that, upon typing the )
character in insert mode, moves a space to the right (without printing anything) if the cursor is currently over that same character, but prints it normally otherwise?
I've tried the following, but it sounds like there's something I don't understand, since this will just print the literal string '<Esc>la' in the scenario where I want to move a space to the right.
:inoremap <expr> ) PrintParenIfNotOnParen()
:function PrintParenIfNotOnParen()
: if getline(".")[col(".")-1] == ')'
: return '<Esc>la'
: else
: return ')'
: endif
:endfunction
What am I missing?
The solution is actually in the help. By typing
:helpgrep Eatchar
you get:In your case you need only to change the last line :