On Wed, Nov 13, 2013 at 06:49:48AM +0100, Tony Mechelynck wrote:
> On 13/11/13 04:07, Patrick Brisbin wrote:
> >Thank you very much for your thorough response.
> 
> My pleasure.
> [...]
> >Thank you for those resources. I believe I'm well capable of compiling my own
> >software; I just usually prefer not to. As far as I can tell, nothing between
> >86 and 91 looks like it may fix this, though I will compile and test 91 as 
> >soon
> >as I get a chance.
> 
> Before you do: I notice that there is a "system vimrc" on your system, or
> rather two of them: /etc/vimrc and /usr/share/vim/vimfiles/archlinux.vim —
> IIUC, the -u command-line argument also skips these, so that's one more
> place to check for a possible culprit. If they are, using an own-compiled
> Vim with default settings would check /usr/local/share/vim/vimrc instead,
> and find of course nothing, so if the problem is there it would rid you of
> it.

That explains some things. Seems nocompatible is required for the bug to
reproduce, and that (and not much else) was in archlinux.vim.

Here's a new truly minimal case, which can indeed be triggered with vim
-u example.vim:

  " example.vim
  set nocompatible

  function RegenerateCtags()
    silent! execute '!true'
  endfunction

  autocmd BufEnter * call RegenerateCtags()

