Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vim DelimitMate

Tags:

vim

With the DelimitMate, it auto generates the closing parentheses. When I'm finished typing inside the parenthesis, what key strokes do I press to quickly go to the right of the closing parenthesis? (Right now I have to manually press ESC then 'a')

like image 696
Glide Avatar asked Feb 08 '13 10:02

Glide


1 Answers

The idea of these auto-closing plugins (like the original feature implementation found in IDEs like Eclipse) is that you just type the closing character to go over it. The plugin should detect this situation and instead of inserting the character jumps over the existing, auto-inserted one.

If that's not working for you, there are several plugin alternatives on offer. The Vim Tips Wiki has a list of them.

like image 74
Ingo Karkat Avatar answered Oct 06 '22 17:10

Ingo Karkat