Browse Source

Added a bunch of plugins and updated my .vimrc

Changes to be committed:
        modified:   .vimrc
        new file:   autoload/pathogen.vim
        new file:   autoload/youcompleteme.vim
        new file:   bundle/nerdtree
        new file:   bundle/vim-easymotion
        new file:   doc/NERD_commenter.txt
        new file:   doc/bufexplorer.txt
        new file:   doc/matchit.txt
        modified:   doc/tags
        new file:   doc/youcompleteme.txt
        new file:   plugin/NERD_commenter.vim
        new file:   plugin/bufexplorer.vim
        new file:   plugin/matchit.vim
        new file:   plugin/youcompleteme.vim
        new file:   tags
wreed4 11 years ago
parent
commit
0f8e4055c4

+ 5 - 1
.vimrc

@@ -43,9 +43,13 @@ set makeprg=rakefds
 
 "{{{ *****  PLUGINS  ***** "
 
+" Pathogen
+call pathogen#infect()
+
 " PyMode options
 let pymode_lint_ignore="E501,E401,E225,W191,W391,W404"
 " use rope code assist instead of a complete function
-au FileType python inoremap <expr> <S-Space> '<C-r>=RopeCodeAssistInsertMode()<CR><C-r>=pumvisible() ? "\<lt>C-p>\<lt>Down>" : ""<CR>'
+" au FileType python inoremap <expr> <S-Space> '<C-r>=RopeCodeAssistInsertMode()<CR><C-r>=pumvisible() ? "\<lt>C-p>\<lt>Down>" : ""<CR>'
+
 " }}}
 

+ 344 - 0
autoload/pathogen.vim