> >As you can see in the previously attached bugreport.txt, vim has a value
> >of ^[[>c for t_RV. I've also confirmed that the output of ":set termcap"
> >shows the same.
> 
> Ah, yes, I should have checked that attachment in more detail than I did.
> And on second thought, if you get that ^[[2;2R display at every BufEnter it
> cannot be the termresponse string, which Vim receives only once per session.
> 
> Since your "problematic" BufEnter invokes a subshell (bash or similar called
> by Vim) I think the options with names starting with "shell" should be
> attentively scrutinized. Let's see what you have:
>   shell=/bin/zsh
>   shellcmdflag=-c
>   shellpipe=2>&1| tee
>   shellquote=
>   shellredir=>%s 2>&1           not the Vim default when 'shell' is zsh
>   shelltemp
>   shellxquote=
>   shellxescape=
> 
> Nothing seems glaringly suspect to me, but then again, I don't know zsh very
> well — my default shell is bash.
> 
> OK, another possibility: BufEnter autocommands. I'm not considering those
> which are about file type detection, but there are a few which puzzle me:
> 
> CtrlPMRUF  BufEnter
>     *         cal s:record(expand('<abuf>', 1))
> BufEnter
>     *         call s:RegenerateCtags()
> railsPluginDetect  BufEnter
>     *         if exists("b:rails_root")|silent doau User BufEnterRails|endif
> FileExplorer  BufEnter
>     *         sil! call s:LocalBrowse(expand("<amatch>"))
> 
> Ah, that last one (FileExplorer) I've also got; I suppose it must be from
> the netrw plugin. But the others aren't familiar to me.

I apologize, I generated bugreport.txt from my normal environment, not
the one with the minimal reproducing case loaded. I've attached a new
file which should have less and more default settings -- but still
produces the bug.

Thanks,
Pat

-- 
patrick brisbin
uname -a
Linux black 3.11.6-1-ARCH #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013 x86_64 
GNU/Linux


VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 10 2013 20:26:12)
Included patches: 1-86
Compiled by Arch Linux
Huge version with GTK2 GUI.  Features included (+) or not (-):
+acl             +dialog_con_gui  +insert_expand   +mouse_sgr       +ruby       
     +vertsplit
+arabic          +diff            +jumplist        -mouse_sysmouse  +scrollbind 
     +virtualedit
+autocmd         +digraphs        +keymap          +mouse_urxvt     +signs      
     +visual
+balloon_eval    +dnd             +langmap         +mouse_xterm     
+smartindent     +visualextra
+browse          -ebcdic          +libcall         +multi_byte      -sniff      
     +viminfo
++builtin_terms  +emacs_tags      +linebreak       +multi_lang      
+startuptime     +vreplace
+byte_offset     +eval            +lispindent      -mzscheme        +statusline 
     +wildignore
+cindent         +ex_extra        +listcmds        +netbeans_intg   
-sun_workshop    +wildmenu
+clientserver    +extra_search    +localmap        +path_extra      +syntax     
     +windows
+clipboard       +farsi           +lua             +perl            +tag_binary 
     +writebackup
+cmdline_compl   +file_in_path    +menu            +persistent_undo 
+tag_old_static  +X11
+cmdline_hist    +find_in_path    +mksession       +postscript      
-tag_any_white   -xfontset
+cmdline_info    +float           +modify_fname    +printer         -tcl        
     +xim
+comments        +folding         +mouse           +profile         +terminfo   
     +xsmp_interact
+conceal         -footer          +mouseshape      +python          
+termresponse    +xterm_clipboard
+cryptv          +fork()          +mouse_dec       -python3         
+textobjects     -xterm_save
+cscope          +gettext         +mouse_gpm       +quickfix        +title      
     -xpm
+cursorbind      -hangul_input    -mouse_jsbterm   +reltime         +toolbar    
     
+cursorshape     +iconv           +mouse_netterm   +rightleft       
+user_commands   
   system vimrc file: "/etc/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
  system gvimrc file: "/etc/gvimrc"
    user gvimrc file: "$HOME/.gvimrc"
2nd user gvimrc file: "~/.vim/gvimrc"
    system menu file: "$VIMRUNTIME/menu.vim"
  fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK  -pthread 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 
-I/usr/include/libdrm -I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 
-I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz 
-I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/freetype2  -D_FORTIFY_SOURCE=2  -march=x86-64 -mtune=generic -O2 
-pipe -fstack-protector --param=ssp-buffer-size=4 -U_FORTIFY_SOURCE 
-D_FORTIFY_SOURCE=1      
Linking: gcc   -L. -Wl,-O1,--sort-common,--as-needed,-z,relro -fstack-protector 
-rdynamic -Wl,-export-dynamic -Wl,-E -Wl,-rpath,/usr/lib/perl5/core_perl/CORE  
-Wl,-O1,--sort-common,--as-needed,-z,relro -L/usr/local/lib -Wl,--as-needed -o 
vim   -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo 
-lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 
-lfontconfig -lfreetype  -lSM -lICE -lXt -lX11 -lXdmcp -lSM -lICE  -lm 
-lncurses -lelf -lnsl   -lacl -lattr -lgpm -ldl  -L/usr/lib -llua -Wl,-E 
-Wl,-rpath,/usr/lib/perl5/core_perl/CORE 
-Wl,-O1,--sort-common,--as-needed,-z,relro -fstack-protector -L/usr/local/lib  
-L/usr/lib/perl5/core_perl/CORE -lperl -lnsl -ldl -lm -lcrypt -lutil -lpthread 
-lc -L/usr/lib/python2.7/config -lpython2.7 -lpthread -ldl -lutil -lm -Xlinker 
-export-dynamic   -lruby -lpthread -lrt -ldl -lcrypt -lm  -L/usr/lib   


--- Directories and Files ---
$VIM = "/usr/share/vim"
directory "/usr/share/vim" exists
$VIMRUNTIME = "/usr/share/vim/vim74"
directory "/usr/share/vim/vim74" exists
"/usr/share/vim/vim74/doc/help.txt" is readable
"/usr/share/vim/vim74/doc/tags" is readable
"/usr/share/vim/vim74/menu.vim" is readable
"/usr/share/vim/vim74/filetype.vim" is readable
"/usr/share/vim/vim74/syntax/synload.vim" is readable
--- Scripts sourced ---
  1: ~/example.vimrc
  2: /usr/share/vim/vimfiles/plugin/eclim.vim
  3: /usr/share/vim/vimfiles/eclim/plugin/android.vim
  4: /usr/share/vim/vimfiles/eclim/plugin/django.vim
  5: /usr/share/vim/vimfiles/eclim/plugin/eclim.vim
  6: /usr/share/vim/vimfiles/eclim/autoload/eclim/util.vim
  7: /usr/share/vim/vimfiles/eclim/autoload/eclim/common/buffers.vim
  8: /usr/share/vim/vimfiles/eclim/plugin/ftdetect.vim
  9: /usr/share/vim/vimfiles/eclim/plugin/ftdetect_adt.vim
 10: /usr/share/vim/vimfiles/eclim/plugin/ftdetect_jdt.vim
 11: /usr/share/vim/vimfiles/eclim/plugin/java_tools.vim
 12: /usr/share/vim/vimfiles/eclim/plugin/project.vim
 13: /usr/share/vim/vimfiles/eclim/plugin/vimplugin.vim
 14: /usr/share/vim/vimfiles/plugin/godoc.vim
 15: /usr/share/vim/vim74/plugin/getscriptPlugin.vim
 16: /usr/share/vim/vim74/plugin/gzip.vim
 17: /usr/share/vim/vim74/plugin/matchparen.vim
 18: /usr/share/vim/vim74/plugin/netrwPlugin.vim
 19: /usr/share/vim/vim74/plugin/rrhelper.vim
 20: /usr/share/vim/vim74/plugin/spellfile.vim
 21: /usr/share/vim/vim74/plugin/tarPlugin.vim
 22: /usr/share/vim/vim74/plugin/tohtml.vim
 23: /usr/share/vim/vim74/plugin/vimballPlugin.vim
 24: /usr/share/vim/vim74/plugin/zipPlugin.vim
 25: /usr/share/vim/vimfiles/eclim/autoload/eclim/display/signs.vim
 26: /usr/share/vim/vim74/bugreport.vim
--- Options ---
  aleph=224         nodigraph             indentexpr=         pumheight=0       
  tagrelative
noarabic              display=          noinfercase           quoteescape=\     
  tagstack
  arabicshape         eadirection=both  noinsertmode        noreadonly          
notermbidi
noallowrevins       noedcompatible        isprint=@,161-255   redrawtime=2000   
  termencoding=
noaltkeymap           encoding=utf-8      joinspaces          regexpengine=0    
noterse
  ambiwidth=single    endofline           key=              norelativenumber    
  textauto
noautochdir           equalalways         keymap=             remap             
notextmode
noautoindent          equalprg=           keymodel=           report=2          
  textwidth=0
noautoread          noerrorbells          keywordprg=man    norevins            
  thesaurus=
noautowrite           esckeys             langmap=          norightleft         
notildeop
noautowriteall        eventignore=        langmenu=         noruler             
  timeout
  background=light  noexpandtab           laststatus=1        rulerformat=      
  timeoutlen=1000
  backspace=        noexrc              nolazyredraw          scroll=32         
  title
nobackup              fileencoding=     nolinebreak         noscrollbind        
  titlelen=85
  backupcopy=auto     fileformat=unix     lines=66            scrolljump=1      
  titlestring=
  backupext=~       nofileignorecase      linespace=0         scrolloff=0       
nottimeout
  backupskip=/tmp/*   filetype=         nolisp              nosecure            
  ttimeoutlen=-1
  balloondelay=600  nofkmap             nolist                selectmode=       
  ttybuiltin
  ballooneval         foldclose=          listchars=eol:$     shell=/bin/zsh    
  ttyfast
nobinary              foldcolumn=0        loadplugins         shellcmdflag=-c   
  ttymouse=xterm2
nobomb                foldenable          magic               shellquote=       
  ttyscroll=999
  browsedir=last      foldexpr=0          makeef=             shelltemp         
  undodir=.
  bufhidden=          foldignore=#        makeprg=make        shellxquote=      
noundofile
  buflisted           foldlevel=0         matchtime=5         shellxescape=     
  undolevels=1000
  buftype=            foldlevelstart=-1   maxcombine=2      noshiftround        
  undoreload=10000
  cdpath=,,           foldmethod=manual   maxfuncdepth=100    shiftwidth=8      
  updatecount=200
  cedit=^F            foldminlines=1      maxmapdepth=1000  noshortname         
  updatetime=4000
  charconvert=        foldnestmax=20      maxmem=8066204      showbreak=        
  verbose=0
nocindent             formatexpr=         maxmemtot=8066204 noshowcmd           
  verbosefile=
  cinoptions=         formatoptions=tcq   menuitems=25      noshowfulltag       
  virtualedit=
  cmdheight=1         formatprg=          modeline          noshowmatch         
novisualbell
  cmdwinheight=7      fsync               modelines=5         showmode          
  warn
  colorcolumn=      nogdefault            modifiable          showtabline=1     
noweirdinvert
  columns=115         guifont=          nomodified            sidescroll=0      
  whichwrap=b,s
nocompatible          guifontwide=      nomore                sidescrolloff=0   
  wildchar=<Tab>
  concealcursor=      guiheadroom=50      mouse=            nosmartcase         
  wildcharm=0
  conceallevel=0      guipty            nomousefocus        nosmartindent       
  wildignore=
  completefunc=       guitablabel=        mousehide         nosmarttab          
nowildignorecase
noconfirm             guitabtooltip=      mousemodel=extend   softtabstop=0     
nowildmenu
nocopyindent          helpheight=20       mousetime=500     nospell             
  wildmode=full
  cpoptions=aABceFs   helplang=en       nonumber              spellfile=        
  wildoptions=
  cryptmethod=zip   nohidden              numberwidth=4       spelllang=en      
  winaltkeys=menu
  cscopepathcomp=0    history=20          omnifunc=           spellsuggest=best 
  window=65
  cscopeprg=cscope  nohkmap               operatorfunc=     nosplitbelow        
  winheight=1
  cscopequickfix=   nohkmapp            nopaste             nosplitright        
nowinfixheight
nocscoperelative    nohlsearch            pastetoggle=        startofline       
nowinfixwidth
nocscopetag           icon                patchexpr=          statusline=       
  winminheight=1
  cscopetagorder=0    iconstring=         patchmode=          suffixesadd=      
  winminwidth=1
nocscopeverbose     noignorecase        nopreserveindent      swapfile          
  winwidth=20
nocursorbind          imactivatefunc=     previewheight=12    swapsync=fsync    
  wrap
nocursorcolumn        imactivatekey=    nopreviewwindow       switchbuf=        
  wrapmargin=0
nocursorline        noimcmdline           printdevice=        synmaxcol=3000    
  wrapscan
  debug=            noimdisable           printencoding=      syntax=           
  write
nodelcombine          iminsert=2          printfont=courier   tabline=          
nowriteany
  dictionary=         imsearch=2          printmbcharset=     tabpagemax=10     
  writebackup
nodiff                imstatusfunc=       printmbfont=        tabstop=8         
  writedelay=0
  diffexpr=           includeexpr=        printoptions=       tagbsearch
  diffopt=filler    noincsearch           prompt              taglength=0
  backupdir=.,~/tmp,~/
  balloonexpr=eclim#util#Balloon(eclim#util#GetLineError(line('.')))
  breakat= ^I!@*-+;:,./?
  casemap=internal,keepascii
  cinkeys=0{,0},0),:,0#,!^F,o,O,e
  cinwords=if,else,while,do,for,switch
  clipboard=autoselect,exclude:cons\|linux
  comments=s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-
  commentstring=/*%s*/
  complete=.,w,b,u,t,i
  completeopt=menu,preview
  define=^\s*#\s*define
  directory=.,~/tmp,/var/tmp,/tmp
  errorfile=errors.err
  errorformat=%*[^"]"%f"%*\D%l: %m,"%f"%*\D%l: %m,%-G%f:%l: (Each undeclared 
identifier is reported only once,%-G%f:%l: for each function it appears 
in.),%-GIn file included from %f:%l:%c:,%-GIn file included from 
%f:%l:%c\,,%-GIn file included from %f:%l:%c,%-GIn file included from 
%f:%l,%-G%*[ ]from %f:%l:%c,%-G%*[ ]from %f:%l:,%-G%*[ ]from %f:%l\,,%-G%*[ 
]from %f:%l,%f:%l:%c:%m,%f(%l):%m,%f:%l:%m,"%f"\, line %l%*\D%c%*[^ ] 
%m,%D%*\a[%*\d]: Entering directory `%f',%X%*\a[%*\d]: Leaving directory 
`%f',%D%*\a: Entering directory `%f',%X%*\a: Leaving directory `%f',%DMaking 
%*\a in %f,%f|%l| %m
  fileencodings=ucs-bom,utf-8,default,latin1
  fileformats=unix,dos
  fillchars=vert:|,fold:-
  foldmarker={{{,}}}
  foldopen=block,hor,mark,percent,quickfix,search,tag,undo
  foldtext=foldtext()
  formatlistpat=^\s*\d\+[\]:.)}\t ]\s*
  grepformat=%f:%l:%m,%f:%l%m,%f  %l%m
  grepprg=grep -n $* /dev/null
  
guicursor=n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175
  guioptions=aegimrLtT
  helpfile=/usr/share/vim/vim74/doc/help.txt
  
highlight=8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,N:CursorLineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine,o:ColorColumn
  include=^\s*#\s*include
  indentkeys=0{,0},:,0#,!^F,o,O,e
  isfname=@,48-57,/,.,-,_,+,,,#,$,%,~,=
  isident=@,48-57,_,192-255
  iskeyword=@,48-57,_,192-255
  
lispwords=defun,define,defmacro,set!,lambda,if,case,let,flet,let*,letrec,do,do*,define-syntax,let-syntax,letrec-syntax,destructuring-bind,defpackage,defparameter,defstruct,deftype,defvar,do-all-symbols,do-external-symbols,do-symbols,dolist,dotimes,ecase,etypecase,eval-when,labels,macrolet,multiple-value-bind,multiple-value-call,multiple-value-prog1,multiple-value-setq,prog1,progv,typecase,unless,unwind-protect,when,with-input-from-string,with-open-file,with-open-stream,with-output-to-string,with-package-iterator,define-condition,handler-bind,handler-case,restart-bind,restart-case,with-simple-restart,store-value,use-value,muffle-warning,abort,continue,with-slots,with-slots*,with-accessors,with-accessors*,defclass,defmethod,print-unreadable-object
  matchpairs=(:),{:},[:]
  maxmempattern=1000
  mkspellmem=460000,2000,500
  
mouseshape=i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow
  nrformats=octal,hex
  paragraphs=IPLPPPQPP TPHPLIPpLpItpplpipbp
  path=.,/usr/include,,
  printexpr=system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' 
' . v:fname_in) . delete(v:fname_in) + v:shell_error
  printheader=%<%f%h%m%=Page %N
  rightleftcmd=search
  
runtimepath=~/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim74,/usr/share/vim/vimfiles/after,~/.vim/after,/usr/share/vim/vimfiles/eclim,/usr/share/vim/vimfiles/eclim/after
  scrollopt=ver,jump
  sections=SHNHH HUnhsh
  selection=inclusive
  sessionoptions=blank,buffers,curdir,folds,help,options,tabpages,winsize
  shellpipe=2>&1| tee
  shellredir=>%s 2>&1
  shortmess=filnxtToO
  spellcapcheck=[.?!]\_[\])'"^I ]\+
  suffixes=.bak,~,.o,.h,.info,.swp,.obj
  tags=./tags,./TAGS,tags,TAGS
  term=rxvt-unicode-256color
  titleold=Thanks for flying Vim
  toolbar=icons,tooltips
  toolbariconsize=small
  ttytype=rxvt-unicode-256color
  viewdir=~/.vim/view
  viewoptions=folds,options,cursor
  viminfo='100,<50,s10,h
--- Terminal codes ---
  t_AL=^[[%p1%dL      t_ut=y              t_ks=^[[?1h^[=      t_RI=^[[%p1%dC    
  t_us=^[[4m
  t_al=^[[L           t_da=               t_le=^H             t_RV=^[[>c        
  t_ve=^[[?25h
  t_bc=               t_db=               t_mb=^[[5m          t_u7=^[[6n        
  t_vi=^[[?25l
  t_cd=^[[J           t_DL=^[[%p1%dM      t_md=^[[1m          t_se=^[[27m       
  t_vs=^[[?25h
  t_ce=^[[K           t_dl=^[[M           t_me=^[[m           t_so=^[[7m        
  t_SI=
  t_cl=^[[H^[[2J      t_fs=^G             t_mr=^[[7m          t_sr=^[M          
  t_EI=
  t_Co=256            t_IE=^G             t_ms=y              t_ts=^[]2;        
  t_xs=
  t_CS=               t_IS=^[]1;          t_nd=^[[C           t_ti=^[[?1049h    
  t_ZH=^[[3m
  t_CV=               t_ke=^[[?1l^[>      t_op=^[[39;49m      t_ue=^[[m         
  t_ZR=^[[23m
  t_AB=^[[48;5;%p1%dm
  t_AF=^[[38;5;%p1%dm
  t_cm=^[[%i%p1%d;%p2%dH
  t_cs=^[[%i%p1%d;%p2%dr
  
t_Sb=%?%p1%{7}%>%t^[[48;5;%p1%dm%e^[[4%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;
  
t_Sf=%?%p1%{7}%>%t^[[38;5;%p1%dm%e^[[3%?%p1%{1}%=%t4%e%p1%{3}%=%t6%e%p1%{4}%=%t1%e%p1%{6}%=%t3%e%p1%d%;m%;
  t_te=^[[r^[[?1049l
  t_vb=^[[?5h$<20/>^[[?5l
  t_WP=^[[3;%p1%d;%p2%dt
  t_WS=^[[8;%p1%d;%p2%dt
--- Terminal keys ---
t_#2 <S-Home>    ^[[7$     t_K7 <kMinus>    ^[O*m     t_k; <F10>       ^[[21;*~ 
      <xF2>       ^[O*Q
t_#4 <S-Left>    ^[[d      t_K8 <kDivide>   ^[O*o     t_kB <S-Tab>     ^[[Z     
      <xF3>       ^[O*R
t_%1 <Help>      ^[[28;*~  t_K9 <kMultiply> ^[O*j     t_kD <Del>       ^[[3~    
      <xF4>       ^[O*S
t_%i <S-Right>   ^[[c      t_KA <kEnter>    ^[O*M     t_kI <Insert>    ^[[2;*~  
      <xEnd>      ^[O*F
t_&8 <Undo>      ^[[26;*~  t_KB <kPoint>    ^[O*n     t_kN <PageDown>  ^[[6;*~  
      <zEnd>      ^[[8;*~
t_*7 <S-End>     ^[[8$     t_k1 <F1>        ^[[11;*~  t_kP <PageUp>    ^[[5;*~  
      <xHome>     ^[O*H
t_@7 <End>       ^[[1;*F   t_k2 <F2>        ^[[12;*~  t_kb <BS>        ^?       
      <zHome>     ^[[7;*~
t_F1 <F11>       ^[[23;*~  t_k3 <F3>        ^[[13;*~  t_kd <Down>      ^[O*B    
      <xUp>       ^[[1;*A
t_F2 <F12>       ^[[24;*~  t_k4 <F4>        ^[[14;*~  t_kh <Home>      ^[[1;*H  
      <xDown>     ^[[1;*B
t_K1 <kHome>     ^[[1;*~   t_k5 <F5>        ^[[15;*~  t_kl <Left>      ^[O*D    
      <xLeft>     ^[[1;*D
t_K3 <kPageUp>   ^[Oy      t_k6 <F6>        ^[[17;*~  t_kr <Right>     ^[O*C    
      <xRight>    ^[[1;*C
t_K4 <kEnd>      ^[[4;*~   t_k7 <F7>        ^[[18;*~  t_ku <Up>        ^[O*A    
      <kDel>      ^[[3;*~
t_K5 <kPageDown> ^[Os      t_k8 <F8>        ^[[19;*~       <Mouse>     ^[[M
t_K6 <kPlus>     ^[O*k     t_k9 <F9>        ^[[20;*~       <xF1>       ^[O*P
--- Auto-Commands ---
BufEnter
    *         call RegenerateCtags()
FileExplorer  BufEnter
    *         sil! call s:LocalBrowse(expand("<amatch>"))
BufEnter
    *.vba     setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vba.gz  setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vba.bz2 setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vba.zip setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vba.xz  setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vmb     setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vmb.gz  setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vmb.bz2 setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vmb.zip setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
    *.vmb.xz  setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 
'unix'|setlocal ma ff=unix noma|endif|call vimball#ShowMesg(0,"Source this file 
to extract it! (:so %)")
BufRead
    *.aidl    set ft=java
    .classpath
              call EclimSetXmlFileType({'classpath': 'eclipse_classpath'})
    ivy.xml   call EclimSetXmlFileType({'ivy-module': 'ivy'})
    pom.xml   call EclimSetXmlFileType({'project': 'mvn_pom'})
    project.xml
              call EclimSetXmlFileType({'project': 'maven_project'})
    struts-config.xml
              call EclimSetXmlFileType({'struts-config': 'strutsconfig'})
    *.tld     call EclimSetXmlFileType({'taglib': 'tld'})
    *web.xml  call EclimSetXmlFileType({'web-app': 'webxml'})
    *.wsdl    call EclimSetXmlFileType({'definitions': 'wsdl', 
'wsdl:definitions': 'wsdl'})
    *.xml     call EclimSetXmlFileType(xmltypes)
    *.gant    set ft=gant
    *.gst     set ft=groovy_simple_template
gzip  BufRead
    *.gz      call gzip#read("gzip -dn")
    *.bz2     call gzip#read("bzip2 -d")
    *.Z       call gzip#read("uncompress")
    *.lzma    call gzip#read("lzma -d")
    *.xz      call gzip#read("xz -d")
gzip  BufReadPre
    *.gz      setlocal bin
    *.bz2     setlocal bin
    *.Z       setlocal bin
    *.lzma    setlocal bin
    *.xz      setlocal bin
eclim_archive_read  BufReadCmd
    jar:/*    call eclim#common#util#ReadFile()
    jar:\*    call eclim#common#util#ReadFile()
    jar:file:/*
              call eclim#common#util#ReadFile()
    jar:file:\*
              call eclim#common#util#ReadFile()
    tar:/*    call eclim#common#util#ReadFile()
    tar:\*    call eclim#common#util#ReadFile()
    tar:file:/*
              call eclim#common#util#ReadFile()
    tar:file:\*
              call eclim#common#util#ReadFile()
    tbz2:/*   call eclim#common#util#ReadFile()
    tgz:\*    call eclim#common#util#ReadFile()
    tbz2:file:/*
              call eclim#common#util#ReadFile()
    tbz2:file:\*
              call eclim#common#util#ReadFile()
    tgz:/*    call eclim#common#util#ReadFile()
    tgz:\*    call eclim#common#util#ReadFile()
    tgz:file:/*
              call eclim#common#util#ReadFile()
    tgz:file:\*
              call eclim#common#util#ReadFile()
    zip:/*    call eclim#common#util#ReadFile()
    zip:\*    call eclim#common#util#ReadFile()
    zip:file:/*
              call eclim#common#util#ReadFile()
    zip:file:\*
              call eclim#common#util#ReadFile()
eclim_java_class_read  BufReadCmd
    *.class   call eclim#java#util#ReadClassPrototype()
Network  BufReadCmd
    file://*  call netrw#FileUrlRead(expand("<amatch>"))
    ftp://*   exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    rcp://*   exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    scp://*   exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    http://*  exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    https://* exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    dav://*   exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    davs://*  exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    rsync://* exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
    sftp://*  exe "sil doau BufReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(2,expand("<amatch>"))|exe "sil doau BufReadPost 
".fnameescape(expand("<amatch>"))
tar  BufReadCmd
    tarfile::*
              call tar#Read(expand("<amatch>"), 1)
    tarfile::*/*
              call tar#Read(expand("<amatch>"), 1)
    *.tar.gz  call tar#Browse(expand("<amatch>"))
    *.tar     call tar#Browse(expand("<amatch>"))
    *.lrp     call tar#Browse(expand("<amatch>"))
    *.tar.bz2 call tar#Browse(expand("<amatch>"))
    *.tar.Z   call tar#Browse(expand("<amatch>"))
    *.tgz     call tar#Browse(expand("<amatch>"))
    *.tar.lzma
              call tar#Browse(expand("<amatch>"))
    *.tar.xz  call tar#Browse(expand("<amatch>"))
    *.txz     call tar#Browse(expand("<amatch>"))
zip  BufReadCmd
    zipfile:* call zip#Read(expand("<amatch>"), 1)
    zipfile:*/*
              call zip#Read(expand("<amatch>"), 1)
    *.zip     call zip#Browse(expand("<amatch>"))
    *.jar     call zip#Browse(expand("<amatch>"))
    *.xpi     call zip#Browse(expand("<amatch>"))
    *.ja      call zip#Browse(expand("<amatch>"))
    *.war     call zip#Browse(expand("<amatch>"))
    *.ear     call zip#Browse(expand("<amatch>"))
    *.celzip  call zip#Browse(expand("<amatch>"))
    *.oxt     call zip#Browse(expand("<amatch>"))
    *.kmz     call zip#Browse(expand("<amatch>"))
    *.wsz     call zip#Browse(expand("<amatch>"))
    *.xap     call zip#Browse(expand("<amatch>"))
    *.docx    call zip#Browse(expand("<amatch>"))
    *.docm    call zip#Browse(expand("<amatch>"))
    *.dotx    call zip#Browse(expand("<amatch>"))
    *.dotm    call zip#Browse(expand("<amatch>"))
    *.potx    call zip#Browse(expand("<amatch>"))
    *.potm    call zip#Browse(expand("<amatch>"))
    *.ppsx    call zip#Browse(expand("<amatch>"))
    *.ppsm    call zip#Browse(expand("<amatch>"))
    *.pptx    call zip#Browse(expand("<amatch>"))
    *.pptm    call zip#Browse(expand("<amatch>"))
    *.ppam    call zip#Browse(expand("<amatch>"))
    *.sldx    call zip#Browse(expand("<amatch>"))
    *.thmx    call zip#Browse(expand("<amatch>"))
    *.xlam    call zip#Browse(expand("<amatch>"))
    *.xlsx    call zip#Browse(expand("<amatch>"))
    *.xlsm    call zip#Browse(expand("<amatch>"))
    *.xlsb    call zip#Browse(expand("<amatch>"))
    *.xltx    call zip#Browse(expand("<amatch>"))
    *.xltm    call zip#Browse(expand("<amatch>"))
    *.xlam    call zip#Browse(expand("<amatch>"))
    *.crtx    call zip#Browse(expand("<amatch>"))
    *.vdw     call zip#Browse(expand("<amatch>"))
    *.glox    call zip#Browse(expand("<amatch>"))
    *.gcsx    call zip#Browse(expand("<amatch>"))
    *.gqsx    call zip#Browse(expand("<amatch>"))
eclim_qf  BufWinEnter
    *         call eclim#display#signs#Update()
eclim_buffer_tab_tracking  BufWinEnter
    *         call eclim#common#buffers#TabLastOpenIn()
eclim_buffer_tab_tracking  BufWinLeave
    *         call eclim#common#buffers#TabLastOpenIn()
gzip  BufWritePost
    *.gz      call gzip#write("gzip")
    *.bz2     call gzip#write("bzip2")
    *.Z       call gzip#write("compress -f")
    *.lzma    call gzip#write("lzma -z")
    *.xz      call gzip#write("xz -z")
eclim_refresh_files  BufWrite
    *         call eclim#project#util#RefreshFileBootstrap()
Network  BufWriteCmd
    ftp://*   exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    rcp://*   exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    scp://*   exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    dav://*   exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    davs://*  exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    rsync://* exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
    sftp://*  exe "sil doau BufWritePre ".fnameescape(expand("<amatch>"))|exe 
'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau BufWritePost 
".fnameescape(expand("<amatch>"))
tar  BufWriteCmd
    tarfile::*
              call tar#Write(expand("<amatch>"))
    tarfile::*/*
              call tar#Write(expand("<amatch>"))
zip  BufWriteCmd
    zipfile:* call zip#Write(expand("<amatch>"))
    zipfile:*/*
              call zip#Write(expand("<amatch>"))
gzip  FileAppendPost
    *.gz      call gzip#write("gzip")
    *.bz2     call gzip#write("bzip2")
    *.Z       call gzip#write("compress -f")
    *.lzma    call gzip#write("lzma -z")
    *.xz      call gzip#write("xz -z")
gzip  FileAppendPre
    *.gz      call gzip#appre("gzip -dn")
    *.bz2     call gzip#appre("bzip2 -d")
    *.Z       call gzip#appre("uncompress")
    *.lzma    call gzip#appre("lzma -d")
    *.xz      call gzip#appre("xz -d")
gzip  FileReadPost
    *.gz      call gzip#read("gzip -dn")
    *.bz2     call gzip#read("bzip2 -d")
    *.Z       call gzip#read("uncompress")
    *.lzma    call gzip#read("lzma -d")
    *.xz      call gzip#read("xz -d")
gzip  FileReadPre
    *.gz      setlocal bin
    *.bz2     setlocal bin
    *.Z       setlocal bin
    *.lzma    setlocal bin
    *.xz      setlocal bin
Network  FileReadCmd
    ftp://*   exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    rcp://*   exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    scp://*   exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    http://*  exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    https://* exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    dav://*   exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    davs://*  exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    rsync://* exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
    sftp://*  exe "sil doau FileReadPre ".fnameescape(expand("<amatch>"))|call 
netrw#Nread(1,expand("<amatch>"))|exe "sil doau FileReadPost 
".fnameescape(expand("<amatch>"))
tar  FileReadCmd
    tarfile::*
              call tar#Read(expand("<amatch>"), 0)
    tarfile::*/*
              call tar#Read(expand("<amatch>"), 0)
zip  FileReadCmd
    zipfile:* call zip#Read(expand("<amatch>"), 0)
    zipfile:*/*
              call zip#Read(expand("<amatch>"), 0)
gzip  FileWritePost
    *.gz      call gzip#write("gzip")
    *.bz2     call gzip#write("bzip2")
    *.Z       call gzip#write("compress -f")
    *.lzma    call gzip#write("lzma -z")
    *.xz      call gzip#write("xz -z")
Network  FileWriteCmd
    ftp://*   exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    rcp://*   exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    scp://*   exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    dav://*   exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    davs://*  exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    rsync://* exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
    sftp://*  exe "sil doau FileWritePre ".fnameescape(expand("<amatch>"))|exe 
"'[,']".'Nwrite '.fnameescape(expand("<amatch>"))|exe "sil doau FileWritePost 
".fnameescape(expand("<amatch>"))
tar  FileWriteCmd
    tarfile::*
              call tar#Write(expand("<amatch>"))
    tarfile::*/*
              call tar#Write(expand("<amatch>"))
zip  FileWriteCmd
    zipfile:* call zip#Write(expand("<amatch>"))
    zipfile:*/*
              call zip#Write(expand("<amatch>"))
eclim_qf_filter  QuickFixCmdPost
    make      if exists('b:EclimQuickfixFilter') |   call 
eclim#util#SetQuickfixList(getqflist(), 'r') | endif
eclim_qf  QuickFixCmdPost
    *         call eclim#display#signs#QuickFixCmdPost()
SessionLoadPost
    *         call eclim#project#tree#Restore()
FileExplorer  VimEnter
    *         sil! call s:VimEnter(expand("<amatch>"))
eclim_qf  WinEnter
    *         call eclim#display#signs#Update()
matchparen  WinEnter
    *         call s:Highlight_Matching_Pair()
Network  SourceCmd
    ftp://*   exe 'Nsource '.fnameescape(expand("<amatch>"))
    rcp://*   exe 'Nsource '.fnameescape(expand("<amatch>"))
    scp://*   exe 'Nsource '.fnameescape(expand("<amatch>"))
    http://*  exe 'Nsource '.fnameescape(expand("<amatch>"))
    https://* exe 'Nsource '.fnameescape(expand("<amatch>"))
    dav://*   exe 'Nsource '.fnameescape(expand("<amatch>"))
    davs://*  exe 'Nsource '.fnameescape(expand("<amatch>"))
    rsync://* exe 'Nsource '.fnameescape(expand("<amatch>"))
    sftp://*  exe 'Nsource '.fnameescape(expand("<amatch>"))
SourceCmd
    *.vba.gz  if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vba.bz2 if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vba.zip if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vba.xz  if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vba     if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|call vimball#Vimball(1)|close|else|call 
vimball#Vimball(1)|endif
    *.vmb.gz  if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vmb.bz2 if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vmb.zip if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vmb.xz  if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|endif|call 
vimball#Decompress(expand("<amatch>"))|so %|if 
expand("%")!=expand("<afile>")|close|endif
    *.vmb     if expand("%")!=expand("<afile>") | exe "1sp" 
fnameescape(expand("<afile>"))|call vimball#Vimball(1)|close|else|call 
vimball#Vimball(1)|endif
SpellFileMissing
    *         call spellfile#LoadFile(expand('<amatch>'))
eclim_show_error  CursorMoved
    *         call eclim#util#ShowCurrentError()
matchparen  CursorMoved
    *         call s:Highlight_Matching_Pair()
matchparen  CursorMovedI
    *         call s:Highlight_Matching_Pair()
eclim_buffer_tab_tracking  TabLeave
    *         call eclim#common#buffers#TabLeave()
eclim_buffer_tab_tracking  TabEnter
    *         call eclim#common#buffers#TabEnter()
matchparen  TextChanged
    *         call s:Highlight_Matching_Pair()
matchparen  TextChangedI
    *         call s:Highlight_Matching_Pair()
--- Normal/Visual mode mappings ---
n  gx            <Plug>NetrwBrowseX
n  <Plug>NetrwBrowseX * :call netrw#NetrwBrowseX(expand("<cWORD>"),0)<CR>
n  <Plug>(godoc-keyword) * :<C-U>call <SNR>14_Godoc('')<CR>
--- Insert/Command-line mode mappings ---

No mapping found
--- Abbreviations ---

No abbreviation found
--- Highlighting ---
SpecialKey     xxx term=bold ctermfg=4 guifg=Blue
NonText        xxx term=bold ctermfg=12 gui=bold guifg=Blue
Directory      xxx term=bold ctermfg=4 guifg=Blue
ErrorMsg       xxx term=standout ctermfg=15 ctermbg=1 guifg=White guibg=Red
IncSearch      xxx term=reverse cterm=reverse gui=reverse
Search         xxx term=reverse ctermbg=11 guibg=Yellow
MoreMsg        xxx term=bold ctermfg=2 gui=bold guifg=SeaGreen
ModeMsg        xxx term=bold cterm=bold gui=bold
LineNr         xxx term=underline ctermfg=130 guifg=Brown
CursorLineNr   xxx term=bold ctermfg=130 gui=bold guifg=Brown
Question       xxx term=standout ctermfg=2 gui=bold guifg=SeaGreen
StatusLine     xxx term=bold,reverse cterm=bold,reverse gui=bold,reverse
StatusLineNC   xxx term=reverse cterm=reverse gui=reverse
VertSplit      xxx term=reverse cterm=reverse gui=reverse
Title          xxx term=bold ctermfg=5 gui=bold guifg=Magenta
Visual         xxx term=reverse ctermbg=7 guibg=LightGrey
VisualNOS      xxx term=bold,underline cterm=bold,underline gui=bold,underline
WarningMsg     xxx term=standout ctermfg=1 guifg=Red
WildMenu       xxx term=standout ctermfg=0 ctermbg=11 guifg=Black guibg=Yellow
Folded         xxx term=standout ctermfg=4 ctermbg=248 guifg=DarkBlue 
guibg=LightGrey
FoldColumn     xxx term=standout ctermfg=4 ctermbg=248 guifg=DarkBlue guibg=Grey
DiffAdd        xxx term=bold ctermbg=81 guibg=LightBlue
DiffChange     xxx term=bold ctermbg=225 guibg=LightMagenta
DiffDelete     xxx term=bold ctermfg=12 ctermbg=159 gui=bold guifg=Blue 
guibg=LightCyan
DiffText       xxx term=reverse cterm=bold ctermbg=9 gui=bold guibg=Red
SignColumn     xxx term=standout ctermfg=4 ctermbg=248 guifg=DarkBlue guibg=Grey
Conceal        xxx ctermfg=7 ctermbg=242 guifg=LightGrey guibg=DarkGrey
SpellBad       xxx term=reverse ctermbg=224 gui=undercurl guisp=Red
SpellCap       xxx term=reverse ctermbg=81 gui=undercurl guisp=Blue
SpellRare      xxx term=reverse ctermbg=225 gui=undercurl guisp=Magenta
SpellLocal     xxx term=underline ctermbg=14 gui=undercurl guisp=DarkCyan
Pmenu          xxx ctermfg=0 ctermbg=225 guibg=LightMagenta
PmenuSel       xxx ctermfg=0 ctermbg=7 guibg=Grey
PmenuSbar      xxx ctermbg=248 guibg=Grey
PmenuThumb     xxx ctermbg=0 guibg=Black
TabLine        xxx term=underline cterm=underline ctermfg=0 ctermbg=7 
gui=underline guibg=LightGrey
TabLineSel     xxx term=bold cterm=bold gui=bold
TabLineFill    xxx term=reverse cterm=reverse gui=reverse
CursorColumn   xxx term=reverse ctermbg=7 guibg=Grey90
CursorLine     xxx term=underline cterm=underline guibg=Grey90
ColorColumn    xxx term=reverse ctermbg=224 guibg=LightRed
Cursor         xxx guifg=bg guibg=fg
lCursor        xxx guifg=bg guibg=fg
MatchParen     xxx term=reverse ctermbg=14 guibg=Cyan
Normal         xxx cleared
Statement      xxx cleared
Error          xxx cleared
--- Variables ---
EclimTemplatesDisabled #1
LIST_TYPE             #3
EclimFatalHighlight    Error
EclimSignLevel        #5
xmltypes              {'form-validation': 'commonsvalidator', 'status': 
'forreststatus', 'testsuite': 'junitresult', 'hibernate-mapping': 'hibernate', 
'beans': 'spring', 'log4j:configuration': 'log4j', 'project': 'ant', 
'document': 'forrestdocument'}
EclimProjectTabTreeAutoOpen #1
EclimMakeLCD          #1
loaded_vimballPlugin   v35
EclimDebugHighlight    Normal
loaded_tarPlugin       v29
EclimProjectTreeSharedInstance #1
EclimErrorHighlight    Error
EclimProjectKeepLocalHistory #0
EclimProjectTreeAutoOpen #0
EclimLoclistSignText   >>
matchparen_insert_timeout #60
EclimOnlyExclude       ^NONE$
EclimProjectRefreshFiles #1
EclimUserSignText      #
loaded_rrhelper       #1
EclimLargeFileEnabled #0
loaded_spellfile_plugin #1
EclimMakeQfFilter     #1
EclimLocationListHeight #10
EclimQuickfixSignText  > 
STRING_TYPE           #1
DICT_TYPE             #4
EclimShowCurrentErrorBalloon #1
EclimTempDir           /tmp
EclimDefaultFileOpenAction  split
EclimBuffersDefaultAction  split
EclimLogLevel         #4
FLOAT_TYPE            #5
EclimProjectProblemsUpdateOnSave #1
loaded_netrwPlugin     v149
EclimTraceHighlight    Normal
more_save             #1
EclimValidateSortResults  occurrence
EclimShowQuickfixSigns #1
loaded_godoc          #1
EclimShowLoclistSigns #1
loaded_gzip           #1
EclimBuffersSort       file
zipPlugin_ext          
*.zip,*.jar,*.xpi,*.ja,*.war,*.ear,*.celzip,*.oxt,*.kmz,*.wsz,*.xap,*.docx,*.docm,*.dotx,*.dotm,*.potx,*.potm,*.ppsx,*.ppsm,*.pptx,*.pptm,*.ppam,*.sldx,*.thmx,*.xlam,*.xlsx,*.xlsm,*.xlsb,*.xltx,*.xltm,*.xlam,*.crtx,*.vdw,*.glox,*.gcsx,*.gqsx
EclimCompletionMethod  completefunc
loaded_2html_plugin    vim7.4_v1
loaded_matchparen     #1
EclimQuote             ['"]
EclimMenus            #1
matchparen_timeout    #300
loaded_getscriptPlugin  v35
EclimProjectProblemsUpdateOnBuild #1
EclimInfoHighlight     Statement
EclimProjectTreeTitle  ProjectTree_
EclimProjectTreeExpandPathOnOpen #0
FUNCREF_TYPE          #2
EclimBufferTabTracking #1
EclimBuffersSortDirection  asc
EclimShowCurrentError #1
EclimBaseDir           /usr/share/vim/vimfiles
EclimUserSignHighlight  Statement
EclimLargeFileSize    #5
loaded_zipPlugin       v27
NUMBER_TYPE           #0
EclimSeparator         /
EclimWarningHighlight  WarningMsg
EclimOnlyExcludeFixed #1
b:eclim_tab_id        #1
b:changedtick         #2
t:eclim_tab_id        #1
v:version             #704
v:beval_winnr         #0
v:lnum                #0
v:hlsearch            #0
v:scrollstart          /usr/share/vim/vim74/bugreport.vim line 21
v:oldfiles            ['~/example.vimrc', '~/bugreport.txt', 
'/usr/share/vim/vim74/doc/intro.txt', 
'/usr/share/terminfo/r/rxvt-unicode-256color', '~/.vimrc', 
'~/.vim/bundle/alt-ctags/plugin/ctags.vim', 
'/usr/share/vim/vim74/doc/starting.txt', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/order/thanks.hbs', 
'~/Code/klarna-checkout/app/models/order.rb', 
'~/Code/klarna-checkout/app/assets/javascripts/models/order.js.coffee', 
'~/Code/aurget/Makefile', '~/Code/aurget/doc/aurgetrc.5.md', 
'~/Code/aurget/aurget', '~/Code/aurget/aurgetrc', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/order/confirm.hbs', 
'~/Code/klarna-checkout/ControlP', 
'~/Code/klarna-settlement/.git/COMMIT_EDITMSG', 
'~/Code/klarna-settlement/app/mailers/user_mailer.rb', 
'~/Code/klarna-settlement/app/views/orders/_summary.html.erb', 
'~/Code/klarna-settlement/app/views/orders/_summary', 
'~/Code/klarna-settlement/spec/models/salesforce_spec.rb', 
'~/Code/klarna-settlement/app/models/cachable_order.rb', 
'~/Code/klarna-settlement/app/models/order.rb', 
'~/Code/klarna-settlement/spec/models/order_spec.rb', 
'~/Code/klarna-settlement/app/models/salesforce.rb', 
'~/Code/klarna-settlement/.git/PULLREQ_EDITMSG', 
'~/Code/klarna-settlement/app/assets/javascripts/credit_form.coffee', 
'~/Code/klarna-settlement/app/views/credit_options/_credit_option.html.erb', 
'~/Code/klarna-settlement/app/views/credits/new.html.erbw', 
'~/Code/klarna-settlement/app/views/credits/new.html.erb', 
'~/Code/klarna-settlement/app/views/credits/_payment_box.html.erb', 
'~/Code/klarna-settlement/spec/features/user_selects_credit_option_spec.rb', 
'~/Code/klarna-settlement/spec/spec_helper.rb', 
'~/Code/klarna-settlement/config/initializers/balanced.rb', 
'~/Code/klarna-settlement/app/models/sms.rb', 
'~/Code/klarna-settlement/config/locales/en.yml', 
'~/Code/klarna-opencart/.git/COMMIT_EDITMSG', 
'~/Code/klarna-opencart/image/cache/index.html', 
'~/Code/klarna-settlement/app/views/orders/show.html.erb', 
'~/Code/klarna-settlement/app/views/orders/_choose_payment_box.html.erb', 
'~/Code/klarna-settlement/app/views/partials/_payment_status.html.erb', 
'~/Code/klarna-settlement/app/helpers/application_helper.rb', '~/test.sh', 
'~/test.hs', '/usr/bin/netctl-auto', '/usr/lib/network/globals', '~/.zshrc', 
'~/.zshenv', '~/Documents/deploy', '~/.xsession-errors', 
'/etc/netctl/interfaces/wlp3s0', '/etc/netctl/wlp3s0-ebelmont', 
'/etc/netctl/examples/pppoe', '~/.dotfiles/bin/share', '~/.dotfiles/bin/hb', 
'~/.dotfiles/bin/restore', '~/.dotfiles/bin/update-htpc', 
'~/.dotfiles/bin/backup', '~/.gitignore', '~/Code/liquid/.git/COMMIT_EDITMSG', 
'~/Code/liquid/src/Text/Liquid/Parse.hs', 
'~/Code/liquid/.git/rebase-merge/git-rebase-todo', 
'~/Code/liquid/test/Text/Liquid/ParseSpec.hs', 
'/usr/lib/udev/rules.d/69-libmtp.rules', 
'~/Code/klarna-checkout/.git/COMMIT_EDITMSG', 
'~/Code/klarna-checkout/app/assets/javascripts/mixins/address_validation.js.coffee',
 '~/Code/klarna-checkout/app/assets/javascripts/models/address.js.coffee', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/order/continue.hbs', 
'~/.config/aurgetrc', '/usr/share/vim/vim74/doc/options.txt', 
'/usr/share/vim/vim74/doc/change.txt', '/usr/share/vim/vim74/doc/fold.txt', 
'~/Code/klarna-settlement/.git/rebase-merge/git-rebase-todo', 
'~/Code/klarna-checkout/app/assets/javascripts/views/order/thanks_view.js.coffee',
 
'~/Code/klarna-checkout/app/assets/javascripts/controllers/order_controller.js.coffee',
 '~/.dotfiles/.git/COMMIT_EDITMSG', '~/.dotfiles/bin/pacprune', 
'~/.dotfiles/bin/hs-ctags', 
'~/Code/klarna-checkout/app/views/home/index.html.erb', 
'~/Code/klarna-checkout/app/assets/javascripts/views/order/index_view.js.coffee',
 
'fugitive:///home/patrick/Code/klarna-checkout/.git//24ce3c4add9573aac814484e8fa3c2bfaae75c7d/app/assets/javascripts/ember-outlet-animation.js.coffee',
 '/usr/share/vim/vim74/doc/help.txt', '/usr/share/vim/vim74/doc/usr_21.txt', 
'/usr/share/vim/vim74/doc/usr_20.txt', '/usr/share/vim/vim74/doc/usr_25.txt', 
'~/Code/liquid/.git/index', 
'fugitive:///home/patrick/Code/liquid/.git//0/src/Text/Liquid/Parse.hs', 
'~/Code/klarna-checkout/app/assets/javascripts/routes/order_route.js.coffee', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/edit_address.hbs', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/edit_correspondence.hbs',
 
'~/Code/klarna-checkout/app/assets/javascripts/views/autofocus_field.js.coffee',
 '~/Code/klarna-checkout/app/assets/javascripts/miscellaneous.js.coffee', 
'~/Code/klarna-checkout/app/assets/javascripts/prefilled_input.js', 
'/tmp/vJ1ZrwY/2.fugitiveblame', '/tmp/vJ1ZrwY/4.fugitiveblame', 
'~/Code/klarna-checkout/app/assets/javascripts/templates/order/cont', 
'~/Code/klarna-checkout/app/assets/javascripts/application.js', 
'fugitive:///home/patrick/Code/klarna-checkout/.git//015cb9675943f08ceaa6ae7dadd6e7e44c4039ad/app/assets/javascripts/mixins/address_validation.js.coffee',
 '~/Code/klarna-checkout/app/assets/javascripts/templates/order/index.hbs', 
'~/Code/klarna-checkout/app/assets/javascripts/views/order/tha']
v:dying               #0
v:windowid            #4194530
v:termresponse         ^[[>85;95;0c
v:lang                 en_US.UTF-8
v:count               #0
v:progname             vim
v:cmdbang             #0
v:foldlevel           #0
v:ctype                en_US.UTF-8
v:prevcount           #0
v:register             "
v:mouse_win           #0
v:count1              #1
v:foldstart           #0
v:foldend             #0
v:profiling           #0
v:beval_col           #0
v:beval_lnum          #0
v:mouse_lnum          #0
v:beval_bufnr         #0
v:shell_error         #0
v:lc_time              en_US.UTF-8
v:searchforward       #1
v:mouse_col           #0
v:statusmsg            No abbreviation found

Attachment: pgpBhXR3ezmQb.pgp
Description: PGP signature

Raspunde prin e-mail lui