Does anybody get these weird repeated ()()()()()() in Vim? -


couple of times day this, when typing in browser() statement while debugging.

enter image description here

it repeats whole bunch of brackets, when typed pair. type "browser() esc :w enter" (without quotes) can save , go r environment, , pauses second, , sticks these brackets in. it's not problem, quick undo takes out, wondering why this. moving fast vim (touch typist).

i'm using vim 7.3 on windows 7. on more 1 machine. in cases i'm mapping caps lock escape using sharpkeys, don't know if might factor. seeing this? remedy?

thanks.

for completeness, here vimrc file:

colorscheme clarity syntax enable set guifont=consolas:h10:cansi set number  set tabstop=4 set shiftwidth=4 set softtabstop=4 set expandtab set autoindent set smarttab set backspace=indent,eol,start set nocompatible set expandtab filetype plugin on filetype indent on set ruler set cursorline set noerrorbells set visualbell "set guioptions-=m set guioptions-=t 

i guessing on line 32 had:

browser 

then typed:

90a()<esc> 

the mistake here being typed "90", thinking in insert/append mode, realized weren't went mode, typed parenthesis, exited. told vim "append text 90 times", , gladly did you, ended with:

browser()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()()() 

it's ok, happens best of us.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -