vote up 5 vote down star
2

Hi,

I use some maps while I code :

imap ( ()<C-[>i
imap [ []<C-[>i
imap { {}<C-[>i

so that when I put "(" , it writes "()" (same thing for "[" and "{" ). The problem is that when i paste something into Vim :

for (i = 0; i < count; i++) {
tab[i] = something()
}

I get

for (i = 0; i < count; i++) {
tab[i] = something()
}  
)]})

Is it possible to avoid the extra brackets?

flag

1 Answer

vote up 9 vote down check

You want the 'paste' option; set it with :set paste. It disables insert mode mappings, abbreviations, and other autoformatting options.

The other thing is that there are multiple ways to paste:

  • "+p
  • :set mouse=a and then middle-click
  • insert mode, <C-R>+

All of these will correctly paste. The only one that confuses vim is when you use your terminal's "paste" command.

link|flag
Thank you. That's what I wanted. If I want to enable my abbreviations I must do :set nopaste – Taurus Olson Mar 21 at 0:22
One thing I like to do is bind a function key to toggle an option, like map <F4> :set paste!^M. (You have to type the ^M as <C-V><C-M>.) – jleedev Mar 21 at 0:32
1  
You can use <Cr> instead of typing ^M using ^V, this is more portable. You can also use the following mapping: map <F4> :set paste! paste?<Cr> so that after pressing F4 you'll see the new state of the option. – Paul Mar 21 at 12:36
":set paste! paste?<CR>" That's a nice trick Paul, thanks for mentioning it! – blixtor Mar 25 at 10:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.