@@ -0,0 +1,344 @@
+" pathogen.vim - path option manipulation
+" Maintainer:   Tim Pope <http://tpo.pe/>
+" Version:      2.3
+
+" Install in ~/.vim/autoload (or ~\vimfiles\autoload).
+"
+" For management of individually installed plugins in ~/.vim/bundle (or
+" ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your
+" .vimrc is the only other setup necessary.
+"
+" The API is documented inline below.
+
+if exists("g:loaded_pathogen") || &cp
+  finish
+endif
+let g:loaded_pathogen = 1
+
+" Point of entry for basic default usage.  Give a relative path to invoke
+" pathogen#interpose() (defaults to "bundle/{}"), or an absolute path to invoke
+" pathogen#surround().  Curly braces are expanded with pathogen#expand():
+" "bundle/{}" finds all subdirectories inside "bundle" inside all directories
+" in the runtime path.
+function! pathogen#infect(...) abort
+  for path in a:0 ? filter(reverse(copy(a:000)), 'type(v:val) == type("")') : ['bundle/{}']
+    if path =~# '^\%({\=[$~\\/]\|{\=\w:[\\/]\).*[{}*]'
+      call pathogen#surround(path)
+    elseif path =~# '^\%([$~\\/]\|\w:[\\/]\)'
+      call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
+      call pathogen#surround(path . '/{}')
+    elseif path =~# '[{}*]'
+      call pathogen#interpose(path)
+    else
+      call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
+      call pathogen#interpose(path . '/{}')
+    endif
+  endfor
+  call pathogen#cycle_filetype()
+  if pathogen#is_disabled($MYVIMRC)
+    return 'finish'
+  endif
+  return ''
+endfunction
+
+" Split a path into a list.
+function! pathogen#split(path) abort
+  if type(a:path) == type([]) | return a:path | endif
+  if empty(a:path) | return [] | endif
+  let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
+  return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
+endfunction
+
+" Convert a list to a path.
+function! pathogen#join(...) abort
+  if type(a:1) == type(1) && a:1
+    let i = 1
+    let space = ' '
+  else
+    let i = 0
+    let space = ''
+  endif
+  let path = ""
+  while i < a:0
+    if type(a:000[i]) == type([])
+      let list = a:000[i]
+      let j = 0
+      while j < len(list)
+        let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
+        let path .= ',' . escaped
+        let j += 1
+      endwhile
+    else
+      let path .= "," . a:000[i]
+    endif
+    let i += 1
+  endwhile
+  return substitute(path,'^,','','')
+endfunction
+
+" Convert a list to a path with escaped spaces for 'path', 'tag', etc.
+function! pathogen#legacyjoin(...) abort
+  return call('pathogen#join',[1] + a:000)
+endfunction
+
+" Turn filetype detection off and back on again if it was already enabled.
+function! pathogen#cycle_filetype() abort
+  if exists('g:did_load_filetypes')
+    filetype off
+    filetype on
+  endif
+endfunction
+
+" Check if a bundle is disabled.  A bundle is considered disabled if its
+" basename or full name is included in the list g:pathogen_disabled.
+function! pathogen#is_disabled(path) abort
+  if a:path =~# '\~$'
+    return 1
+  endif
+  let sep = pathogen#slash()
+  let blacklist = get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) + pathogen#split($VIMBLACKLIST)
+  return index(blacklist, fnamemodify(a:path, ':t')) != -1 || index(blacklist, a:path) != -1
+endfunction "}}}1
+
+" Prepend the given directory to the runtime path and append its corresponding
+" after directory.  Curly braces are expanded with pathogen#expand().
+function! pathogen#surround(path) abort
+  let sep = pathogen#slash()
+  let rtp = pathogen#split(&rtp)
+  let path = fnamemodify(a:path, ':p:?[\\/]\=$??')
+  let before = filter(pathogen#expand(path), '!pathogen#is_disabled(v:val)')
+  let after = filter(reverse(pathogen#expand(path.sep.'after')), '!pathogen#is_disabled(v:val[0:-7])')
+  call filter(rtp, 'index(before + after, v:val) == -1')
+  let &rtp = pathogen#join(before, rtp, after)
+  return &rtp
+endfunction
+
+" For each directory in the runtime path, add a second entry with the given
+" argument appended.  Curly braces are expanded with pathogen#expand().
+function! pathogen#interpose(name) abort
+  let sep = pathogen#slash()
+  let name = a:name
+  if has_key(s:done_bundles, name)
+    return ""
+  endif
+  let s:done_bundles[name] = 1
+  let list = []
+  for dir in pathogen#split(&rtp)
+    if dir =~# '\<after$'
+      let list += reverse(filter(pathogen#expand(dir[0:-6].name.sep.'after'), '!pathogen#is_disabled(v:val[0:-7])')) + [dir]
+    else
+      let list += [dir] + filter(pathogen#expand(dir.sep.name), '!pathogen#is_disabled(v:val)')
+    endif
+  endfor
+  let &rtp = pathogen#join(pathogen#uniq(list))
+  return 1
+endfunction
+
+let s:done_bundles = {}
+
+" Invoke :helptags on all non-$VIM doc directories in runtimepath.
+function! pathogen#helptags() abort
+  let sep = pathogen#slash()
+  for glob in pathogen#split(&rtp)
+    for dir in map(split(glob(glob), "\n"), 'v:val.sep."/doc/".sep')
+      if (dir)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir) == 2 && !empty(split(glob(dir.'*.txt'))) && (!filereadable(dir.'tags') || filewritable(dir.'tags'))
+        silent! execute 'helptags' pathogen#fnameescape(dir)
+      endif
+    endfor
+  endfor
+endfunction
+
+command! -bar Helptags :call pathogen#helptags()
+
+" Execute the given command.  This is basically a backdoor for --remote-expr.
+function! pathogen#execute(...) abort
+  for command in a:000
+    execute command
+  endfor
+  return ''
+endfunction
+
+" Section: Unofficial
+
+function! pathogen#is_absolute(path) abort
+  return a:path =~# (has('win32') ? '^\%([\\/]\|\w:\)[\\/]\|^[~$]' : '^[/~$]')
+endfunction
+
+" Given a string, returns all possible permutations of comma delimited braced
+" alternatives of that string.  pathogen#expand('/{a,b}/{c,d}') yields
+" ['/a/c', '/a/d', '/b/c', '/b/d'].  Empty braces are treated as a wildcard
+" and globbed.  Actual globs are preserved.
+function! pathogen#expand(pattern) abort
+  if a:pattern =~# '{[^{}]\+}'
+    let [pre, pat, post] = split(substitute(a:pattern, '\(.\{-\}\){\([^{}]\+\)}\(.*\)', "\\1\001\\2\001\\3", ''), "\001", 1)
+    let found = map(split(pat, ',', 1), 'pre.v:val.post')
+    let results = []
+    for pattern in found
+      call extend(results, pathogen#expand(pattern))
+    endfor
+    return results
+  elseif a:pattern =~# '{}'
+    let pat = matchstr(a:pattern, '^.*{}[^*]*\%($\|[\\/]\)')
+    let post = a:pattern[strlen(pat) : -1]
+    return map(split(glob(substitute(pat, '{}', '*', 'g')), "\n"), 'v:val.post')
+  else
+    return [a:pattern]
+  endif
+endfunction
+
+" \ on Windows unless shellslash is set, / everywhere else.
+function! pathogen#slash() abort
+  return !exists("+shellslash") || &shellslash ? '/' : '\'
+endfunction
+
+function! pathogen#separator() abort
+  return pathogen#slash()
+endfunction
+
+" Convenience wrapper around glob() which returns a list.
+function! pathogen#glob(pattern) abort
+  let files = split(glob(a:pattern),"\n")
+  return map(files,'substitute(v:val,"[".pathogen#slash()."/]$","","")')
+endfunction "}}}1
+
+" Like pathogen#glob(), only limit the results to directories.
+function! pathogen#glob_directories(pattern) abort
+  return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
+endfunction "}}}1
+
+" Remove duplicates from a list.
+function! pathogen#uniq(list) abort
+  let i = 0
+  let seen = {}
+  while i < len(a:list)
+    if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
+      call remove(a:list,i)
+    elseif a:list[i] ==# ''
+      let i += 1
+      let empty = 1
+    else
+      let seen[a:list[i]] = 1
+      let i += 1
+    endif
+  endwhile
+  return a:list
+endfunction
+
+" Backport of fnameescape().
+function! pathogen#fnameescape(string) abort
+  if exists('*fnameescape')
+    return fnameescape(a:string)
+  elseif a:string ==# '-'
+    return '\-'
+  else
+    return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
+  endif
+endfunction
+
+" Like findfile(), but hardcoded to use the runtimepath.
+function! pathogen#runtime_findfile(file,count) abort "{{{1
+  let rtp = pathogen#join(1,pathogen#split(&rtp))
+  let file = findfile(a:file,rtp,a:count)
+  if file ==# ''
+    return ''
+  else
+    return fnamemodify(file,':p')
+  endif
+endfunction
+
+" Section: Deprecated
+
+function! s:warn(msg) abort
+  echohl WarningMsg
+  echomsg a:msg
+  echohl NONE
+endfunction
+
+" Prepend all subdirectories of path to the rtp, and append all 'after'
+" directories in those subdirectories.  Deprecated.
+function! pathogen#runtime_prepend_subdirectories(path) abort
+  call s:warn('Change pathogen#runtime_prepend_subdirectories('.string(a:path).') to pathogen#infect('.string(a:path.'/{}').')')
+  return pathogen#surround(a:path . pathogen#slash() . '{}')
+endfunction
+
+function! pathogen#incubate(...) abort
+  let name = a:0 ? a:1 : 'bundle/{}'
+  call s:warn('Change pathogen#incubate('.(a:0 ? string(a:1) : '').') to pathogen#infect('.string(name).')')
+  return pathogen#interpose(name)
+endfunction
+
+" Deprecated alias for pathogen#interpose().
+function! pathogen#runtime_append_all_bundles(...) abort
+  if a:0
+    call s:warn('Change pathogen#runtime_append_all_bundles('.string(a:1).') to pathogen#infect('.string(a:1.'/{}').')')
+  else
+    call s:warn('Change pathogen#runtime_append_all_bundles() to pathogen#infect()')
+  endif
+  return pathogen#interpose(a:0 ? a:1 . '/{}' : 'bundle/{}')
+endfunction
+
+if exists(':Vedit')
+  finish
+endif
+
+let s:vopen_warning = 0
+
+function! s:find(count,cmd,file,lcd)
+  let rtp = pathogen#join(1,pathogen#split(&runtimepath))
+  let file = pathogen#runtime_findfile(a:file,a:count)
+  if file ==# ''
+    return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'"
+  endif
+  if !s:vopen_warning
+    let s:vopen_warning = 1
+    let warning = '|echohl WarningMsg|echo "Install scriptease.vim to continue using :V'.a:cmd.'"|echohl NONE'
+  else
+    let warning = ''
+  endif
+  if a:lcd
+    let path = file[0:-strlen(a:file)-2]
+    execute 'lcd `=path`'
+    return a:cmd.' '.pathogen#fnameescape(a:file) . warning
+  else
+    return a:cmd.' '.pathogen#fnameescape(file) . warning
+  endif
+endfunction
+
+function! s:Findcomplete(A,L,P)
+  let sep = pathogen#slash()
+  let cheats = {
+        \'a': 'autoload',
+        \'d': 'doc',
+        \'f': 'ftplugin',
+        \'i': 'indent',
+        \'p': 'plugin',
+        \'s': 'syntax'}
+  if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0])
+    let request = cheats[a:A[0]].a:A[1:-1]
+  else
+    let request = a:A
+  endif
+  let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*'
+  let found = {}
+  for path in pathogen#split(&runtimepath)
+    let path = expand(path, ':p')
+    let matches = split(glob(path.sep.pattern),"\n")
+    call map(matches,'isdirectory(v:val) ? v:val.sep : v:val')
+    call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]')
+    for match in matches
+      let found[match] = 1
+    endfor
+  endfor
+  return sort(keys(found))
+endfunction
+
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve       :execute s:find(<count>,'edit<bang>',<q-args>,0)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit    :execute s:find(<count>,'edit<bang>',<q-args>,0)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen    :execute s:find(<count>,'edit<bang>',<q-args>,1)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit   :execute s:find(<count>,'split',<q-args>,<bang>1)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit  :execute s:find(<count>,'vsplit',<q-args>,<bang>1)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(<count>,'tabedit',<q-args>,<bang>1)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit   :execute s:find(<count>,'pedit',<q-args>,<bang>1)
+command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread    :execute s:find(<count>,'read',<q-args>,<bang>1)
+
+" vim:set et sw=2 foldmethod=expr foldexpr=getline(v\:lnum)=~'^\"\ Section\:'?'>1'\:getline(v\:lnum)=~#'^fu'?'a1'\:getline(v\:lnum)=~#'^endf'?'s1'\:'=':

+ 1 - 0
autoload/youcompleteme.vim

@@ -0,0 +1 @@
+/usr/share/vim-youcompleteme/autoload/youcompleteme.vim

+ 1 - 0
bundle/nerdtree

@@ -0,0 +1 @@
+Subproject commit b0bb781fc73ef40365e4c996a16f04368d64fc9d

+ 1 - 0
bundle/vim-easymotion

@@ -0,0 +1 @@
+Subproject commit 42e02a741c3e034a67a615945c4144c0fb0242a5

+ 1 - 0
doc/NERD_commenter.txt

@@ -0,0 +1 @@
+/usr/share/vim-scripts/doc/NERD_commenter.txt

+ 1 - 0
doc/bufexplorer.txt

@@ -0,0 +1 @@
+/usr/share/vim-scripts/doc/bufexplorer.txt

+ 1 - 0
doc/matchit.txt

@@ -0,0 +1 @@
+/usr/share/vim/addons/doc/matchit.txt

+ 235 - 2
doc/tags

@@ -1,3 +1,16 @@
+'NERDAllowAnyVisualDelims'	NERD_commenter.txt	/*'NERDAllowAnyVisualDelims'*
+'NERDBlockComIgnoreEmpty'	NERD_commenter.txt	/*'NERDBlockComIgnoreEmpty'*
+'NERDCommentWholeLinesInVMode'	NERD_commenter.txt	/*'NERDCommentWholeLinesInVMode'*
+'NERDCompactSexyComs'	NERD_commenter.txt	/*'NERDCompactSexyComs'*
+'NERDCreateDefaultMappings'	NERD_commenter.txt	/*'NERDCreateDefaultMappings'*
+'NERDDefaultNesting'	NERD_commenter.txt	/*'NERDDefaultNesting'*
+'NERDLPlace'	NERD_commenter.txt	/*'NERDLPlace'*
+'NERDMenuMode'	NERD_commenter.txt	/*'NERDMenuMode'*
+'NERDRPlace'	NERD_commenter.txt	/*'NERDRPlace'*
+'NERDRemoveAltComs'	NERD_commenter.txt	/*'NERDRemoveAltComs'*
+'NERDRemoveExtraSpaces'	NERD_commenter.txt	/*'NERDRemoveExtraSpaces'*
+'NERDSpaceDelims'	NERD_commenter.txt	/*'NERDSpaceDelims'*
+'NERDUsePlaceHolders'	NERD_commenter.txt	/*'NERDUsePlaceHolders'*
 'Tlist_Auto_Highlight_Tag'	taglist.txt	/*'Tlist_Auto_Highlight_Tag'*
 'Tlist_Auto_Open'	taglist.txt	/*'Tlist_Auto_Open'*
 'Tlist_Auto_Update'	taglist.txt	/*'Tlist_Auto_Update'*
@@ -23,6 +36,7 @@
 'Tlist_Use_SingleClick'	taglist.txt	/*'Tlist_Use_SingleClick'*
 'Tlist_WinHeight'	taglist.txt	/*'Tlist_WinHeight'*
 'Tlist_WinWidth'	taglist.txt	/*'Tlist_WinWidth'*
+'loaded_nerd_comments'	NERD_commenter.txt	/*'loaded_nerd_comments'*
 'pymode_breakpoint'	pymode.txt	/*'pymode_breakpoint'*
 'pymode_breakpoint_key'	pymode.txt	/*'pymode_breakpoint_key'*
 'pymode_doc'	pymode.txt	/*'pymode_doc'*
@@ -68,6 +82,7 @@
 'snippets'	snipMate.txt	/*'snippets'*
 .snippet	snipMate.txt	/*.snippet*
 .snippets	snipMate.txt	/*.snippets*
+:MatchDebug	matchit.txt	/*:MatchDebug*
 :PyLint	pymode.txt	/*:PyLint*
 :PyLintAuto	pymode.txt	/*:PyLintAuto*
 :PyLintToggle	pymode.txt	/*:PyLintToggle*
@@ -95,6 +110,14 @@
 :TlistUndebug	taglist.txt	/*:TlistUndebug*
 :TlistUnlock	taglist.txt	/*:TlistUnlock*
 :TlistUpdate	taglist.txt	/*:TlistUpdate*
+:YcmCompleter	youcompleteme.txt	/*:YcmCompleter*
+:YcmDebugInfo	youcompleteme.txt	/*:YcmDebugInfo*
+:YcmDiags	youcompleteme.txt	/*:YcmDiags*
+:YcmForceCompileAndDiagnostics	youcompleteme.txt	/*:YcmForceCompileAndDiagnostics*
+:YcmRestartServer	youcompleteme.txt	/*:YcmRestartServer*
+:YcmShowDetailedDiagnostic	youcompleteme.txt	/*:YcmShowDetailedDiagnostic*
+CTRL-sub-U	youcompleteme.txt	/*CTRL-sub-U*
+ClearCompilationFlagCache	youcompleteme.txt	/*ClearCompilationFlagCache*
 ConqueTerm	conque_term.txt	/*ConqueTerm*
 ConqueTerm_CWInsert	conque_term.txt	/*ConqueTerm_CWInsert*
 ConqueTerm_CloseOnEnd	conque_term.txt	/*ConqueTerm_CloseOnEnd*
@@ -117,9 +140,51 @@ ConqueTerm_StartMessages	conque_term.txt	/*ConqueTerm_StartMessages*
 ConqueTerm_Syntax	conque_term.txt	/*ConqueTerm_Syntax*
 ConqueTerm_TERM	conque_term.txt	/*ConqueTerm_TERM*
 ConqueTerm_ToggleKey	conque_term.txt	/*ConqueTerm_ToggleKey*
+Ctrl-sub-C	youcompleteme.txt	/*Ctrl-sub-C*
+E227:-mapping-already-exists-for-blah	youcompleteme.txt	/*E227:-mapping-already-exists-for-blah*
 ExtractSnips()	snipMate.txt	/*ExtractSnips()*
 ExtractSnipsFile()	snipMate.txt	/*ExtractSnipsFile()*
 Filename()	snipMate.txt	/*Filename()*
+GLIBC_2.XX-not-found()	youcompleteme.txt	/*GLIBC_2.XX-not-found()*
+GoToDeclaration	youcompleteme.txt	/*GoToDeclaration*
+GoToDefinition	youcompleteme.txt	/*GoToDefinition*
+GoToDefinitionElseDeclaration	youcompleteme.txt	/*GoToDefinitionElseDeclaration*
+LONG_BIT-definition-appears-wrong-for-platform	youcompleteme.txt	/*LONG_BIT-definition-appears-wrong-for-platform*
+MatchError	matchit.txt	/*MatchError*
+NERDComAbout	NERD_commenter.txt	/*NERDComAbout*
+NERDComAlignedComment	NERD_commenter.txt	/*NERDComAlignedComment*
+NERDComAltDelim	NERD_commenter.txt	/*NERDComAltDelim*
+NERDComAppendComment	NERD_commenter.txt	/*NERDComAppendComment*
+NERDComChangelog	NERD_commenter.txt	/*NERDComChangelog*
+NERDComComment	NERD_commenter.txt	/*NERDComComment*
+NERDComCredits	NERD_commenter.txt	/*NERDComCredits*
+NERDComDefaultDelims	NERD_commenter.txt	/*NERDComDefaultDelims*
+NERDComEOLComment	NERD_commenter.txt	/*NERDComEOLComment*
+NERDComFunctionality	NERD_commenter.txt	/*NERDComFunctionality*
+NERDComFunctionalityDetails	NERD_commenter.txt	/*NERDComFunctionalityDetails*
+NERDComFunctionalitySummary	NERD_commenter.txt	/*NERDComFunctionalitySummary*
+NERDComHeuristics	NERD_commenter.txt	/*NERDComHeuristics*
+NERDComInsertComment	NERD_commenter.txt	/*NERDComInsertComment*
+NERDComInstallation	NERD_commenter.txt	/*NERDComInstallation*
+NERDComInvertComment	NERD_commenter.txt	/*NERDComInvertComment*
+NERDComIssues	NERD_commenter.txt	/*NERDComIssues*
+NERDComLicense	NERD_commenter.txt	/*NERDComLicense*
+NERDComMappings	NERD_commenter.txt	/*NERDComMappings*
+NERDComMinimalComment	NERD_commenter.txt	/*NERDComMinimalComment*
+NERDComNERDComment	NERD_commenter.txt	/*NERDComNERDComment*
+NERDComNestedComment	NERD_commenter.txt	/*NERDComNestedComment*
+NERDComNesting	NERD_commenter.txt	/*NERDComNesting*
+NERDComOptions	NERD_commenter.txt	/*NERDComOptions*
+NERDComOptionsDetails	NERD_commenter.txt	/*NERDComOptionsDetails*
+NERDComOptionsSummary	NERD_commenter.txt	/*NERDComOptionsSummary*
+NERDComSexyComment	NERD_commenter.txt	/*NERDComSexyComment*
+NERDComSexyComments	NERD_commenter.txt	/*NERDComSexyComments*
+NERDComToggleComment	NERD_commenter.txt	/*NERDComToggleComment*
+NERDComUncommentLine	NERD_commenter.txt	/*NERDComUncommentLine*
+NERDComYankComment	NERD_commenter.txt	/*NERDComYankComment*
+NERDCommenter	NERD_commenter.txt	/*NERDCommenter*
+NERDCommenterContents	NERD_commenter.txt	/*NERDCommenterContents*
+NERD_commenter.txt	NERD_commenter.txt	/*NERD_commenter.txt*
 PyLint	pymode.txt	/*PyLint*
 PyLintAuto	pymode.txt	/*PyLintAuto*
 PyLintToggle	pymode.txt	/*PyLintToggle*
@@ -139,6 +204,7 @@ ReloadAllSnippets()	snipMate.txt	/*ReloadAllSnippets()*
 ReloadSnippets()	snipMate.txt	/*ReloadSnippets()*
 ResetAllSnippets()	snipMate.txt	/*ResetAllSnippets()*
 ResetSnippets()	snipMate.txt	/*ResetSnippets()*
+RestartServer	youcompleteme.txt	/*RestartServer*
 RopeCodeAssist	ropevim.txt	/*RopeCodeAssist*
 RopeDialogBatchsetCommand	ropevim.txt	/*RopeDialogBatchsetCommand*
 RopeEnablingAutoimport	ropevim.txt	/*RopeEnablingAutoimport*
@@ -150,10 +216,39 @@ RopeRefactoringDialog	ropevim.txt	/*RopeRefactoringDialog*
 RopeShortcuts	ropevim.txt	/*RopeShortcuts*
 RopeVariables	ropevim.txt	/*RopeVariables*
 Ropevim	ropevim.txt	/*Ropevim*
+StartServer	youcompleteme.txt	/*StartServer*
+StopServer	youcompleteme.txt	/*StopServer*
+Tlist_Get_Filenames()	taglist.txt	/*Tlist_Get_Filenames()*
 Tlist_Get_Tag_Prototype_By_Line()	taglist.txt	/*Tlist_Get_Tag_Prototype_By_Line()*
 Tlist_Get_Tagname_By_Line()	taglist.txt	/*Tlist_Get_Tagname_By_Line()*
 Tlist_Set_App()	taglist.txt	/*Tlist_Set_App()*
 Tlist_Update_File_Tags()	taglist.txt	/*Tlist_Update_File_Tags()*
+Vim:-Caught-deadly-signal-SEGV	youcompleteme.txt	/*Vim:-Caught-deadly-signal-SEGV*
+[%	matchit.txt	/*[%*
+]%	matchit.txt	/*]%*
+b:match_col	matchit.txt	/*b:match_col*
+b:match_debug	matchit.txt	/*b:match_debug*
+b:match_ignorecase	matchit.txt	/*b:match_ignorecase*
+b:match_ini	matchit.txt	/*b:match_ini*
+b:match_iniBR	matchit.txt	/*b:match_iniBR*
+b:match_match	matchit.txt	/*b:match_match*
+b:match_pat	matchit.txt	/*b:match_pat*
+b:match_skip	matchit.txt	/*b:match_skip*
+b:match_table	matchit.txt	/*b:match_table*
+b:match_tail	matchit.txt	/*b:match_tail*
+b:match_wholeBR	matchit.txt	/*b:match_wholeBR*
+b:match_word	matchit.txt	/*b:match_word*
+b:match_words	matchit.txt	/*b:match_words*
+bufexplorer	bufexplorer.txt	/*bufexplorer*
+bufexplorer-changelog	bufexplorer.txt	/*bufexplorer-changelog*
+bufexplorer-credits	bufexplorer.txt	/*bufexplorer-credits*
+bufexplorer-customization	bufexplorer.txt	/*bufexplorer-customization*
+bufexplorer-installation	bufexplorer.txt	/*bufexplorer-installation*
+bufexplorer-todo	bufexplorer.txt	/*bufexplorer-todo*
+bufexplorer-usage	bufexplorer.txt	/*bufexplorer-usage*
+bufexplorer-windowlayout	bufexplorer.txt	/*bufexplorer-windowlayout*
+bufexplorer.txt	bufexplorer.txt	/*bufexplorer.txt*
+buffer-explorer	bufexplorer.txt	/*buffer-explorer*
 conque-config-general	conque_term.txt	/*conque-config-general*
 conque-config-keyboard	conque_term.txt	/*conque-config-keyboard*
 conque-config-unix	conque_term.txt	/*conque-config-unix*
@@ -186,13 +281,105 @@ conque-term-write	conque_term.txt	/*conque-term-write*
 conque-term-writeln	conque_term.txt	/*conque-term-writeln*
 cs	surround.txt	/*cs*
 ds	surround.txt	/*ds*
+g%	matchit.txt	/*g%*
+g:bufExplorerChgWin	bufexplorer.txt	/*g:bufExplorerChgWin*
+g:bufExplorerDefaultHelp	bufexplorer.txt	/*g:bufExplorerDefaultHelp*
+g:bufExplorerDetailedHelp	bufexplorer.txt	/*g:bufExplorerDetailedHelp*
+g:bufExplorerFindActive	bufexplorer.txt	/*g:bufExplorerFindActive*
+g:bufExplorerFuncRef	bufexplorer.txt	/*g:bufExplorerFuncRef*
+g:bufExplorerReverseSort	bufexplorer.txt	/*g:bufExplorerReverseSort*
+g:bufExplorerShowDirectories	bufexplorer.txt	/*g:bufExplorerShowDirectories*
+g:bufExplorerShowNoName	bufexplorer.txt	/*g:bufExplorerShowNoName*
+g:bufExplorerShowRelativePath	bufexplorer.txt	/*g:bufExplorerShowRelativePath*
+g:bufExplorerShowTabBuffer	bufexplorer.txt	/*g:bufExplorerShowTabBuffer*
+g:bufExplorerShowUnlisted	bufexplorer.txt	/*g:bufExplorerShowUnlisted*
+g:bufExplorerSortBy	bufexplorer.txt	/*g:bufExplorerSortBy*
+g:bufExplorerSplitBelow	bufexplorer.txt	/*g:bufExplorerSplitBelow*
+g:bufExplorerSplitHorzSize	bufexplorer.txt	/*g:bufExplorerSplitHorzSize*
+g:bufExplorerSplitOutPathName	bufexplorer.txt	/*g:bufExplorerSplitOutPathName*
+g:bufExplorerSplitRight	bufexplorer.txt	/*g:bufExplorerSplitRight*
+g:bufExplorerSplitVertSize	bufexplorer.txt	/*g:bufExplorerSplitVertSize*
 g:snippets_dir	snipMate.txt	/*g:snippets_dir*
 g:snips_author	snipMate.txt	/*g:snips_author*
+g:ycm_add_preview_to_completeopt	youcompleteme.txt	/*g:ycm_add_preview_to_completeopt*
+g:ycm_allow_changing_updatetime	youcompleteme.txt	/*g:ycm_allow_changing_updatetime*
+g:ycm_always_populate_location_list	youcompleteme.txt	/*g:ycm_always_populate_location_list*
+g:ycm_auto_start_csharp_server	youcompleteme.txt	/*g:ycm_auto_start_csharp_server*
+g:ycm_auto_stop_csharp_server	youcompleteme.txt	/*g:ycm_auto_stop_csharp_server*
+g:ycm_auto_trigger	youcompleteme.txt	/*g:ycm_auto_trigger*
+g:ycm_autoclose_preview_window_after_completion	youcompleteme.txt	/*g:ycm_autoclose_preview_window_after_completion*
+g:ycm_autoclose_preview_window_after_insertion	youcompleteme.txt	/*g:ycm_autoclose_preview_window_after_insertion*
+g:ycm_cache_omnifunc	youcompleteme.txt	/*g:ycm_cache_omnifunc*
+g:ycm_collect_identifiers_from_comments_and_strings	youcompleteme.txt	/*g:ycm_collect_identifiers_from_comments_and_strings*
+g:ycm_collect_identifiers_from_tags_files	youcompleteme.txt	/*g:ycm_collect_identifiers_from_tags_files*
+g:ycm_complete_in_comments	youcompleteme.txt	/*g:ycm_complete_in_comments*
+g:ycm_complete_in_strings	youcompleteme.txt	/*g:ycm_complete_in_strings*
+g:ycm_confirm_extra_conf	youcompleteme.txt	/*g:ycm_confirm_extra_conf*
+g:ycm_csharp_server_port	youcompleteme.txt	/*g:ycm_csharp_server_port*
+g:ycm_echo_current_diagnostic	youcompleteme.txt	/*g:ycm_echo_current_diagnostic*
+g:ycm_enable_diagnostic_highlighting	youcompleteme.txt	/*g:ycm_enable_diagnostic_highlighting*
+g:ycm_enable_diagnostic_signs	youcompleteme.txt	/*g:ycm_enable_diagnostic_signs*
+g:ycm_error_symbol	youcompleteme.txt	/*g:ycm_error_symbol*
+g:ycm_extra_conf_globlist	youcompleteme.txt	/*g:ycm_extra_conf_globlist*
+g:ycm_extra_conf_vim_data	youcompleteme.txt	/*g:ycm_extra_conf_vim_data*
+g:ycm_filepath_completion_use_working_dir	youcompleteme.txt	/*g:ycm_filepath_completion_use_working_dir*
+g:ycm_filetype_blacklist	youcompleteme.txt	/*g:ycm_filetype_blacklist*
+g:ycm_filetype_specific_completion_to_disable	youcompleteme.txt	/*g:ycm_filetype_specific_completion_to_disable*
+g:ycm_filetype_whitelist	youcompleteme.txt	/*g:ycm_filetype_whitelist*
+g:ycm_global_ycm_extra_conf	youcompleteme.txt	/*g:ycm_global_ycm_extra_conf*
+g:ycm_key_detailed_diagnostics	youcompleteme.txt	/*g:ycm_key_detailed_diagnostics*
+g:ycm_key_invoke_completion	youcompleteme.txt	/*g:ycm_key_invoke_completion*
+g:ycm_key_list_previous_completion	youcompleteme.txt	/*g:ycm_key_list_previous_completion*
+g:ycm_key_list_select_completion	youcompleteme.txt	/*g:ycm_key_list_select_completion*
+g:ycm_max_diagnostics_to_display	youcompleteme.txt	/*g:ycm_max_diagnostics_to_display*
+g:ycm_min_num_identifier_candidate_chars	youcompleteme.txt	/*g:ycm_min_num_identifier_candidate_chars*
+g:ycm_min_num_of_chars_for_completion	youcompleteme.txt	/*g:ycm_min_num_of_chars_for_completion*
+g:ycm_open_loclist_on_ycm_diags	youcompleteme.txt	/*g:ycm_open_loclist_on_ycm_diags*
+g:ycm_path_to_python_interpreter	youcompleteme.txt	/*g:ycm_path_to_python_interpreter*
+g:ycm_seed_identifiers_with_syntax	youcompleteme.txt	/*g:ycm_seed_identifiers_with_syntax*
+g:ycm_semantic_triggers	youcompleteme.txt	/*g:ycm_semantic_triggers*
+g:ycm_server_keep_logfiles	youcompleteme.txt	/*g:ycm_server_keep_logfiles*
+g:ycm_server_log_level	youcompleteme.txt	/*g:ycm_server_log_level*
+g:ycm_server_use_vim_stdout	youcompleteme.txt	/*g:ycm_server_use_vim_stdout*
+g:ycm_show_diagnostics_ui	youcompleteme.txt	/*g:ycm_show_diagnostics_ui*
+g:ycm_use_ultisnips_completer	youcompleteme.txt	/*g:ycm_use_ultisnips_completer*
+g:ycm_warning_symbol	youcompleteme.txt	/*g:ycm_warning_symbol*
 i_CTRL-G_S	surround.txt	/*i_CTRL-G_S*
 i_CTRL-G_s	surround.txt	/*i_CTRL-G_s*
 i_CTRL-R_<Tab>	snipMate.txt	/*i_CTRL-R_<Tab>*
+import-vim	youcompleteme.txt	/*import-vim*
+libpython	youcompleteme.txt	/*libpython*
+libpython2.7.a-...-relocation-R_X86_64_32	youcompleteme.txt	/*libpython2.7.a-...-relocation-R_X86_64_32*
 list-snippets	snipMate.txt	/*list-snippets*
+matchit	matchit.txt	/*matchit*
+matchit-%	matchit.txt	/*matchit-%*
+matchit-\1	matchit.txt	/*matchit-\\1*
+matchit-activate	matchit.txt	/*matchit-activate*
+matchit-backref	matchit.txt	/*matchit-backref*
+matchit-bugs	matchit.txt	/*matchit-bugs*
+matchit-choose	matchit.txt	/*matchit-choose*
+matchit-configure	matchit.txt	/*matchit-configure*
+matchit-debug	matchit.txt	/*matchit-debug*
+matchit-details	matchit.txt	/*matchit-details*
+matchit-highlight	matchit.txt	/*matchit-highlight*
+matchit-hl	matchit.txt	/*matchit-hl*
+matchit-intro	matchit.txt	/*matchit-intro*
+matchit-languages	matchit.txt	/*matchit-languages*
+matchit-modes	matchit.txt	/*matchit-modes*
+matchit-newlang	matchit.txt	/*matchit-newlang*
+matchit-o_%	matchit.txt	/*matchit-o_%*
+matchit-parse	matchit.txt	/*matchit-parse*
+matchit-s:notend	matchit.txt	/*matchit-s:notend*
+matchit-s:sol	matchit.txt	/*matchit-s:sol*
+matchit-spaces	matchit.txt	/*matchit-spaces*
+matchit-troubleshoot	matchit.txt	/*matchit-troubleshoot*
+matchit-v_%	matchit.txt	/*matchit-v_%*
+matchit.txt	matchit.txt	/*matchit.txt*
+matchit.vim	matchit.txt	/*matchit.vim*
 multi_snip	snipMate.txt	/*multi_snip*
+o_[%	matchit.txt	/*o_[%*
+o_]%	matchit.txt	/*o_]%*
+o_g%	matchit.txt	/*o_g%*
 pymode.txt	pymode.txt	/*pymode.txt*
 python-mode.txt	pymode.txt	/*python-mode.txt*
 ropevim.txt	ropevim.txt	/*ropevim.txt*
@@ -219,7 +406,6 @@ snippet	snipMate.txt	/*snippet*
 snippet-syntax	snipMate.txt	/*snippet-syntax*
 snippets	snipMate.txt	/*snippets*
 surround	surround.txt	/*surround*
-surround-author	surround.txt	/*surround-author*
 surround-customizing	surround.txt	/*surround-customizing*
 surround-issues	surround.txt	/*surround-issues*
 surround-mappings	surround.txt	/*surround-mappings*
@@ -244,9 +430,56 @@ taglist-todo	taglist.txt	/*taglist-todo*
 taglist-using	taglist.txt	/*taglist-using*
 taglist.txt	taglist.txt	/*taglist.txt*
 vS	surround.txt	/*vS*
+v_[%	matchit.txt	/*v_[%*
+v_]%	matchit.txt	/*v_]%*
+v_a%	matchit.txt	/*v_a%*
+v_g%	matchit.txt	/*v_g%*
 vgS	surround.txt	/*vgS*
-vs	surround.txt	/*vs*
+vim-sub-autoclose	youcompleteme.txt	/*vim-sub-autoclose*
 yS	surround.txt	/*yS*
 ySS	surround.txt	/*ySS*
+youcompleteme-c-family-semantic-completion-engine-usage	youcompleteme.txt	/*youcompleteme-c-family-semantic-completion-engine-usage*
+youcompleteme-c-semantic-completion	youcompleteme.txt	/*youcompleteme-c-semantic-completion*
+youcompleteme-client-server-architecture	youcompleteme.txt	/*youcompleteme-client-server-architecture*
+youcompleteme-commands	youcompleteme.txt	/*youcompleteme-commands*
+youcompleteme-completion-doesnt-work-with-c-standard-library-headers	youcompleteme.txt	/*youcompleteme-completion-doesnt-work-with-c-standard-library-headers*
+youcompleteme-completion-string-ranking	youcompleteme.txt	/*youcompleteme-completion-string-ranking*
+youcompleteme-contact	youcompleteme.txt	/*youcompleteme-contact*
+youcompleteme-diagnostic-display	youcompleteme.txt	/*youcompleteme-diagnostic-display*
+youcompleteme-diagnostic-highlighting-groups	youcompleteme.txt	/*youcompleteme-diagnostic-highlighting-groups*
+youcompleteme-faq	youcompleteme.txt	/*youcompleteme-faq*
+youcompleteme-full-installation-guide	youcompleteme.txt	/*youcompleteme-full-installation-guide*
+youcompleteme-general-semantic-completion-engine-usage	youcompleteme.txt	/*youcompleteme-general-semantic-completion-engine-usage*
+youcompleteme-general-usage	youcompleteme.txt	/*youcompleteme-general-usage*
+youcompleteme-i-get-an-internal-compiler-error-when-installing	youcompleteme.txt	/*youcompleteme-i-get-an-internal-compiler-error-when-installing*
+youcompleteme-i-get-annoying-messages-in-vims-status-area-when-i-type	youcompleteme.txt	/*youcompleteme-i-get-annoying-messages-in-vims-status-area-when-i-type*
+youcompleteme-i-get-weird-window-at-top-of-my-file-when-i-use-semantic-engine	youcompleteme.txt	/*youcompleteme-i-get-weird-window-at-top-of-my-file-when-i-use-semantic-engine*
+youcompleteme-i-have-homebrew-python-and-or-macvim-cant-compile-sigabrt-when-starting	youcompleteme.txt	/*youcompleteme-i-have-homebrew-python-and-or-macvim-cant-compile-sigabrt-when-starting*
+youcompleteme-im-trying-to-use-homebrew-vim-with-ycm-im-getting-segfaults	youcompleteme.txt	/*youcompleteme-im-trying-to-use-homebrew-vim-with-ycm-im-getting-segfaults*
+youcompleteme-introduction	youcompleteme.txt	/*youcompleteme-introduction*
+youcompleteme-is-there-sort-of-ycm-mailing-list-i-have-questions	youcompleteme.txt	/*youcompleteme-is-there-sort-of-ycm-mailing-list-i-have-questions*
+youcompleteme-it-appears-that-ycm-is-not-working	youcompleteme.txt	/*youcompleteme-it-appears-that-ycm-is-not-working*
+youcompleteme-license	youcompleteme.txt	/*youcompleteme-license*
+youcompleteme-mac-os-x-super-quick-installation	youcompleteme.txt	/*youcompleteme-mac-os-x-super-quick-installation*
+youcompleteme-on-very-rare-occasions-vim-crashes-when-i-tab-through-completion-menu	youcompleteme.txt	/*youcompleteme-on-very-rare-occasions-vim-crashes-when-i-tab-through-completion-menu*
+youcompleteme-options	youcompleteme.txt	/*youcompleteme-options*
+youcompleteme-project-management	youcompleteme.txt	/*youcompleteme-project-management*
+youcompleteme-python-semantic-completion	youcompleteme.txt	/*youcompleteme-python-semantic-completion*
+youcompleteme-references	youcompleteme.txt	/*youcompleteme-references*
+youcompleteme-semantic-completion-for-other-languages	youcompleteme.txt	/*youcompleteme-semantic-completion-for-other-languages*
+youcompleteme-sometimes-it-takes-much-longer-to-get-semantic-completions-than-normal	youcompleteme.txt	/*youcompleteme-sometimes-it-takes-much-longer-to-get-semantic-completions-than-normal*
+youcompleteme-ubuntu-linux-x64-super-quick-installation	youcompleteme.txt	/*youcompleteme-ubuntu-linux-x64-super-quick-installation*
+youcompleteme-user-guide	youcompleteme.txt	/*youcompleteme-user-guide*
+youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files	youcompleteme.txt	/*youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files*
+youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display	youcompleteme.txt	/*youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display*
+youcompleteme-why-does-ycm-demand-such-recent-version-of-vim	youcompleteme.txt	/*youcompleteme-why-does-ycm-demand-such-recent-version-of-vim*
+youcompleteme-why-isnt-ycm-just-written-in-plain-vimscript-ffs	youcompleteme.txt	/*youcompleteme-why-isnt-ycm-just-written-in-plain-vimscript-ffs*
+youcompleteme-windows-installation	youcompleteme.txt	/*youcompleteme-windows-installation*
+youcompleteme-writing-new-semantic-completers	youcompleteme.txt	/*youcompleteme-writing-new-semantic-completers*
+youcompleteme-ycm-auto-inserts-completion-strings-i-dont-want	youcompleteme.txt	/*youcompleteme-ycm-auto-inserts-completion-strings-i-dont-want*
+youcompleteme-ycm-conflicts-with-ultisnips-tab-key-usage	youcompleteme.txt	/*youcompleteme-ycm-conflicts-with-ultisnips-tab-key-usage*
+youcompleteme-ycm-does-not-read-identifiers-from-my-tags-files	youcompleteme.txt	/*youcompleteme-ycm-does-not-read-identifiers-from-my-tags-files*
+youcompleteme-ycmcompleter-subcommands	youcompleteme.txt	/*youcompleteme-ycmcompleter-subcommands*
+youcompleteme.txt	youcompleteme.txt	/*youcompleteme.txt*
 ys	surround.txt	/*ys*
 yss	surround.txt	/*yss*

+ 1 - 0
doc/youcompleteme.txt

@@ -0,0 +1 @@
+/usr/share/vim-youcompleteme/doc/youcompleteme.txt

+ 1 - 0
plugin/NERD_commenter.vim

@@ -0,0 +1 @@
+/usr/share/vim-scripts/plugin/NERD_commenter.vim

+ 1 - 0
plugin/bufexplorer.vim

@@ -0,0 +1 @@
+/usr/share/vim-scripts/plugin/bufexplorer.vim

+ 1 - 0
plugin/matchit.vim

@@ -0,0 +1 @@
+/usr/share/vim/addons/plugin/matchit.vim

+ 1 - 0
plugin/youcompleteme.vim

@@ -0,0 +1 @@
+/usr/share/vim-youcompleteme/plugin/youcompleteme.vim

+ 717 - 0
tags

@@ -0,0 +1,717 @@
+'NERDAllowAnyVisualDelims'	doc/NERD_commenter.txt	/*'NERDAllowAnyVisualDelims'*
+'NERDBlockComIgnoreEmpty'	doc/NERD_commenter.txt	/*'NERDBlockComIgnoreEmpty'*
+'NERDChristmasTree'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDChristmasTree'*
+'NERDCommentWholeLinesInVMode'	doc/NERD_commenter.txt	/*'NERDCommentWholeLinesInVMode'*
+'NERDCompactSexyComs'	doc/NERD_commenter.txt	/*'NERDCompactSexyComs'*
+'NERDCreateDefaultMappings'	doc/NERD_commenter.txt	/*'NERDCreateDefaultMappings'*
+'NERDDefaultNesting'	doc/NERD_commenter.txt	/*'NERDDefaultNesting'*
+'NERDLPlace'	doc/NERD_commenter.txt	/*'NERDLPlace'*
+'NERDMenuMode'	doc/NERD_commenter.txt	/*'NERDMenuMode'*
+'NERDRPlace'	doc/NERD_commenter.txt	/*'NERDRPlace'*
+'NERDRemoveAltComs'	doc/NERD_commenter.txt	/*'NERDRemoveAltComs'*
+'NERDRemoveExtraSpaces'	doc/NERD_commenter.txt	/*'NERDRemoveExtraSpaces'*
+'NERDSpaceDelims'	doc/NERD_commenter.txt	/*'NERDSpaceDelims'*
+'NERDTreeAutoCenter'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeAutoCenter'*
+'NERDTreeAutoCenterThreshold'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeAutoCenterThreshold'*
+'NERDTreeAutoDeleteBuffer'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeAutoDeleteBuffer'*
+'NERDTreeBookmarksFile'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeBookmarksFile'*
+'NERDTreeCasadeOpenSingleChildDir'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeCasadeOpenSingleChildDir'*
+'NERDTreeCaseSensitiveSort'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeCaseSensitiveSort'*
+'NERDTreeChDirMode'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeChDirMode'*
+'NERDTreeDirArrows'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeDirArrows'*
+'NERDTreeHighlightCursorline'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeHighlightCursorline'*
+'NERDTreeHijackNetrw'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeHijackNetrw'*
+'NERDTreeIgnore'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeIgnore'*
+'NERDTreeMinimalUI'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeMinimalUI'*
+'NERDTreeMouseMode'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeMouseMode'*
+'NERDTreeQuitOnOpen'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeQuitOnOpen'*
+'NERDTreeShowBookmarks'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeShowBookmarks'*
+'NERDTreeShowFiles'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeShowFiles'*
+'NERDTreeShowHidden'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeShowHidden'*
+'NERDTreeShowLineNumbers'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeShowLineNumbers'*
+'NERDTreeSortOrder'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeSortOrder'*
+'NERDTreeStatusline'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeStatusline'*
+'NERDTreeWinPos'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeWinPos'*
+'NERDTreeWinSize'	bundle/nerdtree/doc/NERD_tree.txt	/*'NERDTreeWinSize'*
+'NERDUsePlaceHolders'	doc/NERD_commenter.txt	/*'NERDUsePlaceHolders'*
+'Tlist_Auto_Highlight_Tag'	doc/taglist.txt	/*'Tlist_Auto_Highlight_Tag'*
+'Tlist_Auto_Open'	doc/taglist.txt	/*'Tlist_Auto_Open'*
+'Tlist_Auto_Update'	doc/taglist.txt	/*'Tlist_Auto_Update'*
+'Tlist_Close_On_Select'	doc/taglist.txt	/*'Tlist_Close_On_Select'*
+'Tlist_Compact_Format'	doc/taglist.txt	/*'Tlist_Compact_Format'*
+'Tlist_Ctags_Cmd'	doc/taglist.txt	/*'Tlist_Ctags_Cmd'*
+'Tlist_Display_Prototype'	doc/taglist.txt	/*'Tlist_Display_Prototype'*
+'Tlist_Display_Tag_Scope'	doc/taglist.txt	/*'Tlist_Display_Tag_Scope'*
+'Tlist_Enable_Fold_Column'	doc/taglist.txt	/*'Tlist_Enable_Fold_Column'*
+'Tlist_Exit_OnlyWindow'	doc/taglist.txt	/*'Tlist_Exit_OnlyWindow'*
+'Tlist_File_Fold_Auto_Close'	doc/taglist.txt	/*'Tlist_File_Fold_Auto_Close'*
+'Tlist_GainFocus_On_ToggleOpen'	doc/taglist.txt	/*'Tlist_GainFocus_On_ToggleOpen'*
+'Tlist_Highlight_Tag_On_BufEnter'	doc/taglist.txt	/*'Tlist_Highlight_Tag_On_BufEnter'*
+'Tlist_Inc_Winwidth'	doc/taglist.txt	/*'Tlist_Inc_Winwidth'*
+'Tlist_Max_Submenu_Items'	doc/taglist.txt	/*'Tlist_Max_Submenu_Items'*
+'Tlist_Max_Tag_Length'	doc/taglist.txt	/*'Tlist_Max_Tag_Length'*
+'Tlist_Process_File_Always'	doc/taglist.txt	/*'Tlist_Process_File_Always'*
+'Tlist_Show_Menu'	doc/taglist.txt	/*'Tlist_Show_Menu'*
+'Tlist_Show_One_File'	doc/taglist.txt	/*'Tlist_Show_One_File'*
+'Tlist_Sort_Type'	doc/taglist.txt	/*'Tlist_Sort_Type'*
+'Tlist_Use_Horiz_Window'	doc/taglist.txt	/*'Tlist_Use_Horiz_Window'*
+'Tlist_Use_Right_Window'	doc/taglist.txt	/*'Tlist_Use_Right_Window'*
+'Tlist_Use_SingleClick'	doc/taglist.txt	/*'Tlist_Use_SingleClick'*
+'Tlist_WinHeight'	doc/taglist.txt	/*'Tlist_WinHeight'*
+'Tlist_WinWidth'	doc/taglist.txt	/*'Tlist_WinWidth'*
+'loaded_nerd_comments'	doc/NERD_commenter.txt	/*'loaded_nerd_comments'*
+'loaded_nerd_tree'	bundle/nerdtree/doc/NERD_tree.txt	/*'loaded_nerd_tree'*
+'pymode_breakpoint'	doc/pymode.txt	/*'pymode_breakpoint'*
+'pymode_breakpoint_key'	doc/pymode.txt	/*'pymode_breakpoint_key'*
+'pymode_doc'	doc/pymode.txt	/*'pymode_doc'*
+'pymode_doc_key'	doc/pymode.txt	/*'pymode_doc_key'*
+'pymode_folding'	doc/pymode.txt	/*'pymode_folding'*
+'pymode_indent'	doc/pymode.txt	/*'pymode_indent'*
+'pymode_lint'	doc/pymode.txt	/*'pymode_lint'*
+'pymode_lint_checker'	doc/pymode.txt	/*'pymode_lint_checker'*
+'pymode_lint_config'	doc/pymode.txt	/*'pymode_lint_config'*
+'pymode_lint_cwindow'	doc/pymode.txt	/*'pymode_lint_cwindow'*
+'pymode_lint_hold'	doc/pymode.txt	/*'pymode_lint_hold'*
+'pymode_lint_ignore'	doc/pymode.txt	/*'pymode_lint_ignore'*
+'pymode_lint_jump'	doc/pymode.txt	/*'pymode_lint_jump'*
+'pymode_lint_maxheight'	doc/pymode.txt	/*'pymode_lint_maxheight'*
+'pymode_lint_mccabe_complexity'	doc/pymode.txt	/*'pymode_lint_mccabe_complexity'*
+'pymode_lint_message'	doc/pymode.txt	/*'pymode_lint_message'*
+'pymode_lint_minheight'	doc/pymode.txt	/*'pymode_lint_minheight'*
+'pymode_lint_onfly'	doc/pymode.txt	/*'pymode_lint_onfly'*
+'pymode_lint_select'	doc/pymode.txt	/*'pymode_lint_select'*
+'pymode_lint_signs'	doc/pymode.txt	/*'pymode_lint_signs'*
+'pymode_lint_write'	doc/pymode.txt	/*'pymode_lint_write'*
+'pymode_motion'	doc/pymode.txt	/*'pymode_motion'*
+'pymode_options'	doc/pymode.txt	/*'pymode_options'*
+'pymode_paths'	doc/pymode.txt	/*'pymode_paths'*
+'pymode_rope'	doc/pymode.txt	/*'pymode_rope'*
+'pymode_rope_always_show_complete_menu'	doc/ropevim.txt	/*'pymode_rope_always_show_complete_menu'*
+'pymode_rope_autoimport_modules'	doc/ropevim.txt	/*'pymode_rope_autoimport_modules'*
+'pymode_rope_autoimport_underlineds'	doc/ropevim.txt	/*'pymode_rope_autoimport_underlineds'*
+'pymode_rope_codeassist_maxfixes'	doc/ropevim.txt	/*'pymode_rope_codeassist_maxfixes'*
+'pymode_rope_enable_autoimport'	doc/ropevim.txt	/*'pymode_rope_enable_autoimport'*
+'pymode_rope_enable_shortcuts'	doc/ropevim.txt	/*'pymode_rope_enable_shortcuts'*
+'pymode_rope_extended_complete'	doc/ropevim.txt	/*'pymode_rope_extended_complete'*
+'pymode_rope_global_prefix'	doc/ropevim.txt	/*'pymode_rope_global_prefix'*
+'pymode_rope_goto_def_newwin'	doc/ropevim.txt	/*'pymode_rope_goto_def_newwin'*
+'pymode_rope_guess_project'	doc/ropevim.txt	/*'pymode_rope_guess_project'*
+'pymode_rope_local_prefix'	doc/ropevim.txt	/*'pymode_rope_local_prefix'*
+'pymode_rope_vim_completion'	doc/ropevim.txt	/*'pymode_rope_vim_completion'*
+'pymode_run'	doc/pymode.txt	/*'pymode_run'*
+'pymode_run_key'	doc/pymode.txt	/*'pymode_run_key'*
+'pymode_syntax'	doc/pymode.txt	/*'pymode_syntax'*
+'pymode_utils_whitespaces'	doc/pymode.txt	/*'pymode_utils_whitespaces'*
+'pymode_virtualenv'	doc/pymode.txt	/*'pymode_virtualenv'*
+'snippets'	doc/snipMate.txt	/*'snippets'*
+.snippet	doc/snipMate.txt	/*.snippet*
+.snippets	doc/snipMate.txt	/*.snippets*
+:MatchDebug	doc/matchit.txt	/*:MatchDebug*
+:NERDTree	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTree*
+:NERDTreeCWD	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeCWD*
+:NERDTreeClose	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeClose*
+:NERDTreeFind	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeFind*
+:NERDTreeFromBookmark	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeFromBookmark*
+:NERDTreeMirror	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeMirror*
+:NERDTreeToggle	bundle/nerdtree/doc/NERD_tree.txt	/*:NERDTreeToggle*
+:PyLint	doc/pymode.txt	/*:PyLint*
+:PyLintAuto	doc/pymode.txt	/*:PyLintAuto*
+:PyLintToggle	doc/pymode.txt	/*:PyLintToggle*
+:Pydoc	doc/pymode.txt	/*:Pydoc*
+:Pyrun	doc/pymode.txt	/*:Pyrun*
+:RopeCodeAssist	doc/ropevim.txt	/*:RopeCodeAssist*
+:RopeFindFile	doc/ropevim.txt	/*:RopeFindFile*
+:RopeFindFileOtherWindow	doc/ropevim.txt	/*:RopeFindFileOtherWindow*
+:RopeGenerateAutoimportCache	doc/ropevim.txt	/*:RopeGenerateAutoimportCache*
+:RopeLuckyAssist	doc/ropevim.txt	/*:RopeLuckyAssist*
+:RopevimAutoImport	doc/ropevim.txt	/*:RopevimAutoImport*
+:TlistAddFiles	doc/taglist.txt	/*:TlistAddFiles*
+:TlistAddFilesRecursive	doc/taglist.txt	/*:TlistAddFilesRecursive*
+:TlistClose	doc/taglist.txt	/*:TlistClose*
+:TlistDebug	doc/taglist.txt	/*:TlistDebug*
+:TlistHighlightTag	doc/taglist.txt	/*:TlistHighlightTag*
+:TlistLock	doc/taglist.txt	/*:TlistLock*
+:TlistMessages	doc/taglist.txt	/*:TlistMessages*
+:TlistOpen	doc/taglist.txt	/*:TlistOpen*
+:TlistSessionLoad	doc/taglist.txt	/*:TlistSessionLoad*
+:TlistSessionSave	doc/taglist.txt	/*:TlistSessionSave*
+:TlistShowPrototype	doc/taglist.txt	/*:TlistShowPrototype*
+:TlistShowTag	doc/taglist.txt	/*:TlistShowTag*
+:TlistToggle	doc/taglist.txt	/*:TlistToggle*
+:TlistUndebug	doc/taglist.txt	/*:TlistUndebug*
+:TlistUnlock	doc/taglist.txt	/*:TlistUnlock*
+:TlistUpdate	doc/taglist.txt	/*:TlistUpdate*
+:YcmCompleter	doc/youcompleteme.txt	/*:YcmCompleter*
+:YcmDebugInfo	doc/youcompleteme.txt	/*:YcmDebugInfo*
+:YcmDiags	doc/youcompleteme.txt	/*:YcmDiags*
+:YcmForceCompileAndDiagnostics	doc/youcompleteme.txt	/*:YcmForceCompileAndDiagnostics*
+:YcmRestartServer	doc/youcompleteme.txt	/*:YcmRestartServer*
+:YcmShowDetailedDiagnostic	doc/youcompleteme.txt	/*:YcmShowDetailedDiagnostic*
+<Over>(em-jumpback)	bundle/vim-easymotion/doc/easymotion.txt	/*<Over>(em-jumpback)*
+<Over>(em-openallfold)	bundle/vim-easymotion/doc/easymotion.txt	/*<Over>(em-openallfold)*
+<Over>(em-scroll-b)	bundle/vim-easymotion/doc/easymotion.txt	/*<Over>(em-scroll-b)*
+<Over>(em-scroll-f)	bundle/vim-easymotion/doc/easymotion.txt	/*<Over>(em-scroll-f)*
+<Plug>(easymotion-F2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-F2)*
+<Plug>(easymotion-Fl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Fl)*
+<Plug>(easymotion-Fl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Fl2)*
+<Plug>(easymotion-Fln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Fln)*
+<Plug>(easymotion-Fn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Fn)*
+<Plug>(easymotion-T2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-T2)*
+<Plug>(easymotion-Tl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Tl)*
+<Plug>(easymotion-Tl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Tl2)*
+<Plug>(easymotion-Tln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Tln)*
+<Plug>(easymotion-Tn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-Tn)*
+<Plug>(easymotion-bd-E)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-E)*
+<Plug>(easymotion-bd-W)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-W)*
+<Plug>(easymotion-bd-e)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-e)*
+<Plug>(easymotion-bd-el)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-el)*
+<Plug>(easymotion-bd-f)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-f)*
+<Plug>(easymotion-bd-fl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-fl)*
+<Plug>(easymotion-bd-jk)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-jk)*
+<Plug>(easymotion-bd-n)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-n)*
+<Plug>(easymotion-bd-t)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-t)*
+<Plug>(easymotion-bd-t2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-t2)*
+<Plug>(easymotion-bd-tl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-tl)*
+<Plug>(easymotion-bd-tl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-tl2)*
+<Plug>(easymotion-bd-tln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-tln)*
+<Plug>(easymotion-bd-tn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-tn)*
+<Plug>(easymotion-bd-w)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-w)*
+<Plug>(easymotion-bd-wl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bd-wl)*
+<Plug>(easymotion-bl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-bl)*
+<Plug>(easymotion-el)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-el)*
+<Plug>(easymotion-eol-bd-jk)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-eol-bd-jk)*
+<Plug>(easymotion-eol-j)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-eol-j)*
+<Plug>(easymotion-eol-k)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-eol-k)*
+<Plug>(easymotion-f2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-f2)*
+<Plug>(easymotion-fl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-fl)*
+<Plug>(easymotion-fl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-fl2)*
+<Plug>(easymotion-fln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-fln)*
+<Plug>(easymotion-fn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-fn)*
+<Plug>(easymotion-gel)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-gel)*
+<Plug>(easymotion-iskeyword-b)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-b)*
+<Plug>(easymotion-iskeyword-bd-e)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-bd-e)*
+<Plug>(easymotion-iskeyword-bd-w)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-bd-w)*
+<Plug>(easymotion-iskeyword-e)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-e)*
+<Plug>(easymotion-iskeyword-ge)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-ge)*
+<Plug>(easymotion-iskeyword-w)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-iskeyword-w)*
+<Plug>(easymotion-j)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-j)*
+<Plug>(easymotion-jumptoanywhere)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-jumptoanywhere)*
+<Plug>(easymotion-k)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-k)*
+<Plug>(easymotion-lineanywhere)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-lineanywhere)*
+<Plug>(easymotion-linebackward)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-linebackward)*
+<Plug>(easymotion-lineforward)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-lineforward)*
+<Plug>(easymotion-next)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-next)*
+<Plug>(easymotion-prefix)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-prefix)*
+<Plug>(easymotion-prev)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-prev)*
+<Plug>(easymotion-repeat)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-repeat)*
+<Plug>(easymotion-s)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-s)*
+<Plug>(easymotion-s2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-s2)*
+<Plug>(easymotion-sl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sl)*
+<Plug>(easymotion-sl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sl2)*
+<Plug>(easymotion-sln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sln)*
+<Plug>(easymotion-sn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sn)*
+<Plug>(easymotion-sol-bd-jk)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sol-bd-jk)*
+<Plug>(easymotion-sol-j)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sol-j)*
+<Plug>(easymotion-sol-k)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-sol-k)*
+<Plug>(easymotion-t2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-t2)*
+<Plug>(easymotion-tl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-tl)*
+<Plug>(easymotion-tl2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-tl2)*
+<Plug>(easymotion-tln)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-tln)*
+<Plug>(easymotion-tn)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-tn)*
+<Plug>(easymotion-wl)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-wl)*
+<Plug>(easymotion-{find}2)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-{find}2)*
+<Plug>(easymotion-{find}n)	bundle/vim-easymotion/doc/easymotion.txt	/*<Plug>(easymotion-{find}n)*
+CTRL-sub-U	doc/youcompleteme.txt	/*CTRL-sub-U*
+ClearCompilationFlagCache	doc/youcompleteme.txt	/*ClearCompilationFlagCache*
+ConqueTerm	doc/conque_term.txt	/*ConqueTerm*
+ConqueTerm_CWInsert	doc/conque_term.txt	/*ConqueTerm_CWInsert*
+ConqueTerm_CloseOnEnd	doc/conque_term.txt	/*ConqueTerm_CloseOnEnd*
+ConqueTerm_CodePage	doc/conque_term.txt	/*ConqueTerm_CodePage*
+ConqueTerm_Color	doc/conque_term.txt	/*ConqueTerm_Color*
+ConqueTerm_ColorMode	doc/conque_term.txt	/*ConqueTerm_ColorMode*
+ConqueTerm_EscKey	doc/conque_term.txt	/*ConqueTerm_EscKey*
+ConqueTerm_ExecFileKey	doc/conque_term.txt	/*ConqueTerm_ExecFileKey*
+ConqueTerm_FastMode	doc/conque_term.txt	/*ConqueTerm_FastMode*
+ConqueTerm_InsertOnEnter	doc/conque_term.txt	/*ConqueTerm_InsertOnEnter*
+ConqueTerm_PromptRegex	doc/conque_term.txt	/*ConqueTerm_PromptRegex*
+ConqueTerm_PyExe	doc/conque_term.txt	/*ConqueTerm_PyExe*
+ConqueTerm_PyVersion	doc/conque_term.txt	/*ConqueTerm_PyVersion*
+ConqueTerm_ReadUnfocused	doc/conque_term.txt	/*ConqueTerm_ReadUnfocused*
+ConqueTerm_SendFileKey	doc/conque_term.txt	/*ConqueTerm_SendFileKey*
+ConqueTerm_SendFunctionKeys	doc/conque_term.txt	/*ConqueTerm_SendFunctionKeys*
+ConqueTerm_SendVisKey	doc/conque_term.txt	/*ConqueTerm_SendVisKey*
+ConqueTerm_SessionSupport	doc/conque_term.txt	/*ConqueTerm_SessionSupport*
+ConqueTerm_StartMessages	doc/conque_term.txt	/*ConqueTerm_StartMessages*
+ConqueTerm_Syntax	doc/conque_term.txt	/*ConqueTerm_Syntax*
+ConqueTerm_TERM	doc/conque_term.txt	/*ConqueTerm_TERM*
+ConqueTerm_ToggleKey	doc/conque_term.txt	/*ConqueTerm_ToggleKey*
+Ctrl-sub-C	doc/youcompleteme.txt	/*Ctrl-sub-C*
+E227:-mapping-already-exists-for-blah	doc/youcompleteme.txt	/*E227:-mapping-already-exists-for-blah*
+EMCommandLineMap	bundle/vim-easymotion/doc/easymotion.txt	/*EMCommandLineMap*
+EMCommandLineNoreMap	bundle/vim-easymotion/doc/easymotion.txt	/*EMCommandLineNoreMap*
+EMCommandLineUnMap	bundle/vim-easymotion/doc/easymotion.txt	/*EMCommandLineUnMap*
+EasyMotion_do_mapping	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_do_mapping*
+EasyMotion_do_shade	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_do_shade*
+EasyMotion_enter_jump_first	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_enter_jump_first*
+EasyMotion_force_csapprox	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_force_csapprox*
+EasyMotion_grouping	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_grouping*
+EasyMotion_highlight	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_highlight*
+EasyMotion_keys	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_keys*
+EasyMotion_leader_key	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_leader_key*
+EasyMotion_prompt	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_prompt*
+EasyMotion_smartcase	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_smartcase*
+EasyMotion_smartsign	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_smartsign*
+EasyMotion_space_jump_first	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_space_jump_first*
+EasyMotion_use_migemo	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_use_migemo*
+EasyMotion_use_upper	bundle/vim-easymotion/doc/easymotion.txt	/*EasyMotion_use_upper*
+ExtractSnips()	doc/snipMate.txt	/*ExtractSnips()*
+ExtractSnipsFile()	doc/snipMate.txt	/*ExtractSnipsFile()*
+Filename()	doc/snipMate.txt	/*Filename()*
+GLIBC_2.XX-not-found()	doc/youcompleteme.txt	/*GLIBC_2.XX-not-found()*
+GoToDeclaration	doc/youcompleteme.txt	/*GoToDeclaration*
+GoToDefinition	doc/youcompleteme.txt	/*GoToDefinition*
+GoToDefinitionElseDeclaration	doc/youcompleteme.txt	/*GoToDefinitionElseDeclaration*
+LONG_BIT-definition-appears-wrong-for-platform	doc/youcompleteme.txt	/*LONG_BIT-definition-appears-wrong-for-platform*
+MatchError	doc/matchit.txt	/*MatchError*
+NERDComAbout	doc/NERD_commenter.txt	/*NERDComAbout*
+NERDComAlignedComment	doc/NERD_commenter.txt	/*NERDComAlignedComment*
+NERDComAltDelim	doc/NERD_commenter.txt	/*NERDComAltDelim*
+NERDComAppendComment	doc/NERD_commenter.txt	/*NERDComAppendComment*
+NERDComChangelog	doc/NERD_commenter.txt	/*NERDComChangelog*
+NERDComComment	doc/NERD_commenter.txt	/*NERDComComment*
+NERDComCredits	doc/NERD_commenter.txt	/*NERDComCredits*
+NERDComDefaultDelims	doc/NERD_commenter.txt	/*NERDComDefaultDelims*
+NERDComEOLComment	doc/NERD_commenter.txt	/*NERDComEOLComment*
+NERDComFunctionality	doc/NERD_commenter.txt	/*NERDComFunctionality*
+NERDComFunctionalityDetails	doc/NERD_commenter.txt	/*NERDComFunctionalityDetails*
+NERDComFunctionalitySummary	doc/NERD_commenter.txt	/*NERDComFunctionalitySummary*
+NERDComHeuristics	doc/NERD_commenter.txt	/*NERDComHeuristics*
+NERDComInsertComment	doc/NERD_commenter.txt	/*NERDComInsertComment*
+NERDComInstallation	doc/NERD_commenter.txt	/*NERDComInstallation*
+NERDComInvertComment	doc/NERD_commenter.txt	/*NERDComInvertComment*
+NERDComIssues	doc/NERD_commenter.txt	/*NERDComIssues*
+NERDComLicense	doc/NERD_commenter.txt	/*NERDComLicense*
+NERDComMappings	doc/NERD_commenter.txt	/*NERDComMappings*
+NERDComMinimalComment	doc/NERD_commenter.txt	/*NERDComMinimalComment*
+NERDComNERDComment	doc/NERD_commenter.txt	/*NERDComNERDComment*
+NERDComNestedComment	doc/NERD_commenter.txt	/*NERDComNestedComment*
+NERDComNesting	doc/NERD_commenter.txt	/*NERDComNesting*
+NERDComOptions	doc/NERD_commenter.txt	/*NERDComOptions*
+NERDComOptionsDetails	doc/NERD_commenter.txt	/*NERDComOptionsDetails*
+NERDComOptionsSummary	doc/NERD_commenter.txt	/*NERDComOptionsSummary*
+NERDComSexyComment	doc/NERD_commenter.txt	/*NERDComSexyComment*
+NERDComSexyComments	doc/NERD_commenter.txt	/*NERDComSexyComments*
+NERDComToggleComment	doc/NERD_commenter.txt	/*NERDComToggleComment*
+NERDComUncommentLine	doc/NERD_commenter.txt	/*NERDComUncommentLine*
+NERDComYankComment	doc/NERD_commenter.txt	/*NERDComYankComment*
+NERDCommenter	doc/NERD_commenter.txt	/*NERDCommenter*
+NERDCommenterContents	doc/NERD_commenter.txt	/*NERDCommenterContents*
+NERDTree	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree*
+NERDTree-?	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-?*
+NERDTree-A	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-A*
+NERDTree-B	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-B*
+NERDTree-C	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-C*
+NERDTree-C-J	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-C-J*
+NERDTree-C-K	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-C-K*
+NERDTree-CD	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-CD*
+NERDTree-D	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-D*
+NERDTree-F	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-F*
+NERDTree-I	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-I*
+NERDTree-J	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-J*
+NERDTree-K	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-K*
+NERDTree-O	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-O*
+NERDTree-P	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-P*
+NERDTree-R	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-R*
+NERDTree-T	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-T*
+NERDTree-U	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-U*
+NERDTree-X	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-X*
+NERDTree-cd	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-cd*
+NERDTree-contents	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-contents*
+NERDTree-e	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-e*
+NERDTree-f	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-f*
+NERDTree-gi	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-gi*
+NERDTree-go	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-go*
+NERDTree-gs	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-gs*
+NERDTree-i	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-i*
+NERDTree-m	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-m*
+NERDTree-o	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-o*
+NERDTree-p	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-p*
+NERDTree-q	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-q*
+NERDTree-r	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-r*
+NERDTree-s	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-s*
+NERDTree-t	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-t*
+NERDTree-u	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-u*
+NERDTree-x	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTree-x*
+NERDTreeAPI	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAPI*
+NERDTreeAbout	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAbout*
+NERDTreeAddKeyMap()	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAddKeyMap()*
+NERDTreeAddMenuItem()	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAddMenuItem()*
+NERDTreeAddMenuSeparator()	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAddMenuSeparator()*
+NERDTreeAddSubmenu()	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeAddSubmenu()*
+NERDTreeBookmarkCommands	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeBookmarkCommands*
+NERDTreeBookmarkTable	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeBookmarkTable*
+NERDTreeBookmarks	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeBookmarks*
+NERDTreeChangelog	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeChangelog*
+NERDTreeCredits	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeCredits*
+NERDTreeFunctionality	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeFunctionality*
+NERDTreeGlobalCommands	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeGlobalCommands*
+NERDTreeInvalidBookmarks	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeInvalidBookmarks*
+NERDTreeKeymapAPI	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeKeymapAPI*
+NERDTreeLicense	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeLicense*
+NERDTreeMappings	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeMappings*
+NERDTreeMenu	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeMenu*
+NERDTreeMenuAPI	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeMenuAPI*
+NERDTreeOptionDetails	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeOptionDetails*
+NERDTreeOptionSummary	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeOptionSummary*
+NERDTreeOptions	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeOptions*
+NERDTreeRender()	bundle/nerdtree/doc/NERD_tree.txt	/*NERDTreeRender()*
+NERD_commenter.txt	doc/NERD_commenter.txt	/*NERD_commenter.txt*
+NERD_tree.txt	bundle/nerdtree/doc/NERD_tree.txt	/*NERD_tree.txt*
+PyLint	doc/pymode.txt	/*PyLint*
+PyLintAuto	doc/pymode.txt	/*PyLintAuto*
+PyLintToggle	doc/pymode.txt	/*PyLintToggle*
+Pydoc	doc/pymode.txt	/*Pydoc*
+Pyrun	doc/pymode.txt	/*Pyrun*
+Python-mode-contents	doc/pymode.txt	/*Python-mode-contents*
+PythonMode	doc/pymode.txt	/*PythonMode*
+PythonModeCommands	doc/pymode.txt	/*PythonModeCommands*
+PythonModeCredits	doc/pymode.txt	/*PythonModeCredits*
+PythonModeFAQ	doc/pymode.txt	/*PythonModeFAQ*
+PythonModeKeys	doc/pymode.txt	/*PythonModeKeys*
+PythonModeLicense	doc/pymode.txt	/*PythonModeLicense*
+PythonModeModeline	doc/pymode.txt	/*PythonModeModeline*
+PythonModeOptions	doc/pymode.txt	/*PythonModeOptions*
+PythonModeOptionsDetails	doc/pymode.txt	/*PythonModeOptionsDetails*
+ReloadAllSnippets()	doc/snipMate.txt	/*ReloadAllSnippets()*
+ReloadSnippets()	doc/snipMate.txt	/*ReloadSnippets()*
+ResetAllSnippets()	doc/snipMate.txt	/*ResetAllSnippets()*
+ResetSnippets()	doc/snipMate.txt	/*ResetSnippets()*
+RestartServer	doc/youcompleteme.txt	/*RestartServer*
+RopeCodeAssist	doc/ropevim.txt	/*RopeCodeAssist*
+RopeDialogBatchsetCommand	doc/ropevim.txt	/*RopeDialogBatchsetCommand*
+RopeEnablingAutoimport	doc/ropevim.txt	/*RopeEnablingAutoimport*
+RopeFilteringResources	doc/ropevim.txt	/*RopeFilteringResources*
+RopeFindOccurrences	doc/ropevim.txt	/*RopeFindOccurrences*
+RopeFindingFiles	doc/ropevim.txt	/*RopeFindingFiles*
+RopeKeys	doc/ropevim.txt	/*RopeKeys*
+RopeRefactoringDialog	doc/ropevim.txt	/*RopeRefactoringDialog*
+RopeShortcuts	doc/ropevim.txt	/*RopeShortcuts*
+RopeVariables	doc/ropevim.txt	/*RopeVariables*
+Ropevim	doc/ropevim.txt	/*Ropevim*
+StartServer	doc/youcompleteme.txt	/*StartServer*
+StopServer	doc/youcompleteme.txt	/*StopServer*
+Tlist_Get_Filenames()	doc/taglist.txt	/*Tlist_Get_Filenames()*
+Tlist_Get_Tag_Prototype_By_Line()	doc/taglist.txt	/*Tlist_Get_Tag_Prototype_By_Line()*
+Tlist_Get_Tagname_By_Line()	doc/taglist.txt	/*Tlist_Get_Tagname_By_Line()*
+Tlist_Set_App()	doc/taglist.txt	/*Tlist_Set_App()*
+Tlist_Update_File_Tags()	doc/taglist.txt	/*Tlist_Update_File_Tags()*
+Vim:-Caught-deadly-signal-SEGV	doc/youcompleteme.txt	/*Vim:-Caught-deadly-signal-SEGV*
+[%	doc/matchit.txt	/*[%*
+]%	doc/matchit.txt	/*]%*
+b:match_col	doc/matchit.txt	/*b:match_col*
+b:match_debug	doc/matchit.txt	/*b:match_debug*
+b:match_ignorecase	doc/matchit.txt	/*b:match_ignorecase*
+b:match_ini	doc/matchit.txt	/*b:match_ini*
+b:match_iniBR	doc/matchit.txt	/*b:match_iniBR*
+b:match_match	doc/matchit.txt	/*b:match_match*
+b:match_pat	doc/matchit.txt	/*b:match_pat*
+b:match_skip	doc/matchit.txt	/*b:match_skip*
+b:match_table	doc/matchit.txt	/*b:match_table*
+b:match_tail	doc/matchit.txt	/*b:match_tail*
+b:match_wholeBR	doc/matchit.txt	/*b:match_wholeBR*
+b:match_word	doc/matchit.txt	/*b:match_word*
+b:match_words	doc/matchit.txt	/*b:match_words*
+bufexplorer	doc/bufexplorer.txt	/*bufexplorer*
+bufexplorer-changelog	doc/bufexplorer.txt	/*bufexplorer-changelog*
+bufexplorer-credits	doc/bufexplorer.txt	/*bufexplorer-credits*
+bufexplorer-customization	doc/bufexplorer.txt	/*bufexplorer-customization*
+bufexplorer-installation	doc/bufexplorer.txt	/*bufexplorer-installation*
+bufexplorer-todo	doc/bufexplorer.txt	/*bufexplorer-todo*
+bufexplorer-usage	doc/bufexplorer.txt	/*bufexplorer-usage*
+bufexplorer-windowlayout	doc/bufexplorer.txt	/*bufexplorer-windowlayout*
+bufexplorer.txt	doc/bufexplorer.txt	/*bufexplorer.txt*
+buffer-explorer	doc/bufexplorer.txt	/*buffer-explorer*
+conque-config-general	doc/conque_term.txt	/*conque-config-general*
+conque-config-keyboard	doc/conque_term.txt	/*conque-config-keyboard*
+conque-config-unix	doc/conque_term.txt	/*conque-config-unix*
+conque-config-windows	doc/conque_term.txt	/*conque-config-windows*
+conque-term-api	doc/conque_term.txt	/*conque-term-api*
+conque-term-bugs	doc/conque_term.txt	/*conque-term-bugs*
+conque-term-close	doc/conque_term.txt	/*conque-term-close*
+conque-term-contribute	doc/conque_term.txt	/*conque-term-contribute*
+conque-term-esc	doc/conque_term.txt	/*conque-term-esc*
+conque-term-events	doc/conque_term.txt	/*conque-term-events*
+conque-term-feedback	doc/conque_term.txt	/*conque-term-feedback*
+conque-term-gen-usage	doc/conque_term.txt	/*conque-term-gen-usage*
+conque-term-get-instance	doc/conque_term.txt	/*conque-term-get-instance*
+conque-term-input-mode	doc/conque_term.txt	/*conque-term-input-mode*
+conque-term-installation	doc/conque_term.txt	/*conque-term-installation*
+conque-term-misc	doc/conque_term.txt	/*conque-term-misc*
+conque-term-open	doc/conque_term.txt	/*conque-term-open*
+conque-term-options	doc/conque_term.txt	/*conque-term-options*
+conque-term-read	doc/conque_term.txt	/*conque-term-read*
+conque-term-register	doc/conque_term.txt	/*conque-term-register*
+conque-term-requirements	doc/conque_term.txt	/*conque-term-requirements*
+conque-term-send	doc/conque_term.txt	/*conque-term-send*
+conque-term-set-callback	doc/conque_term.txt	/*conque-term-set-callback*
+conque-term-setup	doc/conque_term.txt	/*conque-term-setup*
+conque-term-special-keys	doc/conque_term.txt	/*conque-term-special-keys*
+conque-term-subprocess	doc/conque_term.txt	/*conque-term-subprocess*
+conque-term-usage	doc/conque_term.txt	/*conque-term-usage*
+conque-term-windows	doc/conque_term.txt	/*conque-term-windows*
+conque-term-write	doc/conque_term.txt	/*conque-term-write*
+conque-term-writeln	doc/conque_term.txt	/*conque-term-writeln*
+cs	doc/surround.txt	/*cs*
+ds	doc/surround.txt	/*ds*
+easymotion	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion*
+easymotion-command-line	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-command-line*
+easymotion-configuration	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-configuration*
+easymotion-contents	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-contents*
+easymotion-contributing	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-contributing*
+easymotion-credits	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-credits*
+easymotion-custom-hl	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-custom-hl*
+easymotion-custom-keys	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-custom-keys*
+easymotion-custom-mappings	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-custom-mappings*
+easymotion-default-mappings	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-default-mappings*
+easymotion-dotrepeat	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-dotrepeat*
+easymotion-introduction	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-introduction*
+easymotion-jk-motion	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-jk-motion*
+easymotion-known-bugs	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-known-bugs*
+easymotion-leader-key	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-leader-key*
+easymotion-license	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-license*
+easymotion-more-mappings	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-more-mappings*
+easymotion-multi-input	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-multi-input*
+easymotion-plug-table	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-plug-table*
+easymotion-requirements	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-requirements*
+easymotion-special-mappings	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-special-mappings*
+easymotion-textobjct	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-textobjct*
+easymotion-two-key	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-two-key*
+easymotion-usage	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-usage*
+easymotion-within-line	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-within-line*
+easymotion-{find}n	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion-{find}n*
+easymotion.txt	bundle/vim-easymotion/doc/easymotion.txt	/*easymotion.txt*
+g%	doc/matchit.txt	/*g%*
+g:EasyMotion_add_search_history	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_add_search_history*
+g:EasyMotion_disable_two_key_combo	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_disable_two_key_combo*
+g:EasyMotion_do_mapping	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_do_mapping*
+g:EasyMotion_do_shade	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_do_shade*
+g:EasyMotion_enter_jump_first	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_enter_jump_first*
+g:EasyMotion_force_csapprox	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_force_csapprox*
+g:EasyMotion_grouping	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_grouping*
+g:EasyMotion_inc_highlight	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_inc_highlight*
+g:EasyMotion_keys	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_keys*
+g:EasyMotion_landing_highlight	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_landing_highlight*
+g:EasyMotion_move_highlight	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_move_highlight*
+g:EasyMotion_off_screen_search	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_off_screen_search*
+g:EasyMotion_prompt	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_prompt*
+g:EasyMotion_re_anywhere	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_re_anywhere*
+g:EasyMotion_re_line_anywhere	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_re_line_anywhere*
+g:EasyMotion_smartcase	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_smartcase*
+g:EasyMotion_space_jump_first	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_space_jump_first*
+g:EasyMotion_startofline	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_startofline*
+g:EasyMotion_use_migemo	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_use_migemo*
+g:EasyMotion_use_smartsign_ja	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_use_smartsign_ja*
+g:EasyMotion_use_smartsign_us	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_use_smartsign_us*
+g:EasyMotion_use_upper	bundle/vim-easymotion/doc/easymotion.txt	/*g:EasyMotion_use_upper*
+g:bufExplorerChgWin	doc/bufexplorer.txt	/*g:bufExplorerChgWin*
+g:bufExplorerDefaultHelp	doc/bufexplorer.txt	/*g:bufExplorerDefaultHelp*
+g:bufExplorerDetailedHelp	doc/bufexplorer.txt	/*g:bufExplorerDetailedHelp*
+g:bufExplorerFindActive	doc/bufexplorer.txt	/*g:bufExplorerFindActive*
+g:bufExplorerFuncRef	doc/bufexplorer.txt	/*g:bufExplorerFuncRef*
+g:bufExplorerReverseSort	doc/bufexplorer.txt	/*g:bufExplorerReverseSort*
+g:bufExplorerShowDirectories	doc/bufexplorer.txt	/*g:bufExplorerShowDirectories*
+g:bufExplorerShowNoName	doc/bufexplorer.txt	/*g:bufExplorerShowNoName*
+g:bufExplorerShowRelativePath	doc/bufexplorer.txt	/*g:bufExplorerShowRelativePath*
+g:bufExplorerShowTabBuffer	doc/bufexplorer.txt	/*g:bufExplorerShowTabBuffer*
+g:bufExplorerShowUnlisted	doc/bufexplorer.txt	/*g:bufExplorerShowUnlisted*
+g:bufExplorerSortBy	doc/bufexplorer.txt	/*g:bufExplorerSortBy*
+g:bufExplorerSplitBelow	doc/bufexplorer.txt	/*g:bufExplorerSplitBelow*
+g:bufExplorerSplitHorzSize	doc/bufexplorer.txt	/*g:bufExplorerSplitHorzSize*
+g:bufExplorerSplitOutPathName	doc/bufexplorer.txt	/*g:bufExplorerSplitOutPathName*
+g:bufExplorerSplitRight	doc/bufexplorer.txt	/*g:bufExplorerSplitRight*
+g:bufExplorerSplitVertSize	doc/bufexplorer.txt	/*g:bufExplorerSplitVertSize*
+g:snippets_dir	doc/snipMate.txt	/*g:snippets_dir*
+g:snips_author	doc/snipMate.txt	/*g:snips_author*
+g:ycm_add_preview_to_completeopt	doc/youcompleteme.txt	/*g:ycm_add_preview_to_completeopt*
+g:ycm_allow_changing_updatetime	doc/youcompleteme.txt	/*g:ycm_allow_changing_updatetime*
+g:ycm_always_populate_location_list	doc/youcompleteme.txt	/*g:ycm_always_populate_location_list*
+g:ycm_auto_start_csharp_server	doc/youcompleteme.txt	/*g:ycm_auto_start_csharp_server*
+g:ycm_auto_stop_csharp_server	doc/youcompleteme.txt	/*g:ycm_auto_stop_csharp_server*
+g:ycm_auto_trigger	doc/youcompleteme.txt	/*g:ycm_auto_trigger*
+g:ycm_autoclose_preview_window_after_completion	doc/youcompleteme.txt	/*g:ycm_autoclose_preview_window_after_completion*
+g:ycm_autoclose_preview_window_after_insertion	doc/youcompleteme.txt	/*g:ycm_autoclose_preview_window_after_insertion*
+g:ycm_cache_omnifunc	doc/youcompleteme.txt	/*g:ycm_cache_omnifunc*
+g:ycm_collect_identifiers_from_comments_and_strings	doc/youcompleteme.txt	/*g:ycm_collect_identifiers_from_comments_and_strings*
+g:ycm_collect_identifiers_from_tags_files	doc/youcompleteme.txt	/*g:ycm_collect_identifiers_from_tags_files*
+g:ycm_complete_in_comments	doc/youcompleteme.txt	/*g:ycm_complete_in_comments*
+g:ycm_complete_in_strings	doc/youcompleteme.txt	/*g:ycm_complete_in_strings*
+g:ycm_confirm_extra_conf	doc/youcompleteme.txt	/*g:ycm_confirm_extra_conf*
+g:ycm_csharp_server_port	doc/youcompleteme.txt	/*g:ycm_csharp_server_port*
+g:ycm_echo_current_diagnostic	doc/youcompleteme.txt	/*g:ycm_echo_current_diagnostic*
+g:ycm_enable_diagnostic_highlighting	doc/youcompleteme.txt	/*g:ycm_enable_diagnostic_highlighting*
+g:ycm_enable_diagnostic_signs	doc/youcompleteme.txt	/*g:ycm_enable_diagnostic_signs*
+g:ycm_error_symbol	doc/youcompleteme.txt	/*g:ycm_error_symbol*
+g:ycm_extra_conf_globlist	doc/youcompleteme.txt	/*g:ycm_extra_conf_globlist*
+g:ycm_extra_conf_vim_data	doc/youcompleteme.txt	/*g:ycm_extra_conf_vim_data*
+g:ycm_filepath_completion_use_working_dir	doc/youcompleteme.txt	/*g:ycm_filepath_completion_use_working_dir*
+g:ycm_filetype_blacklist	doc/youcompleteme.txt	/*g:ycm_filetype_blacklist*
+g:ycm_filetype_specific_completion_to_disable	doc/youcompleteme.txt	/*g:ycm_filetype_specific_completion_to_disable*
+g:ycm_filetype_whitelist	doc/youcompleteme.txt	/*g:ycm_filetype_whitelist*
+g:ycm_global_ycm_extra_conf	doc/youcompleteme.txt	/*g:ycm_global_ycm_extra_conf*
+g:ycm_key_detailed_diagnostics	doc/youcompleteme.txt	/*g:ycm_key_detailed_diagnostics*
+g:ycm_key_invoke_completion	doc/youcompleteme.txt	/*g:ycm_key_invoke_completion*
+g:ycm_key_list_previous_completion	doc/youcompleteme.txt	/*g:ycm_key_list_previous_completion*
+g:ycm_key_list_select_completion	doc/youcompleteme.txt	/*g:ycm_key_list_select_completion*
+g:ycm_max_diagnostics_to_display	doc/youcompleteme.txt	/*g:ycm_max_diagnostics_to_display*
+g:ycm_min_num_identifier_candidate_chars	doc/youcompleteme.txt	/*g:ycm_min_num_identifier_candidate_chars*
+g:ycm_min_num_of_chars_for_completion	doc/youcompleteme.txt	/*g:ycm_min_num_of_chars_for_completion*
+g:ycm_open_loclist_on_ycm_diags	doc/youcompleteme.txt	/*g:ycm_open_loclist_on_ycm_diags*
+g:ycm_path_to_python_interpreter	doc/youcompleteme.txt	/*g:ycm_path_to_python_interpreter*
+g:ycm_seed_identifiers_with_syntax	doc/youcompleteme.txt	/*g:ycm_seed_identifiers_with_syntax*
+g:ycm_semantic_triggers	doc/youcompleteme.txt	/*g:ycm_semantic_triggers*
+g:ycm_server_keep_logfiles	doc/youcompleteme.txt	/*g:ycm_server_keep_logfiles*
+g:ycm_server_log_level	doc/youcompleteme.txt	/*g:ycm_server_log_level*
+g:ycm_server_use_vim_stdout	doc/youcompleteme.txt	/*g:ycm_server_use_vim_stdout*
+g:ycm_show_diagnostics_ui	doc/youcompleteme.txt	/*g:ycm_show_diagnostics_ui*
+g:ycm_use_ultisnips_completer	doc/youcompleteme.txt	/*g:ycm_use_ultisnips_completer*
+g:ycm_warning_symbol	doc/youcompleteme.txt	/*g:ycm_warning_symbol*
+i_CTRL-G_S	doc/surround.txt	/*i_CTRL-G_S*
+i_CTRL-G_s	doc/surround.txt	/*i_CTRL-G_s*
+i_CTRL-R_<Tab>	doc/snipMate.txt	/*i_CTRL-R_<Tab>*
+import-vim	doc/youcompleteme.txt	/*import-vim*
+libpython	doc/youcompleteme.txt	/*libpython*
+libpython2.7.a-...-relocation-R_X86_64_32	doc/youcompleteme.txt	/*libpython2.7.a-...-relocation-R_X86_64_32*
+list-snippets	doc/snipMate.txt	/*list-snippets*
+matchit	doc/matchit.txt	/*matchit*
+matchit-%	doc/matchit.txt	/*matchit-%*
+matchit-\1	doc/matchit.txt	/*matchit-\\1*
+matchit-activate	doc/matchit.txt	/*matchit-activate*
+matchit-backref	doc/matchit.txt	/*matchit-backref*
+matchit-bugs	doc/matchit.txt	/*matchit-bugs*
+matchit-choose	doc/matchit.txt	/*matchit-choose*
+matchit-configure	doc/matchit.txt	/*matchit-configure*
+matchit-debug	doc/matchit.txt	/*matchit-debug*
+matchit-details	doc/matchit.txt	/*matchit-details*
+matchit-highlight	doc/matchit.txt	/*matchit-highlight*
+matchit-hl	doc/matchit.txt	/*matchit-hl*
+matchit-intro	doc/matchit.txt	/*matchit-intro*
+matchit-languages	doc/matchit.txt	/*matchit-languages*
+matchit-modes	doc/matchit.txt	/*matchit-modes*
+matchit-newlang	doc/matchit.txt	/*matchit-newlang*
+matchit-o_%	doc/matchit.txt	/*matchit-o_%*
+matchit-parse	doc/matchit.txt	/*matchit-parse*
+matchit-s:notend	doc/matchit.txt	/*matchit-s:notend*
+matchit-s:sol	doc/matchit.txt	/*matchit-s:sol*
+matchit-spaces	doc/matchit.txt	/*matchit-spaces*
+matchit-troubleshoot	doc/matchit.txt	/*matchit-troubleshoot*
+matchit-v_%	doc/matchit.txt	/*matchit-v_%*
+matchit.txt	doc/matchit.txt	/*matchit.txt*
+matchit.vim	doc/matchit.txt	/*matchit.vim*
+multi_snip	doc/snipMate.txt	/*multi_snip*
+o_[%	doc/matchit.txt	/*o_[%*
+o_]%	doc/matchit.txt	/*o_]%*
+o_g%	doc/matchit.txt	/*o_g%*
+pymode.txt	doc/pymode.txt	/*pymode.txt*
+python-mode.txt	doc/pymode.txt	/*python-mode.txt*
+ropevim.txt	doc/ropevim.txt	/*ropevim.txt*
+snipMate	doc/snipMate.txt	/*snipMate*
+snipMate-$#	doc/snipMate.txt	/*snipMate-$#*
+snipMate-${#:}	doc/snipMate.txt	/*snipMate-${#:}*
+snipMate-${#}	doc/snipMate.txt	/*snipMate-${#}*
+snipMate-author	doc/snipMate.txt	/*snipMate-author*
+snipMate-commands	doc/snipMate.txt	/*snipMate-commands*
+snipMate-contact	doc/snipMate.txt	/*snipMate-contact*
+snipMate-description	doc/snipMate.txt	/*snipMate-description*
+snipMate-disadvantages	doc/snipMate.txt	/*snipMate-disadvantages*
+snipMate-expandtab	doc/snipMate.txt	/*snipMate-expandtab*
+snipMate-features	doc/snipMate.txt	/*snipMate-features*
+snipMate-filename	doc/snipMate.txt	/*snipMate-filename*
+snipMate-indenting	doc/snipMate.txt	/*snipMate-indenting*
+snipMate-license	doc/snipMate.txt	/*snipMate-license*
+snipMate-placeholders	doc/snipMate.txt	/*snipMate-placeholders*
+snipMate-remap	doc/snipMate.txt	/*snipMate-remap*
+snipMate-settings	doc/snipMate.txt	/*snipMate-settings*
+snipMate-usage	doc/snipMate.txt	/*snipMate-usage*
+snipMate.txt	doc/snipMate.txt	/*snipMate.txt*
+snippet	doc/snipMate.txt	/*snippet*
+snippet-syntax	doc/snipMate.txt	/*snippet-syntax*
+snippets	doc/snipMate.txt	/*snippets*
+surround	doc/surround.txt	/*surround*
+surround-customizing	doc/surround.txt	/*surround-customizing*
+surround-issues	doc/surround.txt	/*surround-issues*
+surround-mappings	doc/surround.txt	/*surround-mappings*
+surround-replacements	doc/surround.txt	/*surround-replacements*
+surround-targets	doc/surround.txt	/*surround-targets*
+surround.txt	doc/surround.txt	/*surround.txt*
+t,	bundle/vim-easymotion/doc/easymotion.txt	/*t,*
+taglist-commands	doc/taglist.txt	/*taglist-commands*
+taglist-debug	doc/taglist.txt	/*taglist-debug*
+taglist-extend	doc/taglist.txt	/*taglist-extend*
+taglist-faq	doc/taglist.txt	/*taglist-faq*
+taglist-functions	doc/taglist.txt	/*taglist-functions*
+taglist-install	doc/taglist.txt	/*taglist-install*
+taglist-internet	doc/taglist.txt	/*taglist-internet*
+taglist-intro	doc/taglist.txt	/*taglist-intro*
+taglist-keys	doc/taglist.txt	/*taglist-keys*
+taglist-license	doc/taglist.txt	/*taglist-license*
+taglist-menu	doc/taglist.txt	/*taglist-menu*
+taglist-options	doc/taglist.txt	/*taglist-options*
+taglist-requirements	doc/taglist.txt	/*taglist-requirements*
+taglist-session	doc/taglist.txt	/*taglist-session*
+taglist-todo	doc/taglist.txt	/*taglist-todo*
+taglist-using	doc/taglist.txt	/*taglist-using*
+taglist.txt	doc/taglist.txt	/*taglist.txt*
+vS	doc/surround.txt	/*vS*
+v_[%	doc/matchit.txt	/*v_[%*
+v_]%	doc/matchit.txt	/*v_]%*
+v_a%	doc/matchit.txt	/*v_a%*
+v_g%	doc/matchit.txt	/*v_g%*
+vgS	doc/surround.txt	/*vgS*
+vim-sub-autoclose	doc/youcompleteme.txt	/*vim-sub-autoclose*
+yS	doc/surround.txt	/*yS*
+ySS	doc/surround.txt	/*ySS*
+youcompleteme-c-family-semantic-completion-engine-usage	doc/youcompleteme.txt	/*youcompleteme-c-family-semantic-completion-engine-usage*
+youcompleteme-c-semantic-completion	doc/youcompleteme.txt	/*youcompleteme-c-semantic-completion*
+youcompleteme-client-server-architecture	doc/youcompleteme.txt	/*youcompleteme-client-server-architecture*
+youcompleteme-commands	doc/youcompleteme.txt	/*youcompleteme-commands*
+youcompleteme-completion-doesnt-work-with-c-standard-library-headers	doc/youcompleteme.txt	/*youcompleteme-completion-doesnt-work-with-c-standard-library-headers*
+youcompleteme-completion-string-ranking	doc/youcompleteme.txt	/*youcompleteme-completion-string-ranking*
+youcompleteme-contact	doc/youcompleteme.txt	/*youcompleteme-contact*
+youcompleteme-diagnostic-display	doc/youcompleteme.txt	/*youcompleteme-diagnostic-display*
+youcompleteme-diagnostic-highlighting-groups	doc/youcompleteme.txt	/*youcompleteme-diagnostic-highlighting-groups*
+youcompleteme-faq	doc/youcompleteme.txt	/*youcompleteme-faq*
+youcompleteme-full-installation-guide	doc/youcompleteme.txt	/*youcompleteme-full-installation-guide*
+youcompleteme-general-semantic-completion-engine-usage	doc/youcompleteme.txt	/*youcompleteme-general-semantic-completion-engine-usage*
+youcompleteme-general-usage	doc/youcompleteme.txt	/*youcompleteme-general-usage*
+youcompleteme-i-get-an-internal-compiler-error-when-installing	doc/youcompleteme.txt	/*youcompleteme-i-get-an-internal-compiler-error-when-installing*
+youcompleteme-i-get-annoying-messages-in-vims-status-area-when-i-type	doc/youcompleteme.txt	/*youcompleteme-i-get-annoying-messages-in-vims-status-area-when-i-type*
+youcompleteme-i-get-weird-window-at-top-of-my-file-when-i-use-semantic-engine	doc/youcompleteme.txt	/*youcompleteme-i-get-weird-window-at-top-of-my-file-when-i-use-semantic-engine*
+youcompleteme-i-have-homebrew-python-and-or-macvim-cant-compile-sigabrt-when-starting	doc/youcompleteme.txt	/*youcompleteme-i-have-homebrew-python-and-or-macvim-cant-compile-sigabrt-when-starting*
+youcompleteme-im-trying-to-use-homebrew-vim-with-ycm-im-getting-segfaults	doc/youcompleteme.txt	/*youcompleteme-im-trying-to-use-homebrew-vim-with-ycm-im-getting-segfaults*
+youcompleteme-introduction	doc/youcompleteme.txt	/*youcompleteme-introduction*
+youcompleteme-is-there-sort-of-ycm-mailing-list-i-have-questions	doc/youcompleteme.txt	/*youcompleteme-is-there-sort-of-ycm-mailing-list-i-have-questions*
+youcompleteme-it-appears-that-ycm-is-not-working	doc/youcompleteme.txt	/*youcompleteme-it-appears-that-ycm-is-not-working*
+youcompleteme-license	doc/youcompleteme.txt	/*youcompleteme-license*
+youcompleteme-mac-os-x-super-quick-installation	doc/youcompleteme.txt	/*youcompleteme-mac-os-x-super-quick-installation*
+youcompleteme-on-very-rare-occasions-vim-crashes-when-i-tab-through-completion-menu	doc/youcompleteme.txt	/*youcompleteme-on-very-rare-occasions-vim-crashes-when-i-tab-through-completion-menu*
+youcompleteme-options	doc/youcompleteme.txt	/*youcompleteme-options*
+youcompleteme-project-management	doc/youcompleteme.txt	/*youcompleteme-project-management*
+youcompleteme-python-semantic-completion	doc/youcompleteme.txt	/*youcompleteme-python-semantic-completion*
+youcompleteme-references	doc/youcompleteme.txt	/*youcompleteme-references*
+youcompleteme-semantic-completion-for-other-languages	doc/youcompleteme.txt	/*youcompleteme-semantic-completion-for-other-languages*
+youcompleteme-sometimes-it-takes-much-longer-to-get-semantic-completions-than-normal	doc/youcompleteme.txt	/*youcompleteme-sometimes-it-takes-much-longer-to-get-semantic-completions-than-normal*
+youcompleteme-ubuntu-linux-x64-super-quick-installation	doc/youcompleteme.txt	/*youcompleteme-ubuntu-linux-x64-super-quick-installation*
+youcompleteme-user-guide	doc/youcompleteme.txt	/*youcompleteme-user-guide*
+youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files	doc/youcompleteme.txt	/*youcompleteme-vim-segfaults-when-i-use-semantic-completer-in-ruby-files*
+youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display	doc/youcompleteme.txt	/*youcompleteme-why-did-ycm-stop-using-syntastic-for-diagnostics-display*
+youcompleteme-why-does-ycm-demand-such-recent-version-of-vim	doc/youcompleteme.txt	/*youcompleteme-why-does-ycm-demand-such-recent-version-of-vim*
+youcompleteme-why-isnt-ycm-just-written-in-plain-vimscript-ffs	doc/youcompleteme.txt	/*youcompleteme-why-isnt-ycm-just-written-in-plain-vimscript-ffs*
+youcompleteme-windows-installation	doc/youcompleteme.txt	/*youcompleteme-windows-installation*
+youcompleteme-writing-new-semantic-completers	doc/youcompleteme.txt	/*youcompleteme-writing-new-semantic-completers*
+youcompleteme-ycm-auto-inserts-completion-strings-i-dont-want	doc/youcompleteme.txt	/*youcompleteme-ycm-auto-inserts-completion-strings-i-dont-want*
+youcompleteme-ycm-conflicts-with-ultisnips-tab-key-usage	doc/youcompleteme.txt	/*youcompleteme-ycm-conflicts-with-ultisnips-tab-key-usage*
+youcompleteme-ycm-does-not-read-identifiers-from-my-tags-files	doc/youcompleteme.txt	/*youcompleteme-ycm-does-not-read-identifiers-from-my-tags-files*
+youcompleteme-ycmcompleter-subcommands	doc/youcompleteme.txt	/*youcompleteme-ycmcompleter-subcommands*
+youcompleteme.txt	doc/youcompleteme.txt	/*youcompleteme.txt*
+ys	doc/surround.txt	/*ys*
+yss	doc/surround.txt	/*yss*