Vim Tips Wiki
(Remove html character entities)
(Adjust previous/next navigation)
Line 3: Line 3:
 
|id=677
 
|id=677
 
|previous=676
 
|previous=676
|next=678
+
|next=679
 
|created=March 15, 2004
 
|created=March 15, 2004
 
|complexity=basic
 
|complexity=basic

Revision as of 10:13, 12 April 2009

Duplicate tip

This tip is very similar to the following:

These tips need to be merged – see the merge guidelines.

Tip 677 Printable Monobook Previous Next

created March 15, 2004 · complexity basic · author Yada · version 5.7


This insert-mode map is fairly easy. It will save a lot of keystrokes for opening and closing braces when programming. It works best with cindent on (:set cindent) since vim will automatically indent to the right tabstop. I mapped it to insert-mode Ctrl-F.

Example:

int main() Ctrl-F

will produce:

int main() {
    |
}

insert the following in your vimrc file

" Opening and closing braces
imap <C-F> {<CR>}<C-O>O

Comments