Initial commit
This commit is contained in:
commit
3277b7a8c7
146 changed files with 1749 additions and 0 deletions
18
mmk2410
Normal file
18
mmk2410
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
__
|
||||||
|
| | _______ __ __ __ ________
|
||||||
|
| | |____ | | | | | | | | __ |
|
||||||
|
| | ___ | | | | | | | | | | | |
|
||||||
|
______________ ______________ | |/ / ____| | | |___| | | | | | | |
|
||||||
|
| __ __ | | __ __ | | / | ____| |______ | | | | | | |
|
||||||
|
| | | | | | | | | | | | | \ | | | | | | | | | |
|
||||||
|
| | | | | | | | | | | | | |\ \ | |____ | | | | | |__| |
|
||||||
|
|__| |__| |__| |__| |__| |__| |__| \__\ |_______| |__| |__| |________|
|
||||||
|
|
||||||
|
Marcel Kapfer (mmk2410)
|
||||||
|
|
||||||
|
Software and web developer and designer
|
||||||
|
|
||||||
|
marcel-kapfer.de
|
||||||
|
@mmk2410
|
||||||
|
/mmk2410
|
||||||
|
+MarcelMichaelKapfer
|
3
vim/.netrwhist
Normal file
3
vim/.netrwhist
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
let g:netrw_dirhistmax =10
|
||||||
|
let g:netrw_dirhist_cnt =1
|
||||||
|
let g:netrw_dirhist_1='/home/mmk/web/blogger-preprocessor/assets'
|
347
vim/autoload/pathogen.vim
Normal file
347
vim/autoload/pathogen.vim
Normal file
|
@ -0,0 +1,347 @@
|
||||||
|
" 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 = map(
|
||||||
|
\ get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) +
|
||||||
|
\ pathogen#split($VIMBLACKLIST),
|
||||||
|
\ 'substitute(v:val, "[\\/]$", "", "")')
|
||||||
|
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:s?[\\/]\=$??')
|
||||||
|
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
vim/bundle/YouCompleteMe
Submodule
1
vim/bundle/YouCompleteMe
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit f20c69321d5152662f86f8903af258e22a64823d
|
1
vim/bundle/gitignore
Submodule
1
vim/bundle/gitignore
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 061c5c756713f42b92b6b69b0a081075319a60d0
|
1
vim/bundle/nerdtree
Submodule
1
vim/bundle/nerdtree
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0b44415a3302030b56755cc1135ca9ca57dc1ada
|
1
vim/bundle/nerdtree-git-plugin
Submodule
1
vim/bundle/nerdtree-git-plugin
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 23d5199f0eaee036186f3df8a87ec356905c6a32
|
1
vim/bundle/php.vim
Submodule
1
vim/bundle/php.vim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 502c96d61919dd784f0f7214ca69c31286fa11eb
|
1
vim/bundle/rust.vim
Submodule
1
vim/bundle/rust.vim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 566fa060a852a92758bdf1a0a1752ed74e16cbd1
|
1
vim/bundle/snipmate.vim
Submodule
1
vim/bundle/snipmate.vim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b
|
1
vim/bundle/syntastic
Submodule
1
vim/bundle/syntastic
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 630169bfc21bf5a114616238810e4b31b19eb983
|
1
vim/bundle/tagbar
Submodule
1
vim/bundle/tagbar
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 7b36c46d17d57db34fdb0adac9ba6382d0bb5e66
|
1
vim/bundle/taglist.vim
Submodule
1
vim/bundle/taglist.vim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 53041fbc45398a9af631a20657e109707a455339
|
1
vim/bundle/vim-airline
Submodule
1
vim/bundle/vim-airline
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 14d14cf951c08fc88ca6c3e6f28fe47b99421e23
|
1
vim/bundle/vim-autoclose
Submodule
1
vim/bundle/vim-autoclose
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit a9a3b7384657bc1f60a963fd6c08c63fc48d61c3
|
1
vim/bundle/vim-coffee-script
Submodule
1
vim/bundle/vim-coffee-script
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 32fe889b8cafd3a4921ef8e6485156453ff58c42
|
1
vim/bundle/vim-colors-solarized
Submodule
1
vim/bundle/vim-colors-solarized
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21
|
1
vim/bundle/vim-fugitive
Submodule
1
vim/bundle/vim-fugitive
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit dba8a0705d95cda76d599bb7d09964d67741a5c5
|
1
vim/bundle/vim-gitgutter
Submodule
1
vim/bundle/vim-gitgutter
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b18e23cdfa082dee7da8a2466db5a66907491e5b
|
1
vim/bundle/vim-hack
Submodule
1
vim/bundle/vim-hack
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 580441e583502c42d28a2001aa3206250913879e
|
101
vim/colors/mmk2410.vim
Normal file
101
vim/colors/mmk2410.vim
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
" Vim color file - mmk2410
|
||||||
|
" Generated by http://bytefluent.com/vivify 2015-09-18
|
||||||
|
set background=dark
|
||||||
|
if version > 580
|
||||||
|
hi clear
|
||||||
|
if exists("syntax_on")
|
||||||
|
syntax reset
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
set t_Co=256
|
||||||
|
let g:colors_name = "mmk2410"
|
||||||
|
|
||||||
|
"hi CTagsMember -- no settings --
|
||||||
|
"hi CTagsGlobalConstant -- no settings --
|
||||||
|
"hi Ignore -- no settings --
|
||||||
|
hi Normal guifg=#f2f2f2 guibg=#0a0f0f guisp=#0a0f0f gui=NONE ctermfg=255 ctermbg=233 cterm=NONE
|
||||||
|
"hi CTagsImport -- no settings --
|
||||||
|
"hi CTagsGlobalVariable -- no settings --
|
||||||
|
"hi EnumerationValue -- no settings --
|
||||||
|
"hi Union -- no settings --
|
||||||
|
"hi Question -- no settings --
|
||||||
|
"hi EnumerationName -- no settings --
|
||||||
|
"hi DefinedName -- no settings --
|
||||||
|
"hi LocalVariable -- no settings --
|
||||||
|
"hi CTagsClass -- no settings --
|
||||||
|
"hi clear -- no settings --
|
||||||
|
hi IncSearch guifg=#192224 guibg=#00c700 guisp=#00c700 gui=NONE ctermfg=235 ctermbg=40 cterm=NONE
|
||||||
|
hi WildMenu guifg=NONE guibg=#A1A6A8 guisp=#A1A6A8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE
|
||||||
|
hi SignColumn guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE
|
||||||
|
hi SpecialComment guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Typedef guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
||||||
|
hi Title guifg=#f5f5ff guibg=#292929 guisp=#292929 gui=bold,italic ctermfg=189 ctermbg=235 cterm=bold
|
||||||
|
hi Folded guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE
|
||||||
|
hi PreCondit guifg=#f20372 guibg=NONE guisp=NONE gui=NONE ctermfg=198 ctermbg=NONE cterm=NONE
|
||||||
|
hi Include guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Float guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
||||||
|
hi StatusLineNC guifg=#cccccc guibg=#127894 guisp=#127894 gui=bold ctermfg=252 ctermbg=24 cterm=bold
|
||||||
|
hi NonText guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE
|
||||||
|
hi DiffText guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE
|
||||||
|
hi ErrorMsg guifg=#ffffff guibg=#e81919 guisp=#e81919 gui=NONE ctermfg=15 ctermbg=160 cterm=NONE
|
||||||
|
hi Debug guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi PMenuSbar guifg=NONE guibg=#193138 guisp=#193138 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
|
||||||
|
hi Identifier guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE
|
||||||
|
hi SpecialChar guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Conditional guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold
|
||||||
|
hi StorageClass guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
||||||
|
hi Todo guifg=#ffffff guibg=#bd0000 guisp=#bd0000 gui=NONE ctermfg=15 ctermbg=1 cterm=NONE
|
||||||
|
hi Special guifg=#cc00ff guibg=NONE guisp=NONE gui=NONE ctermfg=165 ctermbg=NONE cterm=NONE
|
||||||
|
hi LineNr guifg=#666666 guibg=NONE guisp=NONE gui=NONE ctermfg=241 ctermbg=NONE cterm=NONE
|
||||||
|
hi StatusLine guifg=#d4d4d4 guibg=#ad3434 guisp=#ad3434 gui=bold ctermfg=188 ctermbg=131 cterm=bold
|
||||||
|
hi Label guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
||||||
|
hi PMenuSel guifg=#1c1c1c guibg=#c700b0 guisp=#c700b0 gui=NONE ctermfg=234 ctermbg=5 cterm=NONE
|
||||||
|
hi Search guifg=#192224 guibg=#55bd00 guisp=#55bd00 gui=NONE ctermfg=235 ctermbg=70 cterm=NONE
|
||||||
|
hi Delimiter guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Statement guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold
|
||||||
|
hi SpellRare guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
||||||
|
hi Comment guifg=#5c5c5c guibg=NONE guisp=NONE gui=italic ctermfg=59 ctermbg=NONE cterm=NONE
|
||||||
|
hi Character guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
||||||
|
hi TabLineSel guifg=#d6d6d6 guibg=#1e73bd guisp=#1e73bd gui=bold ctermfg=188 ctermbg=4 cterm=bold
|
||||||
|
hi Number guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
||||||
|
hi Boolean guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
||||||
|
hi Operator guifg=#d91a1a guibg=NONE guisp=NONE gui=bold ctermfg=160 ctermbg=NONE cterm=bold
|
||||||
|
hi CursorLine guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
||||||
|
hi TabLineFill guifg=#192224 guibg=#127894 guisp=#127894 gui=bold ctermfg=235 ctermbg=24 cterm=bold
|
||||||
|
hi WarningMsg guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE
|
||||||
|
hi VisualNOS guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=underline ctermfg=235 ctermbg=189 cterm=underline
|
||||||
|
hi DiffDelete guifg=NONE guibg=#192224 guisp=#192224 gui=NONE ctermfg=NONE ctermbg=235 cterm=NONE
|
||||||
|
hi ModeMsg guifg=#F9F9F9 guibg=#192224 guisp=#192224 gui=bold ctermfg=15 ctermbg=235 cterm=bold
|
||||||
|
hi CursorColumn guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
||||||
|
hi Define guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Function guifg=#48c750 guibg=NONE guisp=NONE gui=bold ctermfg=77 ctermbg=NONE cterm=bold
|
||||||
|
hi FoldColumn guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE
|
||||||
|
hi PreProc guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE
|
||||||
|
hi Visual guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=NONE ctermfg=235 ctermbg=189 cterm=NONE
|
||||||
|
hi MoreMsg guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
||||||
|
hi SpellCap guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
||||||
|
hi VertSplit guifg=#192224 guibg=#5E6C70 guisp=#5E6C70 gui=bold ctermfg=235 ctermbg=66 cterm=bold
|
||||||
|
hi Exception guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
||||||
|
hi Keyword guifg=#ff6600 guibg=NONE guisp=NONE gui=bold ctermfg=202 ctermbg=NONE cterm=bold
|
||||||
|
hi Type guifg=#47e6c6 guibg=NONE guisp=NONE gui=bold ctermfg=79 ctermbg=NONE cterm=bold
|
||||||
|
hi DiffChange guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE
|
||||||
|
hi Cursor guifg=#192224 guibg=#F9F9F9 guisp=#F9F9F9 gui=NONE ctermfg=235 ctermbg=15 cterm=NONE
|
||||||
|
hi SpellLocal guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
||||||
|
hi Error guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE
|
||||||
|
hi PMenu guifg=#969696 guibg=#193138 guisp=#193138 gui=NONE ctermfg=246 ctermbg=237 cterm=NONE
|
||||||
|
hi SpecialKey guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE
|
||||||
|
hi Constant guifg=#ff0073 guibg=NONE guisp=NONE gui=NONE ctermfg=197 ctermbg=NONE cterm=NONE
|
||||||
|
hi Tag guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi String guifg=#bdc6c9 guibg=NONE guisp=NONE gui=NONE ctermfg=251 ctermbg=NONE cterm=NONE
|
||||||
|
hi PMenuThumb guifg=NONE guibg=#a4a6a8 guisp=#a4a6a8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE
|
||||||
|
hi MatchParen guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
||||||
|
hi Repeat guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
||||||
|
hi SpellBad guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
||||||
|
hi Directory guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
||||||
|
hi Structure guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
||||||
|
hi Macro guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
||||||
|
hi Underlined guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
||||||
|
hi DiffAdd guifg=NONE guibg=#193224 guisp=#193224 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
||||||
|
hi TabLine guifg=#d6d6d6 guibg=#2b6599 guisp=#2b6599 gui=bold ctermfg=188 ctermbg=24 cterm=bold
|
||||||
|
hi cursorim guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE
|
108
vim/colors/monokai.vim
Normal file
108
vim/colors/monokai.vim
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
" Vim color file
|
||||||
|
" Converted from Textmate theme Monokai using Coloration v0.3.2 (http://github.com/sickill/coloration)
|
||||||
|
|
||||||
|
set background=dark
|
||||||
|
highlight clear
|
||||||
|
|
||||||
|
if exists("syntax_on")
|
||||||
|
syntax reset
|
||||||
|
endif
|
||||||
|
|
||||||
|
set t_Co=256
|
||||||
|
let g:colors_name = "monokai"
|
||||||
|
|
||||||
|
hi Cursor ctermfg=235 ctermbg=231 cterm=NONE guifg=#272822 guibg=#f8f8f0 gui=NONE
|
||||||
|
hi Visual ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE
|
||||||
|
hi CursorLine ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
||||||
|
hi CursorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
||||||
|
hi ColorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
||||||
|
hi LineNr ctermfg=102 ctermbg=237 cterm=NONE guifg=#90908a guibg=#3c3d37 gui=NONE
|
||||||
|
hi VertSplit ctermfg=241 ctermbg=241 cterm=NONE guifg=#64645e guibg=#64645e gui=NONE
|
||||||
|
hi MatchParen ctermfg=197 ctermbg=NONE cterm=underline guifg=#f92672 guibg=NONE gui=underline
|
||||||
|
hi StatusLine ctermfg=231 ctermbg=241 cterm=bold guifg=#f8f8f2 guibg=#64645e gui=bold
|
||||||
|
hi StatusLineNC ctermfg=231 ctermbg=241 cterm=NONE guifg=#f8f8f2 guibg=#64645e gui=NONE
|
||||||
|
hi Pmenu ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi PmenuSel ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE
|
||||||
|
hi IncSearch ctermfg=235 ctermbg=186 cterm=NONE guifg=#272822 guibg=#e6db74 gui=NONE
|
||||||
|
hi Search ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline
|
||||||
|
hi Directory ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi Folded ctermfg=242 ctermbg=235 cterm=NONE guifg=#75715e guibg=#272822 gui=NONE
|
||||||
|
hi SignColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
||||||
|
hi Normal ctermfg=231 ctermbg=235 cterm=NONE guifg=#f8f8f2 guibg=#272822 gui=NONE
|
||||||
|
hi Boolean ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi Character ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi Comment ctermfg=242 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE
|
||||||
|
hi Conditional ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi Constant ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi Define ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi DiffAdd ctermfg=231 ctermbg=64 cterm=bold guifg=#f8f8f2 guibg=#46830c gui=bold
|
||||||
|
hi DiffDelete ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8b0807 guibg=NONE gui=NONE
|
||||||
|
hi DiffChange ctermfg=NONE ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=#243955 gui=NONE
|
||||||
|
hi DiffText ctermfg=231 ctermbg=24 cterm=bold guifg=#f8f8f2 guibg=#204a87 gui=bold
|
||||||
|
hi ErrorMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE
|
||||||
|
hi WarningMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE
|
||||||
|
hi Float ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi Function ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
||||||
|
hi Identifier ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
||||||
|
hi Keyword ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi Label ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi NonText ctermfg=59 ctermbg=236 cterm=NONE guifg=#49483e guibg=#31322c gui=NONE
|
||||||
|
hi Number ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi Operator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi PreProc ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi Special ctermfg=231 ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=NONE gui=NONE
|
||||||
|
hi SpecialKey ctermfg=59 ctermbg=237 cterm=NONE guifg=#49483e guibg=#3c3d37 gui=NONE
|
||||||
|
hi Statement ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi StorageClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
||||||
|
hi String ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi Tag ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi Title ctermfg=231 ctermbg=NONE cterm=bold guifg=#f8f8f2 guibg=NONE gui=bold
|
||||||
|
hi Todo ctermfg=95 ctermbg=NONE cterm=inverse,bold guifg=#75715e guibg=NONE gui=inverse,bold
|
||||||
|
hi Type ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi Underlined ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline
|
||||||
|
hi rubyClass ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi rubyFunction ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
||||||
|
hi rubyInterpolationDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi rubySymbol ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi rubyConstant ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
||||||
|
hi rubyStringDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi rubyBlockParameter ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic
|
||||||
|
hi rubyInstanceVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi rubyInclude ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi rubyGlobalVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi rubyRegexp ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi rubyRegexpDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi rubyEscape ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi rubyControl ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi rubyClassVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi rubyOperator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi rubyException ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi rubyPseudoVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi rubyRailsUserClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
||||||
|
hi rubyRailsARAssociationMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi rubyRailsARMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi rubyRailsRenderMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi rubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi erubyDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi erubyComment ctermfg=95 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE
|
||||||
|
hi erubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi htmlTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi htmlEndTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi htmlTagName ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi htmlArg ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi htmlSpecialChar ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi javaScriptFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
||||||
|
hi javaScriptRailsFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi javaScriptBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi yamlKey ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
||||||
|
hi yamlAnchor ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi yamlAlias ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
||||||
|
hi yamlDocumentHeader ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
||||||
|
hi cssURL ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic
|
||||||
|
hi cssFunctionName ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi cssColor ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi cssPseudoClassId ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
||||||
|
hi cssClassName ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
||||||
|
hi cssValueLength ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
||||||
|
hi cssCommonAttr ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
||||||
|
hi cssBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
1
vim/compiler/tex.vim
Symbolic link
1
vim/compiler/tex.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/compiler/tex.vim
|
1
vim/doc/imaps.txt.gz
Symbolic link
1
vim/doc/imaps.txt.gz
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/doc/imaps.txt.gz
|
1
vim/doc/latex-suite-quickstart.txt.gz
Symbolic link
1
vim/doc/latex-suite-quickstart.txt.gz
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/doc/latex-suite-quickstart.txt.gz
|
1
vim/doc/latex-suite.txt.gz
Symbolic link
1
vim/doc/latex-suite.txt.gz
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/doc/latex-suite.txt.gz
|
1
vim/doc/latexhelp.txt.gz
Symbolic link
1
vim/doc/latexhelp.txt.gz
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/doc/latexhelp.txt.gz
|
914
vim/doc/tags
Normal file
914
vim/doc/tags
Normal file
|
@ -0,0 +1,914 @@
|
||||||
|
Alph latexhelp.txt.gz /*Alph*
|
||||||
|
Alt-B latex-suite.txt.gz /*Alt-B*
|
||||||
|
Alt-C latex-suite.txt.gz /*Alt-C*
|
||||||
|
Alt-I latex-suite.txt.gz /*Alt-I*
|
||||||
|
Alt-L latex-suite.txt.gz /*Alt-L*
|
||||||
|
BibTeX latexhelp.txt.gz /*BibTeX*
|
||||||
|
IMAP_PutTextWithMovement latex-suite.txt.gz /*IMAP_PutTextWithMovement*
|
||||||
|
Imap_DeleteEmptyPlaceHolders latex-suite.txt.gz /*Imap_DeleteEmptyPlaceHolders*
|
||||||
|
Imap_FreezeImap latex-suite.txt.gz /*Imap_FreezeImap*
|
||||||
|
Imap_PlaceHolderEnd latex-suite.txt.gz /*Imap_PlaceHolderEnd*
|
||||||
|
Imap_PlaceHolderStart latex-suite.txt.gz /*Imap_PlaceHolderStart*
|
||||||
|
Imap_StickyPlaceHolders latex-suite.txt.gz /*Imap_StickyPlaceHolders*
|
||||||
|
Imap_UsePlaceHolders latex-suite.txt.gz /*Imap_UsePlaceHolders*
|
||||||
|
LaTeX latexhelp.txt.gz /*LaTeX*
|
||||||
|
Plug_IMAP_DeleteAndJumBack latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumBack*
|
||||||
|
Plug_IMAP_DeleteAndJumpForward latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumpForward*
|
||||||
|
Plug_IMAP_JumpBack latex-suite.txt.gz /*Plug_IMAP_JumpBack*
|
||||||
|
Plug_IMAP_JumpForward latex-suite.txt.gz /*Plug_IMAP_JumpForward*
|
||||||
|
Plug_Tex_InsertItemOnThisLine latex-suite.txt.gz /*Plug_Tex_InsertItemOnThisLine*
|
||||||
|
Plug_Tex_LeftRight latex-suite.txt.gz /*Plug_Tex_LeftRight*
|
||||||
|
Plug_Tex_MathBF latex-suite.txt.gz /*Plug_Tex_MathBF*
|
||||||
|
Plug_Tex_MathCal latex-suite.txt.gz /*Plug_Tex_MathCal*
|
||||||
|
Roman latexhelp.txt.gz /*Roman*
|
||||||
|
TClearCiteHist latex-suite.txt.gz /*TClearCiteHist*
|
||||||
|
TLook latex-suite.txt.gz /*TLook*
|
||||||
|
TLookAll latex-suite.txt.gz /*TLookAll*
|
||||||
|
TLookBib latex-suite.txt.gz /*TLookBib*
|
||||||
|
TMacro latex-suite.txt.gz /*TMacro*
|
||||||
|
TMacroDelete latex-suite.txt.gz /*TMacroDelete*
|
||||||
|
TMacroEdit latex-suite.txt.gz /*TMacroEdit*
|
||||||
|
TMacroNew latex-suite.txt.gz /*TMacroNew*
|
||||||
|
TPackage latex-suite.txt.gz /*TPackage*
|
||||||
|
TPackageUpdate latex-suite.txt.gz /*TPackageUpdate*
|
||||||
|
TPackageUpdateAll latex-suite.txt.gz /*TPackageUpdateAll*
|
||||||
|
TPartComp latex-suite.txt.gz /*TPartComp*
|
||||||
|
TPartView latex-suite.txt.gz /*TPartView*
|
||||||
|
TSection latex-suite.txt.gz /*TSection*
|
||||||
|
TSectionAdvanced latex-suite.txt.gz /*TSectionAdvanced*
|
||||||
|
TTemplate latex-suite.txt.gz /*TTemplate*
|
||||||
|
Tex_AutoFolding latex-suite.txt.gz /*Tex_AutoFolding*
|
||||||
|
Tex_BIBINPUTS latex-suite.txt.gz /*Tex_BIBINPUTS*
|
||||||
|
Tex_CatchVisMapErrors latex-suite.txt.gz /*Tex_CatchVisMapErrors*
|
||||||
|
Tex_Com_name latex-suite.txt.gz /*Tex_Com_name*
|
||||||
|
Tex_CompileRule_format latex-suite.txt.gz /*Tex_CompileRule_format*
|
||||||
|
Tex_Debug latex-suite.txt.gz /*Tex_Debug*
|
||||||
|
Tex_DefaultTargetFormat latex-suite.txt.gz /*Tex_DefaultTargetFormat*
|
||||||
|
Tex_Diacritics latex-suite.txt.gz /*Tex_Diacritics*
|
||||||
|
Tex_Env_name latex-suite.txt.gz /*Tex_Env_name*
|
||||||
|
Tex_EnvironmentMaps latex-suite.txt.gz /*Tex_EnvironmentMaps*
|
||||||
|
Tex_EnvironmentMenus latex-suite.txt.gz /*Tex_EnvironmentMenus*
|
||||||
|
Tex_ExplorerHeight latex-suite.txt.gz /*Tex_ExplorerHeight*
|
||||||
|
Tex_FoldedCommands latex-suite.txt.gz /*Tex_FoldedCommands*
|
||||||
|
Tex_FoldedEnvironments latex-suite.txt.gz /*Tex_FoldedEnvironments*
|
||||||
|
Tex_FoldedMisc latex-suite.txt.gz /*Tex_FoldedMisc*
|
||||||
|
Tex_FoldedSections latex-suite.txt.gz /*Tex_FoldedSections*
|
||||||
|
Tex_Folding latex-suite.txt.gz /*Tex_Folding*
|
||||||
|
Tex_FontMaps latex-suite.txt.gz /*Tex_FontMaps*
|
||||||
|
Tex_FontMenus latex-suite.txt.gz /*Tex_FontMenus*
|
||||||
|
Tex_GotoError latex-suite.txt.gz /*Tex_GotoError*
|
||||||
|
Tex_HotKeyMappings latex-suite.txt.gz /*Tex_HotKeyMappings*
|
||||||
|
Tex_IgnoreLevel latex-suite.txt.gz /*Tex_IgnoreLevel*
|
||||||
|
Tex_IgnoredWarnings latex-suite.txt.gz /*Tex_IgnoredWarnings*
|
||||||
|
Tex_ImageDir latex-suite.txt.gz /*Tex_ImageDir*
|
||||||
|
Tex_ItemStyle_environment latex-suite.txt.gz /*Tex_ItemStyle_environment*
|
||||||
|
Tex_Leader latex-suite.txt.gz /*Tex_Leader*
|
||||||
|
Tex_Leader2 latex-suite.txt.gz /*Tex_Leader2*
|
||||||
|
Tex_MainFileExpression latex-suite.txt.gz /*Tex_MainFileExpression*
|
||||||
|
Tex_MainMenuLocation latex-suite.txt.gz /*Tex_MainMenuLocation*
|
||||||
|
Tex_MathMenus latex-suite.txt.gz /*Tex_MathMenus*
|
||||||
|
Tex_Menus latex-suite.txt.gz /*Tex_Menus*
|
||||||
|
Tex_MultipleCompileFormats latex-suite.txt.gz /*Tex_MultipleCompileFormats*
|
||||||
|
Tex_NestElementMenus latex-suite.txt.gz /*Tex_NestElementMenus*
|
||||||
|
Tex_NestPackagesMenu latex-suite.txt.gz /*Tex_NestPackagesMenu*
|
||||||
|
Tex_PackagesMenu latex-suite.txt.gz /*Tex_PackagesMenu*
|
||||||
|
Tex_ProjectSourceFiles latex-suite.txt.gz /*Tex_ProjectSourceFiles*
|
||||||
|
Tex_PromptedCommands latex-suite.txt.gz /*Tex_PromptedCommands*
|
||||||
|
Tex_PromptedEnvironments latex-suite.txt.gz /*Tex_PromptedEnvironments*
|
||||||
|
Tex_RememberCiteSearch latex-suite.txt.gz /*Tex_RememberCiteSearch*
|
||||||
|
Tex_SectionMaps latex-suite.txt.gz /*Tex_SectionMaps*
|
||||||
|
Tex_SectionMenus latex-suite.txt.gz /*Tex_SectionMenus*
|
||||||
|
Tex_SmartKeyBS latex-suite.txt.gz /*Tex_SmartKeyBS*
|
||||||
|
Tex_SmartKeyQuote latex-suite.txt.gz /*Tex_SmartKeyQuote*
|
||||||
|
Tex_TEXINPUTS latex-suite.txt.gz /*Tex_TEXINPUTS*
|
||||||
|
Tex_UseMakefile latex-suite.txt.gz /*Tex_UseMakefile*
|
||||||
|
Tex_UseMenuWizard latex-suite.txt.gz /*Tex_UseMenuWizard*
|
||||||
|
Tex_UsePython latex-suite.txt.gz /*Tex_UsePython*
|
||||||
|
Tex_UseSimpleLabelSearch latex-suite.txt.gz /*Tex_UseSimpleLabelSearch*
|
||||||
|
Tex_UseUtfMenus latex-suite.txt.gz /*Tex_UseUtfMenus*
|
||||||
|
Tex_ViewRuleComplete_format latex-suite.txt.gz /*Tex_ViewRuleComplete_format*
|
||||||
|
Tex_ViewRule_format latex-suite.txt.gz /*Tex_ViewRule_format*
|
||||||
|
Tex_ViewerCwindowHeight latex-suite.txt.gz /*Tex_ViewerCwindowHeight*
|
||||||
|
Tex_ViewerPreviewHeight latex-suite.txt.gz /*Tex_ViewerPreviewHeight*
|
||||||
|
Tshortcuts latex-suite.txt.gz /*Tshortcuts*
|
||||||
|
\Alph latexhelp.txt.gz /*\\Alph*
|
||||||
|
\Huge latexhelp.txt.gz /*\\Huge*
|
||||||
|
\LARGE latexhelp.txt.gz /*\\LARGE*
|
||||||
|
\Large latexhelp.txt.gz /*\\Large*
|
||||||
|
\Roman latexhelp.txt.gz /*\\Roman*
|
||||||
|
\\ latexhelp.txt.gz /*\\\\*
|
||||||
|
\\\\ latexhelp.txt.gz /*\\\\\\\\*
|
||||||
|
\addcontentsline latexhelp.txt.gz /*\\addcontentsline*
|
||||||
|
\address latexhelp.txt.gz /*\\address*
|
||||||
|
\addtocontents latexhelp.txt.gz /*\\addtocontents*
|
||||||
|
\addtocounter latexhelp.txt.gz /*\\addtocounter*
|
||||||
|
\addtolength latexhelp.txt.gz /*\\addtolength*
|
||||||
|
\addvspace latexhelp.txt.gz /*\\addvspace*
|
||||||
|
\alph latexhelp.txt.gz /*\\alph*
|
||||||
|
\and latexhelp.txt.gz /*\\and*
|
||||||
|
\appendix latexhelp.txt.gz /*\\appendix*
|
||||||
|
\arabic latexhelp.txt.gz /*\\arabic*
|
||||||
|
\author latexhelp.txt.gz /*\\author*
|
||||||
|
\begin latexhelp.txt.gz /*\\begin*
|
||||||
|
\bfseries latexhelp.txt.gz /*\\bfseries*
|
||||||
|
\bibitem latexhelp.txt.gz /*\\bibitem*
|
||||||
|
\bibliography latexhelp.txt.gz /*\\bibliography*
|
||||||
|
\bibliographystyle latexhelp.txt.gz /*\\bibliographystyle*
|
||||||
|
\bigskip latexhelp.txt.gz /*\\bigskip*
|
||||||
|
\cc latexhelp.txt.gz /*\\cc*
|
||||||
|
\cdots latexhelp.txt.gz /*\\cdots*
|
||||||
|
\centering latexhelp.txt.gz /*\\centering*
|
||||||
|
\chapter latexhelp.txt.gz /*\\chapter*
|
||||||
|
\circle latexhelp.txt.gz /*\\circle*
|
||||||
|
\cite latexhelp.txt.gz /*\\cite*
|
||||||
|
\cleardoublepage latexhelp.txt.gz /*\\cleardoublepage*
|
||||||
|
\clearpage latexhelp.txt.gz /*\\clearpage*
|
||||||
|
\cline latexhelp.txt.gz /*\\cline*
|
||||||
|
\closing latexhelp.txt.gz /*\\closing*
|
||||||
|
\dashbox latexhelp.txt.gz /*\\dashbox*
|
||||||
|
\date latexhelp.txt.gz /*\\date*
|
||||||
|
\ddots latexhelp.txt.gz /*\\ddots*
|
||||||
|
\depth latexhelp.txt.gz /*\\depth*
|
||||||
|
\documentclass latexhelp.txt.gz /*\\documentclass*
|
||||||
|
\dotfill latexhelp.txt.gz /*\\dotfill*
|
||||||
|
\emph latexhelp.txt.gz /*\\emph*
|
||||||
|
\end latexhelp.txt.gz /*\\end*
|
||||||
|
\enlargethispage latexhelp.txt.gz /*\\enlargethispage*
|
||||||
|
\fbox latexhelp.txt.gz /*\\fbox*
|
||||||
|
\flushbottom latexhelp.txt.gz /*\\flushbottom*
|
||||||
|
\fnsymbol latexhelp.txt.gz /*\\fnsymbol*
|
||||||
|
\fontencoding latexhelp.txt.gz /*\\fontencoding*
|
||||||
|
\fontfamily latexhelp.txt.gz /*\\fontfamily*
|
||||||
|
\fontseries latexhelp.txt.gz /*\\fontseries*
|
||||||
|
\fontshape latexhelp.txt.gz /*\\fontshape*
|
||||||
|
\fontsize latexhelp.txt.gz /*\\fontsize*
|
||||||
|
\footnote latexhelp.txt.gz /*\\footnote*
|
||||||
|
\footnotemark latexhelp.txt.gz /*\\footnotemark*
|
||||||
|
\footnotesize latexhelp.txt.gz /*\\footnotesize*
|
||||||
|
\footnotetext latexhelp.txt.gz /*\\footnotetext*
|
||||||
|
\frac latexhelp.txt.gz /*\\frac*
|
||||||
|
\frame latexhelp.txt.gz /*\\frame*
|
||||||
|
\framebox latexhelp.txt.gz /*\\framebox*
|
||||||
|
\fussy latexhelp.txt.gz /*\\fussy*
|
||||||
|
\height latexhelp.txt.gz /*\\height*
|
||||||
|
\hfill latexhelp.txt.gz /*\\hfill*
|
||||||
|
\hline latexhelp.txt.gz /*\\hline*
|
||||||
|
\hrulefill latexhelp.txt.gz /*\\hrulefill*
|
||||||
|
\hspace latexhelp.txt.gz /*\\hspace*
|
||||||
|
\huge latexhelp.txt.gz /*\\huge*
|
||||||
|
\hyphenation latexhelp.txt.gz /*\\hyphenation*
|
||||||
|
\include latexhelp.txt.gz /*\\include*
|
||||||
|
\includeonly latexhelp.txt.gz /*\\includeonly*
|
||||||
|
\indent latexhelp.txt.gz /*\\indent*
|
||||||
|
\input latexhelp.txt.gz /*\\input*
|
||||||
|
\item latexhelp.txt.gz /*\\item*
|
||||||
|
\itshape latexhelp.txt.gz /*\\itshape*
|
||||||
|
\kill latexhelp.txt.gz /*\\kill*
|
||||||
|
\label latexhelp.txt.gz /*\\label*
|
||||||
|
\large latexhelp.txt.gz /*\\large*
|
||||||
|
\ldots latexhelp.txt.gz /*\\ldots*
|
||||||
|
\lefteqn latexhelp.txt.gz /*\\lefteqn*
|
||||||
|
\letter latexhelp.txt.gz /*\\letter*
|
||||||
|
\line latexhelp.txt.gz /*\\line*
|
||||||
|
\linebreak latexhelp.txt.gz /*\\linebreak*
|
||||||
|
\linethickness latexhelp.txt.gz /*\\linethickness*
|
||||||
|
\listoffigures latexhelp.txt.gz /*\\listoffigures*
|
||||||
|
\listoftables latexhelp.txt.gz /*\\listoftables*
|
||||||
|
\location latexhelp.txt.gz /*\\location*
|
||||||
|
\lrbox latexhelp.txt.gz /*\\lrbox*
|
||||||
|
\makebox latexhelp.txt.gz /*\\makebox*
|
||||||
|
\makelabels latexhelp.txt.gz /*\\makelabels*
|
||||||
|
\maketitle latexhelp.txt.gz /*\\maketitle*
|
||||||
|
\marginpar latexhelp.txt.gz /*\\marginpar*
|
||||||
|
\markboth latexhelp.txt.gz /*\\markboth*
|
||||||
|
\markright latexhelp.txt.gz /*\\markright*
|
||||||
|
\mathbf latexhelp.txt.gz /*\\mathbf*
|
||||||
|
\mathcal latexhelp.txt.gz /*\\mathcal*
|
||||||
|
\mathit latexhelp.txt.gz /*\\mathit*
|
||||||
|
\mathnormal latexhelp.txt.gz /*\\mathnormal*
|
||||||
|
\mathrm latexhelp.txt.gz /*\\mathrm*
|
||||||
|
\mathsf latexhelp.txt.gz /*\\mathsf*
|
||||||
|
\mathtt latexhelp.txt.gz /*\\mathtt*
|
||||||
|
\mathversion latexhelp.txt.gz /*\\mathversion*
|
||||||
|
\mbox latexhelp.txt.gz /*\\mbox*
|
||||||
|
\mdseries latexhelp.txt.gz /*\\mdseries*
|
||||||
|
\medskip latexhelp.txt.gz /*\\medskip*
|
||||||
|
\multicolumn latexhelp.txt.gz /*\\multicolumn*
|
||||||
|
\multiput latexhelp.txt.gz /*\\multiput*
|
||||||
|
\name latexhelp.txt.gz /*\\name*
|
||||||
|
\newcommand latexhelp.txt.gz /*\\newcommand*
|
||||||
|
\newcounter latexhelp.txt.gz /*\\newcounter*
|
||||||
|
\newenvironment latexhelp.txt.gz /*\\newenvironment*
|
||||||
|
\newfont latexhelp.txt.gz /*\\newfont*
|
||||||
|
\newlength latexhelp.txt.gz /*\\newlength*
|
||||||
|
\newline latexhelp.txt.gz /*\\newline*
|
||||||
|
\newpage latexhelp.txt.gz /*\\newpage*
|
||||||
|
\newsavebox latexhelp.txt.gz /*\\newsavebox*
|
||||||
|
\newtheorem latexhelp.txt.gz /*\\newtheorem*
|
||||||
|
\nocite latexhelp.txt.gz /*\\nocite*
|
||||||
|
\nofiles latexhelp.txt.gz /*\\nofiles*
|
||||||
|
\noindent latexhelp.txt.gz /*\\noindent*
|
||||||
|
\nolinebreak latexhelp.txt.gz /*\\nolinebreak*
|
||||||
|
\nonumber latexhelp.txt.gz /*\\nonumber*
|
||||||
|
\nopagebreak latexhelp.txt.gz /*\\nopagebreak*
|
||||||
|
\normalfont latexhelp.txt.gz /*\\normalfont*
|
||||||
|
\normalsize latexhelp.txt.gz /*\\normalsize*
|
||||||
|
\onecolumn latexhelp.txt.gz /*\\onecolumn*
|
||||||
|
\opening latexhelp.txt.gz /*\\opening*
|
||||||
|
\oval latexhelp.txt.gz /*\\oval*
|
||||||
|
\overbrace latexhelp.txt.gz /*\\overbrace*
|
||||||
|
\overline latexhelp.txt.gz /*\\overline*
|
||||||
|
\pagebreak latexhelp.txt.gz /*\\pagebreak*
|
||||||
|
\pagenumbering latexhelp.txt.gz /*\\pagenumbering*
|
||||||
|
\pageref latexhelp.txt.gz /*\\pageref*
|
||||||
|
\pagestyle latexhelp.txt.gz /*\\pagestyle*
|
||||||
|
\par latexhelp.txt.gz /*\\par*
|
||||||
|
\paragraph latexhelp.txt.gz /*\\paragraph*
|
||||||
|
\parbox latexhelp.txt.gz /*\\parbox*
|
||||||
|
\part latexhelp.txt.gz /*\\part*
|
||||||
|
\picture-framebox latexhelp.txt.gz /*\\picture-framebox*
|
||||||
|
\ps latexhelp.txt.gz /*\\ps*
|
||||||
|
\pushtabs latexhelp.txt.gz /*\\pushtabs*
|
||||||
|
\put latexhelp.txt.gz /*\\put*
|
||||||
|
\raggedbottom latexhelp.txt.gz /*\\raggedbottom*
|
||||||
|
\raggedleft latexhelp.txt.gz /*\\raggedleft*
|
||||||
|
\raggedright latexhelp.txt.gz /*\\raggedright*
|
||||||
|
\raisebox latexhelp.txt.gz /*\\raisebox*
|
||||||
|
\ref latexhelp.txt.gz /*\\ref*
|
||||||
|
\refstepcounter latexhelp.txt.gz /*\\refstepcounter*
|
||||||
|
\renewcommand latexhelp.txt.gz /*\\renewcommand*
|
||||||
|
\renewenvironment latexhelp.txt.gz /*\\renewenvironment*
|
||||||
|
\reversemarginpar latexhelp.txt.gz /*\\reversemarginpar*
|
||||||
|
\rmfamily latexhelp.txt.gz /*\\rmfamily*
|
||||||
|
\roman latexhelp.txt.gz /*\\roman*
|
||||||
|
\rule latexhelp.txt.gz /*\\rule*
|
||||||
|
\savebox latexhelp.txt.gz /*\\savebox*
|
||||||
|
\sbox latexhelp.txt.gz /*\\sbox*
|
||||||
|
\scriptsize latexhelp.txt.gz /*\\scriptsize*
|
||||||
|
\scshape latexhelp.txt.gz /*\\scshape*
|
||||||
|
\section latexhelp.txt.gz /*\\section*
|
||||||
|
\selectfont latexhelp.txt.gz /*\\selectfont*
|
||||||
|
\setcounter latexhelp.txt.gz /*\\setcounter*
|
||||||
|
\setlength latexhelp.txt.gz /*\\setlength*
|
||||||
|
\settodepth latexhelp.txt.gz /*\\settodepth*
|
||||||
|
\settoheight latexhelp.txt.gz /*\\settoheight*
|
||||||
|
\settowidth latexhelp.txt.gz /*\\settowidth*
|
||||||
|
\sffamily latexhelp.txt.gz /*\\sffamily*
|
||||||
|
\shortstack latexhelp.txt.gz /*\\shortstack*
|
||||||
|
\signature latexhelp.txt.gz /*\\signature*
|
||||||
|
\sloppy latexhelp.txt.gz /*\\sloppy*
|
||||||
|
\slshape latexhelp.txt.gz /*\\slshape*
|
||||||
|
\small latexhelp.txt.gz /*\\small*
|
||||||
|
\smallskip latexhelp.txt.gz /*\\smallskip*
|
||||||
|
\space latexhelp.txt.gz /*\\space*
|
||||||
|
\sqrt latexhelp.txt.gz /*\\sqrt*
|
||||||
|
\startbreaks latexhelp.txt.gz /*\\startbreaks*
|
||||||
|
\stepcounter latexhelp.txt.gz /*\\stepcounter*
|
||||||
|
\stopbreaks latexhelp.txt.gz /*\\stopbreaks*
|
||||||
|
\subparagraph latexhelp.txt.gz /*\\subparagraph*
|
||||||
|
\subsection latexhelp.txt.gz /*\\subsection*
|
||||||
|
\subsubsection latexhelp.txt.gz /*\\subsubsection*
|
||||||
|
\symbol latexhelp.txt.gz /*\\symbol*
|
||||||
|
\table latexhelp.txt.gz /*\\table*
|
||||||
|
\tableofcontents latexhelp.txt.gz /*\\tableofcontents*
|
||||||
|
\telephone latexhelp.txt.gz /*\\telephone*
|
||||||
|
\textbf latexhelp.txt.gz /*\\textbf*
|
||||||
|
\textit latexhelp.txt.gz /*\\textit*
|
||||||
|
\textmd latexhelp.txt.gz /*\\textmd*
|
||||||
|
\textnormal latexhelp.txt.gz /*\\textnormal*
|
||||||
|
\textrm latexhelp.txt.gz /*\\textrm*
|
||||||
|
\textsc latexhelp.txt.gz /*\\textsc*
|
||||||
|
\textsf latexhelp.txt.gz /*\\textsf*
|
||||||
|
\textsl latexhelp.txt.gz /*\\textsl*
|
||||||
|
\texttt latexhelp.txt.gz /*\\texttt*
|
||||||
|
\textup latexhelp.txt.gz /*\\textup*
|
||||||
|
\thanks latexhelp.txt.gz /*\\thanks*
|
||||||
|
\thebibliography latexhelp.txt.gz /*\\thebibliography*
|
||||||
|
\thispagestyle latexhelp.txt.gz /*\\thispagestyle*
|
||||||
|
\tiny latexhelp.txt.gz /*\\tiny*
|
||||||
|
\title latexhelp.txt.gz /*\\title*
|
||||||
|
\totalheight latexhelp.txt.gz /*\\totalheight*
|
||||||
|
\ttfamily latexhelp.txt.gz /*\\ttfamily*
|
||||||
|
\twocolumn latexhelp.txt.gz /*\\twocolumn*
|
||||||
|
\typein latexhelp.txt.gz /*\\typein*
|
||||||
|
\typeout latexhelp.txt.gz /*\\typeout*
|
||||||
|
\underbrace latexhelp.txt.gz /*\\underbrace*
|
||||||
|
\underline latexhelp.txt.gz /*\\underline*
|
||||||
|
\upshape latexhelp.txt.gz /*\\upshape*
|
||||||
|
\usebox latexhelp.txt.gz /*\\usebox*
|
||||||
|
\usecounter latexhelp.txt.gz /*\\usecounter*
|
||||||
|
\usefont latexhelp.txt.gz /*\\usefont*
|
||||||
|
\usepackage latexhelp.txt.gz /*\\usepackage*
|
||||||
|
\value latexhelp.txt.gz /*\\value*
|
||||||
|
\vdots latexhelp.txt.gz /*\\vdots*
|
||||||
|
\vector latexhelp.txt.gz /*\\vector*
|
||||||
|
\verb latexhelp.txt.gz /*\\verb*
|
||||||
|
\vfill latexhelp.txt.gz /*\\vfill*
|
||||||
|
\vline latexhelp.txt.gz /*\\vline*
|
||||||
|
\vspace latexhelp.txt.gz /*\\vspace*
|
||||||
|
\width latexhelp.txt.gz /*\\width*
|
||||||
|
adding-bib-options latex-suite.txt.gz /*adding-bib-options*
|
||||||
|
alph latexhelp.txt.gz /*alph*
|
||||||
|
altkey-mappings latex-suite.txt.gz /*altkey-mappings*
|
||||||
|
arabic latexhelp.txt.gz /*arabic*
|
||||||
|
array latexhelp.txt.gz /*array*
|
||||||
|
article-class latexhelp.txt.gz /*article-class*
|
||||||
|
auc-tex-mappings latex-suite.txt.gz /*auc-tex-mappings*
|
||||||
|
automatic-package-detection latex-suite.txt.gz /*automatic-package-detection*
|
||||||
|
bibtex latexhelp.txt.gz /*bibtex*
|
||||||
|
bibtex-bindings latex-suite.txt.gz /*bibtex-bindings*
|
||||||
|
book-class latexhelp.txt.gz /*book-class*
|
||||||
|
center latexhelp.txt.gz /*center*
|
||||||
|
changing-commands latex-suite.txt.gz /*changing-commands*
|
||||||
|
changing-environments latex-suite.txt.gz /*changing-environments*
|
||||||
|
cite-search-caching latex-suite.txt.gz /*cite-search-caching*
|
||||||
|
compiler-dependency latex-suite.txt.gz /*compiler-dependency*
|
||||||
|
compiler-output-customization latex-suite.txt.gz /*compiler-output-customization*
|
||||||
|
compiler-rules latex-suite.txt.gz /*compiler-rules*
|
||||||
|
compiling-multiple latex-suite.txt.gz /*compiling-multiple*
|
||||||
|
completion-window-preferences latex-suite.txt.gz /*completion-window-preferences*
|
||||||
|
custom-macros-menu latex-suite.txt.gz /*custom-macros-menu*
|
||||||
|
custom-packages latex-suite.txt.gz /*custom-packages*
|
||||||
|
customize-alt-key-maps latex-suite.txt.gz /*customize-alt-key-maps*
|
||||||
|
customize-imap-maps latex-suite.txt.gz /*customize-imap-maps*
|
||||||
|
customizing-compiling latex-suite.txt.gz /*customizing-compiling*
|
||||||
|
customizing-folding latex-suite.txt.gz /*customizing-folding*
|
||||||
|
customizing-latex-completion latex-suite.txt.gz /*customizing-latex-completion*
|
||||||
|
customizing-latex-suite latex-suite.txt.gz /*customizing-latex-suite*
|
||||||
|
customizing-macros latex-suite.txt.gz /*customizing-macros*
|
||||||
|
customizing-menus latex-suite.txt.gz /*customizing-menus*
|
||||||
|
customizing-packages latex-suite.txt.gz /*customizing-packages*
|
||||||
|
customizing-place-holders latex-suite.txt.gz /*customizing-place-holders*
|
||||||
|
customizing-smart-keys latex-suite.txt.gz /*customizing-smart-keys*
|
||||||
|
customizing-viewing latex-suite.txt.gz /*customizing-viewing*
|
||||||
|
customizing-what-to-fold latex-suite.txt.gz /*customizing-what-to-fold*
|
||||||
|
default-folding latex-suite.txt.gz /*default-folding*
|
||||||
|
description latexhelp.txt.gz /*description*
|
||||||
|
diacritic-mappings latex-suite.txt.gz /*diacritic-mappings*
|
||||||
|
displaymath latexhelp.txt.gz /*displaymath*
|
||||||
|
draft latexhelp.txt.gz /*draft*
|
||||||
|
editing-folding latex-suite.txt.gz /*editing-folding*
|
||||||
|
empty latexhelp.txt.gz /*empty*
|
||||||
|
enabling-searching latex-suite.txt.gz /*enabling-searching*
|
||||||
|
enclosing-commands latex-suite.txt.gz /*enclosing-commands*
|
||||||
|
enclosing-env-f5 latex-suite.txt.gz /*enclosing-env-f5*
|
||||||
|
enclosing-env-threeletter latex-suite.txt.gz /*enclosing-env-threeletter*
|
||||||
|
enclosing-environments latex-suite.txt.gz /*enclosing-environments*
|
||||||
|
enumerate latexhelp.txt.gz /*enumerate*
|
||||||
|
environment-mappings latex-suite.txt.gz /*environment-mappings*
|
||||||
|
eqnarray latexhelp.txt.gz /*eqnarray*
|
||||||
|
equation latexhelp.txt.gz /*equation*
|
||||||
|
figure latexhelp.txt.gz /*figure*
|
||||||
|
final latexhelp.txt.gz /*final*
|
||||||
|
fleqn latexhelp.txt.gz /*fleqn*
|
||||||
|
flushleft latexhelp.txt.gz /*flushleft*
|
||||||
|
flushright latexhelp.txt.gz /*flushright*
|
||||||
|
fold-setting-adding latex-suite.txt.gz /*fold-setting-adding*
|
||||||
|
fold-setting-advanced latex-suite.txt.gz /*fold-setting-advanced*
|
||||||
|
font-lowlevelcommands latexhelp.txt.gz /*font-lowlevelcommands*
|
||||||
|
font-maps latex-suite.txt.gz /*font-maps*
|
||||||
|
font-size latexhelp.txt.gz /*font-size*
|
||||||
|
font-styles latexhelp.txt.gz /*font-styles*
|
||||||
|
forward-searching latex-suite.txt.gz /*forward-searching*
|
||||||
|
greek-letter-mappings latex-suite.txt.gz /*greek-letter-mappings*
|
||||||
|
headings latexhelp.txt.gz /*headings*
|
||||||
|
hyph- latexhelp.txt.gz /*hyph-*
|
||||||
|
im_1 imaps.txt.gz /*im_1*
|
||||||
|
imaps-usage imaps.txt.gz /*imaps-usage*
|
||||||
|
imaps.txt imaps.txt.gz /*imaps.txt*
|
||||||
|
imaps.txt-toc imaps.txt.gz /*imaps.txt-toc*
|
||||||
|
inserting-commands latex-suite.txt.gz /*inserting-commands*
|
||||||
|
inserting-env-f5 latex-suite.txt.gz /*inserting-env-f5*
|
||||||
|
inserting-env-shift-f1 latex-suite.txt.gz /*inserting-env-shift-f1*
|
||||||
|
inserting-env-threeletter latex-suite.txt.gz /*inserting-env-threeletter*
|
||||||
|
inserting-environments latex-suite.txt.gz /*inserting-environments*
|
||||||
|
inserting-packages latex-suite.txt.gz /*inserting-packages*
|
||||||
|
inverse-searching latex-suite.txt.gz /*inverse-searching*
|
||||||
|
itemize latexhelp.txt.gz /*itemize*
|
||||||
|
landscape latexhelp.txt.gz /*landscape*
|
||||||
|
latex latexhelp.txt.gz /*latex*
|
||||||
|
latex-boxes latexhelp.txt.gz /*latex-boxes*
|
||||||
|
latex-breaking latexhelp.txt.gz /*latex-breaking*
|
||||||
|
latex-classes latexhelp.txt.gz /*latex-classes*
|
||||||
|
latex-command-maps latex-suite.txt.gz /*latex-command-maps*
|
||||||
|
latex-commands latexhelp.txt.gz /*latex-commands*
|
||||||
|
latex-compiling latex-suite.txt.gz /*latex-compiling*
|
||||||
|
latex-completion latex-suite.txt.gz /*latex-completion*
|
||||||
|
latex-completion-cite latex-suite.txt.gz /*latex-completion-cite*
|
||||||
|
latex-counters latexhelp.txt.gz /*latex-counters*
|
||||||
|
latex-definitions latexhelp.txt.gz /*latex-definitions*
|
||||||
|
latex-environments latexhelp.txt.gz /*latex-environments*
|
||||||
|
latex-folding latex-suite.txt.gz /*latex-folding*
|
||||||
|
latex-footnotes latexhelp.txt.gz /*latex-footnotes*
|
||||||
|
latex-hor-space latexhelp.txt.gz /*latex-hor-space*
|
||||||
|
latex-inputting latexhelp.txt.gz /*latex-inputting*
|
||||||
|
latex-layout latexhelp.txt.gz /*latex-layout*
|
||||||
|
latex-lengths latexhelp.txt.gz /*latex-lengths*
|
||||||
|
latex-letters latexhelp.txt.gz /*latex-letters*
|
||||||
|
latex-macros latex-suite.txt.gz /*latex-macros*
|
||||||
|
latex-margin-notes latexhelp.txt.gz /*latex-margin-notes*
|
||||||
|
latex-master-file latex-suite.txt.gz /*latex-master-file*
|
||||||
|
latex-master-file-specification latex-suite.txt.gz /*latex-master-file-specification*
|
||||||
|
latex-math latexhelp.txt.gz /*latex-math*
|
||||||
|
latex-modes latexhelp.txt.gz /*latex-modes*
|
||||||
|
latex-package-scanning latex-suite.txt.gz /*latex-package-scanning*
|
||||||
|
latex-packages latex-suite.txt.gz /*latex-packages*
|
||||||
|
latex-page-styles latexhelp.txt.gz /*latex-page-styles*
|
||||||
|
latex-paragraphs latexhelp.txt.gz /*latex-paragraphs*
|
||||||
|
latex-parameters latexhelp.txt.gz /*latex-parameters*
|
||||||
|
latex-project latex-suite.txt.gz /*latex-project*
|
||||||
|
latex-project-example latex-suite.txt.gz /*latex-project-example*
|
||||||
|
latex-project-settings latex-suite.txt.gz /*latex-project-settings*
|
||||||
|
latex-references latexhelp.txt.gz /*latex-references*
|
||||||
|
latex-sectioning latexhelp.txt.gz /*latex-sectioning*
|
||||||
|
latex-spaces-boxes latexhelp.txt.gz /*latex-spaces-boxes*
|
||||||
|
latex-special latexhelp.txt.gz /*latex-special*
|
||||||
|
latex-start-end latexhelp.txt.gz /*latex-start-end*
|
||||||
|
latex-suite-commands latex-suite.txt.gz /*latex-suite-commands*
|
||||||
|
latex-suite-commands-maps latex-suite.txt.gz /*latex-suite-commands-maps*
|
||||||
|
latex-suite-credits latex-suite.txt.gz /*latex-suite-credits*
|
||||||
|
latex-suite-maintainer latex-suite.txt.gz /*latex-suite-maintainer*
|
||||||
|
latex-suite-maps latex-suite.txt.gz /*latex-suite-maps*
|
||||||
|
latex-suite-quickstart.txt latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt*
|
||||||
|
latex-suite-quickstart.txt-toc latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt-toc*
|
||||||
|
latex-suite-templates latex-suite.txt.gz /*latex-suite-templates*
|
||||||
|
latex-suite.txt latex-suite.txt.gz /*latex-suite.txt*
|
||||||
|
latex-suite.txt-toc latex-suite.txt.gz /*latex-suite.txt-toc*
|
||||||
|
latex-terminal latexhelp.txt.gz /*latex-terminal*
|
||||||
|
latex-toc latexhelp.txt.gz /*latex-toc*
|
||||||
|
latex-typefaces latexhelp.txt.gz /*latex-typefaces*
|
||||||
|
latex-ver-space latexhelp.txt.gz /*latex-ver-space*
|
||||||
|
latex-viewing latex-suite.txt.gz /*latex-viewing*
|
||||||
|
latex-viewing-rules latex-suite.txt.gz /*latex-viewing-rules*
|
||||||
|
latexhelp.txt latexhelp.txt.gz /*latexhelp.txt*
|
||||||
|
leqno latexhelp.txt.gz /*leqno*
|
||||||
|
letter-class latexhelp.txt.gz /*letter-class*
|
||||||
|
list latexhelp.txt.gz /*list*
|
||||||
|
lq_1 latex-suite-quickstart.txt.gz /*lq_1*
|
||||||
|
lq_10 latex-suite-quickstart.txt.gz /*lq_10*
|
||||||
|
lq_2 latex-suite-quickstart.txt.gz /*lq_2*
|
||||||
|
lq_3 latex-suite-quickstart.txt.gz /*lq_3*
|
||||||
|
lq_4 latex-suite-quickstart.txt.gz /*lq_4*
|
||||||
|
lq_5 latex-suite-quickstart.txt.gz /*lq_5*
|
||||||
|
lq_6 latex-suite-quickstart.txt.gz /*lq_6*
|
||||||
|
lq_7 latex-suite-quickstart.txt.gz /*lq_7*
|
||||||
|
lq_8 latex-suite-quickstart.txt.gz /*lq_8*
|
||||||
|
lq_8_1 latex-suite-quickstart.txt.gz /*lq_8_1*
|
||||||
|
lq_9 latex-suite-quickstart.txt.gz /*lq_9*
|
||||||
|
lq_9_1 latex-suite-quickstart.txt.gz /*lq_9_1*
|
||||||
|
lq_9_2 latex-suite-quickstart.txt.gz /*lq_9_2*
|
||||||
|
lq_a_bc latex-suite-quickstart.txt.gz /*lq_a_bc*
|
||||||
|
lq_a_bd latex-suite-quickstart.txt.gz /*lq_a_bd*
|
||||||
|
lq_a_be latex-suite-quickstart.txt.gz /*lq_a_be*
|
||||||
|
lq_a_bf latex-suite-quickstart.txt.gz /*lq_a_bf*
|
||||||
|
lq_a_bg latex-suite-quickstart.txt.gz /*lq_a_bg*
|
||||||
|
lq_a_bh latex-suite-quickstart.txt.gz /*lq_a_bh*
|
||||||
|
lq_a_bi latex-suite-quickstart.txt.gz /*lq_a_bi*
|
||||||
|
lq_a_bj latex-suite-quickstart.txt.gz /*lq_a_bj*
|
||||||
|
lq_a_bk latex-suite-quickstart.txt.gz /*lq_a_bk*
|
||||||
|
lq_a_bl latex-suite-quickstart.txt.gz /*lq_a_bl*
|
||||||
|
lq_a_bm latex-suite-quickstart.txt.gz /*lq_a_bm*
|
||||||
|
lq_a_bn latex-suite-quickstart.txt.gz /*lq_a_bn*
|
||||||
|
lq_a_bo latex-suite-quickstart.txt.gz /*lq_a_bo*
|
||||||
|
lq_u_1 latex-suite-quickstart.txt.gz /*lq_u_1*
|
||||||
|
lq_u_2 latex-suite-quickstart.txt.gz /*lq_u_2*
|
||||||
|
lq_u_3 latex-suite-quickstart.txt.gz /*lq_u_3*
|
||||||
|
lq_u_4 latex-suite-quickstart.txt.gz /*lq_u_4*
|
||||||
|
lq_u_5 latex-suite-quickstart.txt.gz /*lq_u_5*
|
||||||
|
lq_u_6 latex-suite-quickstart.txt.gz /*lq_u_6*
|
||||||
|
lq_u_7 latex-suite-quickstart.txt.gz /*lq_u_7*
|
||||||
|
lq_u_8 latex-suite-quickstart.txt.gz /*lq_u_8*
|
||||||
|
lq_u_9 latex-suite-quickstart.txt.gz /*lq_u_9*
|
||||||
|
lr-mode latexhelp.txt.gz /*lr-mode*
|
||||||
|
ls-completion-custom latex-suite.txt.gz /*ls-completion-custom*
|
||||||
|
ls-completion-ref latex-suite.txt.gz /*ls-completion-ref*
|
||||||
|
ls-completion-usage latex-suite.txt.gz /*ls-completion-usage*
|
||||||
|
ls-filename-completion latex-suite.txt.gz /*ls-filename-completion*
|
||||||
|
ls-general-purpose-settings latex-suite.txt.gz /*ls-general-purpose-settings*
|
||||||
|
ls-imap-f7 latex-suite.txt.gz /*ls-imap-f7*
|
||||||
|
ls-imap-s-f7 latex-suite.txt.gz /*ls-imap-s-f7*
|
||||||
|
ls-imaps-syntax latex-suite.txt.gz /*ls-imaps-syntax*
|
||||||
|
ls-new-macros latex-suite.txt.gz /*ls-new-macros*
|
||||||
|
ls-set-grepprg latex-suite.txt.gz /*ls-set-grepprg*
|
||||||
|
ls-vmap-f7 latex-suite.txt.gz /*ls-vmap-f7*
|
||||||
|
ls_1 latex-suite.txt.gz /*ls_1*
|
||||||
|
ls_10 latex-suite.txt.gz /*ls_10*
|
||||||
|
ls_10_1 latex-suite.txt.gz /*ls_10_1*
|
||||||
|
ls_10_1_1 latex-suite.txt.gz /*ls_10_1_1*
|
||||||
|
ls_10_1_2 latex-suite.txt.gz /*ls_10_1_2*
|
||||||
|
ls_10_2 latex-suite.txt.gz /*ls_10_2*
|
||||||
|
ls_10_2_1 latex-suite.txt.gz /*ls_10_2_1*
|
||||||
|
ls_10_2_10 latex-suite.txt.gz /*ls_10_2_10*
|
||||||
|
ls_10_2_11 latex-suite.txt.gz /*ls_10_2_11*
|
||||||
|
ls_10_2_12 latex-suite.txt.gz /*ls_10_2_12*
|
||||||
|
ls_10_2_13 latex-suite.txt.gz /*ls_10_2_13*
|
||||||
|
ls_10_2_14 latex-suite.txt.gz /*ls_10_2_14*
|
||||||
|
ls_10_2_15 latex-suite.txt.gz /*ls_10_2_15*
|
||||||
|
ls_10_2_16 latex-suite.txt.gz /*ls_10_2_16*
|
||||||
|
ls_10_2_2 latex-suite.txt.gz /*ls_10_2_2*
|
||||||
|
ls_10_2_3 latex-suite.txt.gz /*ls_10_2_3*
|
||||||
|
ls_10_2_4 latex-suite.txt.gz /*ls_10_2_4*
|
||||||
|
ls_10_2_5 latex-suite.txt.gz /*ls_10_2_5*
|
||||||
|
ls_10_2_6 latex-suite.txt.gz /*ls_10_2_6*
|
||||||
|
ls_10_2_7 latex-suite.txt.gz /*ls_10_2_7*
|
||||||
|
ls_10_2_8 latex-suite.txt.gz /*ls_10_2_8*
|
||||||
|
ls_10_2_9 latex-suite.txt.gz /*ls_10_2_9*
|
||||||
|
ls_11 latex-suite.txt.gz /*ls_11*
|
||||||
|
ls_11_1 latex-suite.txt.gz /*ls_11_1*
|
||||||
|
ls_11_10 latex-suite.txt.gz /*ls_11_10*
|
||||||
|
ls_11_10_1 latex-suite.txt.gz /*ls_11_10_1*
|
||||||
|
ls_11_1_1 latex-suite.txt.gz /*ls_11_1_1*
|
||||||
|
ls_11_1_2 latex-suite.txt.gz /*ls_11_1_2*
|
||||||
|
ls_11_2 latex-suite.txt.gz /*ls_11_2*
|
||||||
|
ls_11_2_1 latex-suite.txt.gz /*ls_11_2_1*
|
||||||
|
ls_11_2_2 latex-suite.txt.gz /*ls_11_2_2*
|
||||||
|
ls_11_2_3 latex-suite.txt.gz /*ls_11_2_3*
|
||||||
|
ls_11_2_4 latex-suite.txt.gz /*ls_11_2_4*
|
||||||
|
ls_11_3 latex-suite.txt.gz /*ls_11_3*
|
||||||
|
ls_11_3_1 latex-suite.txt.gz /*ls_11_3_1*
|
||||||
|
ls_11_3_10 latex-suite.txt.gz /*ls_11_3_10*
|
||||||
|
ls_11_3_11 latex-suite.txt.gz /*ls_11_3_11*
|
||||||
|
ls_11_3_12 latex-suite.txt.gz /*ls_11_3_12*
|
||||||
|
ls_11_3_13 latex-suite.txt.gz /*ls_11_3_13*
|
||||||
|
ls_11_3_2 latex-suite.txt.gz /*ls_11_3_2*
|
||||||
|
ls_11_3_3 latex-suite.txt.gz /*ls_11_3_3*
|
||||||
|
ls_11_3_4 latex-suite.txt.gz /*ls_11_3_4*
|
||||||
|
ls_11_3_5 latex-suite.txt.gz /*ls_11_3_5*
|
||||||
|
ls_11_3_6 latex-suite.txt.gz /*ls_11_3_6*
|
||||||
|
ls_11_3_7 latex-suite.txt.gz /*ls_11_3_7*
|
||||||
|
ls_11_3_8 latex-suite.txt.gz /*ls_11_3_8*
|
||||||
|
ls_11_3_9 latex-suite.txt.gz /*ls_11_3_9*
|
||||||
|
ls_11_4 latex-suite.txt.gz /*ls_11_4*
|
||||||
|
ls_11_4_1 latex-suite.txt.gz /*ls_11_4_1*
|
||||||
|
ls_11_4_2 latex-suite.txt.gz /*ls_11_4_2*
|
||||||
|
ls_11_5 latex-suite.txt.gz /*ls_11_5*
|
||||||
|
ls_11_5_1 latex-suite.txt.gz /*ls_11_5_1*
|
||||||
|
ls_11_5_2 latex-suite.txt.gz /*ls_11_5_2*
|
||||||
|
ls_11_5_3 latex-suite.txt.gz /*ls_11_5_3*
|
||||||
|
ls_11_5_4 latex-suite.txt.gz /*ls_11_5_4*
|
||||||
|
ls_11_5_5 latex-suite.txt.gz /*ls_11_5_5*
|
||||||
|
ls_11_6 latex-suite.txt.gz /*ls_11_6*
|
||||||
|
ls_11_6_1 latex-suite.txt.gz /*ls_11_6_1*
|
||||||
|
ls_11_6_2 latex-suite.txt.gz /*ls_11_6_2*
|
||||||
|
ls_11_6_3 latex-suite.txt.gz /*ls_11_6_3*
|
||||||
|
ls_11_6_4 latex-suite.txt.gz /*ls_11_6_4*
|
||||||
|
ls_11_6_5 latex-suite.txt.gz /*ls_11_6_5*
|
||||||
|
ls_11_6_6 latex-suite.txt.gz /*ls_11_6_6*
|
||||||
|
ls_11_6_7 latex-suite.txt.gz /*ls_11_6_7*
|
||||||
|
ls_11_6_8 latex-suite.txt.gz /*ls_11_6_8*
|
||||||
|
ls_11_7 latex-suite.txt.gz /*ls_11_7*
|
||||||
|
ls_11_7_1 latex-suite.txt.gz /*ls_11_7_1*
|
||||||
|
ls_11_7_2 latex-suite.txt.gz /*ls_11_7_2*
|
||||||
|
ls_11_8 latex-suite.txt.gz /*ls_11_8*
|
||||||
|
ls_11_8_1 latex-suite.txt.gz /*ls_11_8_1*
|
||||||
|
ls_11_8_2 latex-suite.txt.gz /*ls_11_8_2*
|
||||||
|
ls_11_8_3 latex-suite.txt.gz /*ls_11_8_3*
|
||||||
|
ls_11_8_4 latex-suite.txt.gz /*ls_11_8_4*
|
||||||
|
ls_11_8_5 latex-suite.txt.gz /*ls_11_8_5*
|
||||||
|
ls_11_8_6 latex-suite.txt.gz /*ls_11_8_6*
|
||||||
|
ls_11_8_7 latex-suite.txt.gz /*ls_11_8_7*
|
||||||
|
ls_11_9 latex-suite.txt.gz /*ls_11_9*
|
||||||
|
ls_11_9_1 latex-suite.txt.gz /*ls_11_9_1*
|
||||||
|
ls_11_9_2 latex-suite.txt.gz /*ls_11_9_2*
|
||||||
|
ls_12 latex-suite.txt.gz /*ls_12*
|
||||||
|
ls_2 latex-suite.txt.gz /*ls_2*
|
||||||
|
ls_3 latex-suite.txt.gz /*ls_3*
|
||||||
|
ls_3_1 latex-suite.txt.gz /*ls_3_1*
|
||||||
|
ls_3_10 latex-suite.txt.gz /*ls_3_10*
|
||||||
|
ls_3_10_1 latex-suite.txt.gz /*ls_3_10_1*
|
||||||
|
ls_3_10_2 latex-suite.txt.gz /*ls_3_10_2*
|
||||||
|
ls_3_10_3 latex-suite.txt.gz /*ls_3_10_3*
|
||||||
|
ls_3_10_4 latex-suite.txt.gz /*ls_3_10_4*
|
||||||
|
ls_3_11 latex-suite.txt.gz /*ls_3_11*
|
||||||
|
ls_3_12 latex-suite.txt.gz /*ls_3_12*
|
||||||
|
ls_3_12_1 latex-suite.txt.gz /*ls_3_12_1*
|
||||||
|
ls_3_12_2 latex-suite.txt.gz /*ls_3_12_2*
|
||||||
|
ls_3_1_1 latex-suite.txt.gz /*ls_3_1_1*
|
||||||
|
ls_3_1_1_1 latex-suite.txt.gz /*ls_3_1_1_1*
|
||||||
|
ls_3_1_1_2 latex-suite.txt.gz /*ls_3_1_1_2*
|
||||||
|
ls_3_1_1_3 latex-suite.txt.gz /*ls_3_1_1_3*
|
||||||
|
ls_3_1_2 latex-suite.txt.gz /*ls_3_1_2*
|
||||||
|
ls_3_1_2_1 latex-suite.txt.gz /*ls_3_1_2_1*
|
||||||
|
ls_3_1_2_2 latex-suite.txt.gz /*ls_3_1_2_2*
|
||||||
|
ls_3_1_3 latex-suite.txt.gz /*ls_3_1_3*
|
||||||
|
ls_3_2 latex-suite.txt.gz /*ls_3_2*
|
||||||
|
ls_3_2_1 latex-suite.txt.gz /*ls_3_2_1*
|
||||||
|
ls_3_2_2 latex-suite.txt.gz /*ls_3_2_2*
|
||||||
|
ls_3_2_3 latex-suite.txt.gz /*ls_3_2_3*
|
||||||
|
ls_3_3 latex-suite.txt.gz /*ls_3_3*
|
||||||
|
ls_3_4 latex-suite.txt.gz /*ls_3_4*
|
||||||
|
ls_3_5 latex-suite.txt.gz /*ls_3_5*
|
||||||
|
ls_3_6 latex-suite.txt.gz /*ls_3_6*
|
||||||
|
ls_3_7 latex-suite.txt.gz /*ls_3_7*
|
||||||
|
ls_3_8 latex-suite.txt.gz /*ls_3_8*
|
||||||
|
ls_3_8_1 latex-suite.txt.gz /*ls_3_8_1*
|
||||||
|
ls_3_9 latex-suite.txt.gz /*ls_3_9*
|
||||||
|
ls_4 latex-suite.txt.gz /*ls_4*
|
||||||
|
ls_4_1 latex-suite.txt.gz /*ls_4_1*
|
||||||
|
ls_4_2 latex-suite.txt.gz /*ls_4_2*
|
||||||
|
ls_4_3 latex-suite.txt.gz /*ls_4_3*
|
||||||
|
ls_4_3_1 latex-suite.txt.gz /*ls_4_3_1*
|
||||||
|
ls_4_4 latex-suite.txt.gz /*ls_4_4*
|
||||||
|
ls_4_4_1 latex-suite.txt.gz /*ls_4_4_1*
|
||||||
|
ls_4_4_2 latex-suite.txt.gz /*ls_4_4_2*
|
||||||
|
ls_5 latex-suite.txt.gz /*ls_5*
|
||||||
|
ls_5_1 latex-suite.txt.gz /*ls_5_1*
|
||||||
|
ls_5_2 latex-suite.txt.gz /*ls_5_2*
|
||||||
|
ls_5_3 latex-suite.txt.gz /*ls_5_3*
|
||||||
|
ls_5_3_1 latex-suite.txt.gz /*ls_5_3_1*
|
||||||
|
ls_5_4 latex-suite.txt.gz /*ls_5_4*
|
||||||
|
ls_5_5 latex-suite.txt.gz /*ls_5_5*
|
||||||
|
ls_6 latex-suite.txt.gz /*ls_6*
|
||||||
|
ls_6_1 latex-suite.txt.gz /*ls_6_1*
|
||||||
|
ls_6_2 latex-suite.txt.gz /*ls_6_2*
|
||||||
|
ls_6_3 latex-suite.txt.gz /*ls_6_3*
|
||||||
|
ls_6_4 latex-suite.txt.gz /*ls_6_4*
|
||||||
|
ls_6_5 latex-suite.txt.gz /*ls_6_5*
|
||||||
|
ls_7 latex-suite.txt.gz /*ls_7*
|
||||||
|
ls_7_1 latex-suite.txt.gz /*ls_7_1*
|
||||||
|
ls_7_2 latex-suite.txt.gz /*ls_7_2*
|
||||||
|
ls_7_3 latex-suite.txt.gz /*ls_7_3*
|
||||||
|
ls_8 latex-suite.txt.gz /*ls_8*
|
||||||
|
ls_8_1 latex-suite.txt.gz /*ls_8_1*
|
||||||
|
ls_8_2 latex-suite.txt.gz /*ls_8_2*
|
||||||
|
ls_8_2_1 latex-suite.txt.gz /*ls_8_2_1*
|
||||||
|
ls_8_2_2 latex-suite.txt.gz /*ls_8_2_2*
|
||||||
|
ls_8_2_3 latex-suite.txt.gz /*ls_8_2_3*
|
||||||
|
ls_8_2_4 latex-suite.txt.gz /*ls_8_2_4*
|
||||||
|
ls_8_2_5 latex-suite.txt.gz /*ls_8_2_5*
|
||||||
|
ls_8_3 latex-suite.txt.gz /*ls_8_3*
|
||||||
|
ls_9 latex-suite.txt.gz /*ls_9*
|
||||||
|
ls_9_1 latex-suite.txt.gz /*ls_9_1*
|
||||||
|
ls_9_2 latex-suite.txt.gz /*ls_9_2*
|
||||||
|
ls_a_bA latex-suite.txt.gz /*ls_a_bA*
|
||||||
|
ls_a_bB latex-suite.txt.gz /*ls_a_bB*
|
||||||
|
ls_a_bC latex-suite.txt.gz /*ls_a_bC*
|
||||||
|
ls_a_bD latex-suite.txt.gz /*ls_a_bD*
|
||||||
|
ls_a_bE latex-suite.txt.gz /*ls_a_bE*
|
||||||
|
ls_a_bF latex-suite.txt.gz /*ls_a_bF*
|
||||||
|
ls_a_bG latex-suite.txt.gz /*ls_a_bG*
|
||||||
|
ls_a_bH latex-suite.txt.gz /*ls_a_bH*
|
||||||
|
ls_a_bI latex-suite.txt.gz /*ls_a_bI*
|
||||||
|
ls_a_bJ latex-suite.txt.gz /*ls_a_bJ*
|
||||||
|
ls_a_bK latex-suite.txt.gz /*ls_a_bK*
|
||||||
|
ls_a_bL latex-suite.txt.gz /*ls_a_bL*
|
||||||
|
ls_a_bM latex-suite.txt.gz /*ls_a_bM*
|
||||||
|
ls_a_bN latex-suite.txt.gz /*ls_a_bN*
|
||||||
|
ls_a_bO latex-suite.txt.gz /*ls_a_bO*
|
||||||
|
ls_a_bP latex-suite.txt.gz /*ls_a_bP*
|
||||||
|
ls_a_bQ latex-suite.txt.gz /*ls_a_bQ*
|
||||||
|
ls_a_bR latex-suite.txt.gz /*ls_a_bR*
|
||||||
|
ls_a_bS latex-suite.txt.gz /*ls_a_bS*
|
||||||
|
ls_a_bT latex-suite.txt.gz /*ls_a_bT*
|
||||||
|
ls_a_bU latex-suite.txt.gz /*ls_a_bU*
|
||||||
|
ls_a_bV latex-suite.txt.gz /*ls_a_bV*
|
||||||
|
ls_a_bW latex-suite.txt.gz /*ls_a_bW*
|
||||||
|
ls_a_bX latex-suite.txt.gz /*ls_a_bX*
|
||||||
|
ls_a_bY latex-suite.txt.gz /*ls_a_bY*
|
||||||
|
ls_a_bZ latex-suite.txt.gz /*ls_a_bZ*
|
||||||
|
ls_a_bc latex-suite.txt.gz /*ls_a_bc*
|
||||||
|
ls_a_bd latex-suite.txt.gz /*ls_a_bd*
|
||||||
|
ls_a_be latex-suite.txt.gz /*ls_a_be*
|
||||||
|
ls_a_bf latex-suite.txt.gz /*ls_a_bf*
|
||||||
|
ls_a_bg latex-suite.txt.gz /*ls_a_bg*
|
||||||
|
ls_a_bh latex-suite.txt.gz /*ls_a_bh*
|
||||||
|
ls_a_bi latex-suite.txt.gz /*ls_a_bi*
|
||||||
|
ls_a_bj latex-suite.txt.gz /*ls_a_bj*
|
||||||
|
ls_a_bk latex-suite.txt.gz /*ls_a_bk*
|
||||||
|
ls_a_bl latex-suite.txt.gz /*ls_a_bl*
|
||||||
|
ls_a_bm latex-suite.txt.gz /*ls_a_bm*
|
||||||
|
ls_a_bn latex-suite.txt.gz /*ls_a_bn*
|
||||||
|
ls_a_bo latex-suite.txt.gz /*ls_a_bo*
|
||||||
|
ls_a_bp latex-suite.txt.gz /*ls_a_bp*
|
||||||
|
ls_a_bq latex-suite.txt.gz /*ls_a_bq*
|
||||||
|
ls_a_br latex-suite.txt.gz /*ls_a_br*
|
||||||
|
ls_a_bs latex-suite.txt.gz /*ls_a_bs*
|
||||||
|
ls_a_bt latex-suite.txt.gz /*ls_a_bt*
|
||||||
|
ls_a_bu latex-suite.txt.gz /*ls_a_bu*
|
||||||
|
ls_a_bv latex-suite.txt.gz /*ls_a_bv*
|
||||||
|
ls_a_bw latex-suite.txt.gz /*ls_a_bw*
|
||||||
|
ls_a_bx latex-suite.txt.gz /*ls_a_bx*
|
||||||
|
ls_a_by latex-suite.txt.gz /*ls_a_by*
|
||||||
|
ls_a_bz latex-suite.txt.gz /*ls_a_bz*
|
||||||
|
ls_a_cA latex-suite.txt.gz /*ls_a_cA*
|
||||||
|
ls_a_cB latex-suite.txt.gz /*ls_a_cB*
|
||||||
|
ls_a_cC latex-suite.txt.gz /*ls_a_cC*
|
||||||
|
ls_a_cD latex-suite.txt.gz /*ls_a_cD*
|
||||||
|
ls_a_cE latex-suite.txt.gz /*ls_a_cE*
|
||||||
|
ls_a_cF latex-suite.txt.gz /*ls_a_cF*
|
||||||
|
ls_a_cG latex-suite.txt.gz /*ls_a_cG*
|
||||||
|
ls_a_cH latex-suite.txt.gz /*ls_a_cH*
|
||||||
|
ls_a_cI latex-suite.txt.gz /*ls_a_cI*
|
||||||
|
ls_a_cJ latex-suite.txt.gz /*ls_a_cJ*
|
||||||
|
ls_a_cK latex-suite.txt.gz /*ls_a_cK*
|
||||||
|
ls_a_cL latex-suite.txt.gz /*ls_a_cL*
|
||||||
|
ls_a_cM latex-suite.txt.gz /*ls_a_cM*
|
||||||
|
ls_a_cN latex-suite.txt.gz /*ls_a_cN*
|
||||||
|
ls_a_cO latex-suite.txt.gz /*ls_a_cO*
|
||||||
|
ls_a_cP latex-suite.txt.gz /*ls_a_cP*
|
||||||
|
ls_a_cQ latex-suite.txt.gz /*ls_a_cQ*
|
||||||
|
ls_a_cR latex-suite.txt.gz /*ls_a_cR*
|
||||||
|
ls_a_cS latex-suite.txt.gz /*ls_a_cS*
|
||||||
|
ls_a_cT latex-suite.txt.gz /*ls_a_cT*
|
||||||
|
ls_a_cU latex-suite.txt.gz /*ls_a_cU*
|
||||||
|
ls_a_cV latex-suite.txt.gz /*ls_a_cV*
|
||||||
|
ls_a_cW latex-suite.txt.gz /*ls_a_cW*
|
||||||
|
ls_a_cX latex-suite.txt.gz /*ls_a_cX*
|
||||||
|
ls_a_cY latex-suite.txt.gz /*ls_a_cY*
|
||||||
|
ls_a_cZ latex-suite.txt.gz /*ls_a_cZ*
|
||||||
|
ls_a_ca latex-suite.txt.gz /*ls_a_ca*
|
||||||
|
ls_a_cb latex-suite.txt.gz /*ls_a_cb*
|
||||||
|
ls_a_cc latex-suite.txt.gz /*ls_a_cc*
|
||||||
|
ls_a_cd latex-suite.txt.gz /*ls_a_cd*
|
||||||
|
ls_a_ce latex-suite.txt.gz /*ls_a_ce*
|
||||||
|
ls_a_cf latex-suite.txt.gz /*ls_a_cf*
|
||||||
|
ls_a_cg latex-suite.txt.gz /*ls_a_cg*
|
||||||
|
ls_a_ch latex-suite.txt.gz /*ls_a_ch*
|
||||||
|
ls_a_ci latex-suite.txt.gz /*ls_a_ci*
|
||||||
|
ls_a_cj latex-suite.txt.gz /*ls_a_cj*
|
||||||
|
ls_a_ck latex-suite.txt.gz /*ls_a_ck*
|
||||||
|
ls_a_cl latex-suite.txt.gz /*ls_a_cl*
|
||||||
|
ls_a_cm latex-suite.txt.gz /*ls_a_cm*
|
||||||
|
ls_a_cn latex-suite.txt.gz /*ls_a_cn*
|
||||||
|
ls_a_co latex-suite.txt.gz /*ls_a_co*
|
||||||
|
ls_a_cp latex-suite.txt.gz /*ls_a_cp*
|
||||||
|
ls_a_cq latex-suite.txt.gz /*ls_a_cq*
|
||||||
|
ls_a_cr latex-suite.txt.gz /*ls_a_cr*
|
||||||
|
ls_a_cs latex-suite.txt.gz /*ls_a_cs*
|
||||||
|
ls_a_ct latex-suite.txt.gz /*ls_a_ct*
|
||||||
|
ls_a_cu latex-suite.txt.gz /*ls_a_cu*
|
||||||
|
ls_a_cv latex-suite.txt.gz /*ls_a_cv*
|
||||||
|
ls_a_cw latex-suite.txt.gz /*ls_a_cw*
|
||||||
|
ls_a_cx latex-suite.txt.gz /*ls_a_cx*
|
||||||
|
ls_a_cy latex-suite.txt.gz /*ls_a_cy*
|
||||||
|
ls_a_cz latex-suite.txt.gz /*ls_a_cz*
|
||||||
|
ls_a_dA latex-suite.txt.gz /*ls_a_dA*
|
||||||
|
ls_a_dB latex-suite.txt.gz /*ls_a_dB*
|
||||||
|
ls_a_dC latex-suite.txt.gz /*ls_a_dC*
|
||||||
|
ls_a_dD latex-suite.txt.gz /*ls_a_dD*
|
||||||
|
ls_a_dE latex-suite.txt.gz /*ls_a_dE*
|
||||||
|
ls_a_dF latex-suite.txt.gz /*ls_a_dF*
|
||||||
|
ls_a_dG latex-suite.txt.gz /*ls_a_dG*
|
||||||
|
ls_a_dH latex-suite.txt.gz /*ls_a_dH*
|
||||||
|
ls_a_dI latex-suite.txt.gz /*ls_a_dI*
|
||||||
|
ls_a_dJ latex-suite.txt.gz /*ls_a_dJ*
|
||||||
|
ls_a_dK latex-suite.txt.gz /*ls_a_dK*
|
||||||
|
ls_a_dL latex-suite.txt.gz /*ls_a_dL*
|
||||||
|
ls_a_dM latex-suite.txt.gz /*ls_a_dM*
|
||||||
|
ls_a_dN latex-suite.txt.gz /*ls_a_dN*
|
||||||
|
ls_a_dO latex-suite.txt.gz /*ls_a_dO*
|
||||||
|
ls_a_dP latex-suite.txt.gz /*ls_a_dP*
|
||||||
|
ls_a_dQ latex-suite.txt.gz /*ls_a_dQ*
|
||||||
|
ls_a_dR latex-suite.txt.gz /*ls_a_dR*
|
||||||
|
ls_a_dS latex-suite.txt.gz /*ls_a_dS*
|
||||||
|
ls_a_dT latex-suite.txt.gz /*ls_a_dT*
|
||||||
|
ls_a_dU latex-suite.txt.gz /*ls_a_dU*
|
||||||
|
ls_a_dV latex-suite.txt.gz /*ls_a_dV*
|
||||||
|
ls_a_dW latex-suite.txt.gz /*ls_a_dW*
|
||||||
|
ls_a_dX latex-suite.txt.gz /*ls_a_dX*
|
||||||
|
ls_a_dY latex-suite.txt.gz /*ls_a_dY*
|
||||||
|
ls_a_dZ latex-suite.txt.gz /*ls_a_dZ*
|
||||||
|
ls_a_da latex-suite.txt.gz /*ls_a_da*
|
||||||
|
ls_a_db latex-suite.txt.gz /*ls_a_db*
|
||||||
|
ls_a_dc latex-suite.txt.gz /*ls_a_dc*
|
||||||
|
ls_a_dd latex-suite.txt.gz /*ls_a_dd*
|
||||||
|
ls_a_de latex-suite.txt.gz /*ls_a_de*
|
||||||
|
ls_a_df latex-suite.txt.gz /*ls_a_df*
|
||||||
|
ls_a_dg latex-suite.txt.gz /*ls_a_dg*
|
||||||
|
ls_a_dh latex-suite.txt.gz /*ls_a_dh*
|
||||||
|
ls_a_di latex-suite.txt.gz /*ls_a_di*
|
||||||
|
ls_a_dj latex-suite.txt.gz /*ls_a_dj*
|
||||||
|
ls_a_dk latex-suite.txt.gz /*ls_a_dk*
|
||||||
|
ls_a_dl latex-suite.txt.gz /*ls_a_dl*
|
||||||
|
ls_a_dm latex-suite.txt.gz /*ls_a_dm*
|
||||||
|
ls_a_dn latex-suite.txt.gz /*ls_a_dn*
|
||||||
|
ls_a_do latex-suite.txt.gz /*ls_a_do*
|
||||||
|
ls_a_dp latex-suite.txt.gz /*ls_a_dp*
|
||||||
|
ls_a_dq latex-suite.txt.gz /*ls_a_dq*
|
||||||
|
ls_a_dr latex-suite.txt.gz /*ls_a_dr*
|
||||||
|
ls_a_ds latex-suite.txt.gz /*ls_a_ds*
|
||||||
|
ls_a_dt latex-suite.txt.gz /*ls_a_dt*
|
||||||
|
ls_a_du latex-suite.txt.gz /*ls_a_du*
|
||||||
|
ls_a_dv latex-suite.txt.gz /*ls_a_dv*
|
||||||
|
ls_a_dw latex-suite.txt.gz /*ls_a_dw*
|
||||||
|
ls_a_dx latex-suite.txt.gz /*ls_a_dx*
|
||||||
|
ls_a_dy latex-suite.txt.gz /*ls_a_dy*
|
||||||
|
ls_a_dz latex-suite.txt.gz /*ls_a_dz*
|
||||||
|
ls_a_eA latex-suite.txt.gz /*ls_a_eA*
|
||||||
|
ls_a_eB latex-suite.txt.gz /*ls_a_eB*
|
||||||
|
ls_a_eC latex-suite.txt.gz /*ls_a_eC*
|
||||||
|
ls_a_eD latex-suite.txt.gz /*ls_a_eD*
|
||||||
|
ls_a_eE latex-suite.txt.gz /*ls_a_eE*
|
||||||
|
ls_a_eF latex-suite.txt.gz /*ls_a_eF*
|
||||||
|
ls_a_eG latex-suite.txt.gz /*ls_a_eG*
|
||||||
|
ls_a_ea latex-suite.txt.gz /*ls_a_ea*
|
||||||
|
ls_a_eb latex-suite.txt.gz /*ls_a_eb*
|
||||||
|
ls_a_ec latex-suite.txt.gz /*ls_a_ec*
|
||||||
|
ls_a_ed latex-suite.txt.gz /*ls_a_ed*
|
||||||
|
ls_a_ee latex-suite.txt.gz /*ls_a_ee*
|
||||||
|
ls_a_ef latex-suite.txt.gz /*ls_a_ef*
|
||||||
|
ls_a_eg latex-suite.txt.gz /*ls_a_eg*
|
||||||
|
ls_a_eh latex-suite.txt.gz /*ls_a_eh*
|
||||||
|
ls_a_ei latex-suite.txt.gz /*ls_a_ei*
|
||||||
|
ls_a_ej latex-suite.txt.gz /*ls_a_ej*
|
||||||
|
ls_a_ek latex-suite.txt.gz /*ls_a_ek*
|
||||||
|
ls_a_el latex-suite.txt.gz /*ls_a_el*
|
||||||
|
ls_a_em latex-suite.txt.gz /*ls_a_em*
|
||||||
|
ls_a_en latex-suite.txt.gz /*ls_a_en*
|
||||||
|
ls_a_eo latex-suite.txt.gz /*ls_a_eo*
|
||||||
|
ls_a_ep latex-suite.txt.gz /*ls_a_ep*
|
||||||
|
ls_a_eq latex-suite.txt.gz /*ls_a_eq*
|
||||||
|
ls_a_er latex-suite.txt.gz /*ls_a_er*
|
||||||
|
ls_a_es latex-suite.txt.gz /*ls_a_es*
|
||||||
|
ls_a_et latex-suite.txt.gz /*ls_a_et*
|
||||||
|
ls_a_eu latex-suite.txt.gz /*ls_a_eu*
|
||||||
|
ls_a_ev latex-suite.txt.gz /*ls_a_ev*
|
||||||
|
ls_a_ew latex-suite.txt.gz /*ls_a_ew*
|
||||||
|
ls_a_ex latex-suite.txt.gz /*ls_a_ex*
|
||||||
|
ls_a_ey latex-suite.txt.gz /*ls_a_ey*
|
||||||
|
ls_a_ez latex-suite.txt.gz /*ls_a_ez*
|
||||||
|
ls_u_1 latex-suite.txt.gz /*ls_u_1*
|
||||||
|
ls_u_10 latex-suite.txt.gz /*ls_u_10*
|
||||||
|
ls_u_11 latex-suite.txt.gz /*ls_u_11*
|
||||||
|
ls_u_12 latex-suite.txt.gz /*ls_u_12*
|
||||||
|
ls_u_13 latex-suite.txt.gz /*ls_u_13*
|
||||||
|
ls_u_2 latex-suite.txt.gz /*ls_u_2*
|
||||||
|
ls_u_3 latex-suite.txt.gz /*ls_u_3*
|
||||||
|
ls_u_4 latex-suite.txt.gz /*ls_u_4*
|
||||||
|
ls_u_5 latex-suite.txt.gz /*ls_u_5*
|
||||||
|
ls_u_6 latex-suite.txt.gz /*ls_u_6*
|
||||||
|
ls_u_7 latex-suite.txt.gz /*ls_u_7*
|
||||||
|
ls_u_8 latex-suite.txt.gz /*ls_u_8*
|
||||||
|
ls_u_9 latex-suite.txt.gz /*ls_u_9*
|
||||||
|
lsq-compiling latex-suite-quickstart.txt.gz /*lsq-compiling*
|
||||||
|
lsq-conclusions latex-suite-quickstart.txt.gz /*lsq-conclusions*
|
||||||
|
lsq-debugging latex-suite-quickstart.txt.gz /*lsq-debugging*
|
||||||
|
lsq-folding latex-suite-quickstart.txt.gz /*lsq-folding*
|
||||||
|
lsq-insert-environment latex-suite-quickstart.txt.gz /*lsq-insert-environment*
|
||||||
|
lsq-inserting-reference latex-suite-quickstart.txt.gz /*lsq-inserting-reference*
|
||||||
|
lsq-inserting-template latex-suite-quickstart.txt.gz /*lsq-inserting-template*
|
||||||
|
lsq-keyboard-shortcuts latex-suite-quickstart.txt.gz /*lsq-keyboard-shortcuts*
|
||||||
|
lsq-lsq-inserting-package latex-suite-quickstart.txt.gz /*lsq-lsq-inserting-package*
|
||||||
|
lsq-quick-forward-searching latex-suite-quickstart.txt.gz /*lsq-quick-forward-searching*
|
||||||
|
lsq-quick-inverse-searching latex-suite-quickstart.txt.gz /*lsq-quick-inverse-searching*
|
||||||
|
lsq-using-tutorial latex-suite-quickstart.txt.gz /*lsq-using-tutorial*
|
||||||
|
lsq-viewing-dvi latex-suite-quickstart.txt.gz /*lsq-viewing-dvi*
|
||||||
|
macro-enabling latex-suite.txt.gz /*macro-enabling*
|
||||||
|
math, latexhelp.txt.gz /*math,*
|
||||||
|
math-misc latexhelp.txt.gz /*math-misc*
|
||||||
|
math-mode latexhelp.txt.gz /*math-mode*
|
||||||
|
math-spacing latexhelp.txt.gz /*math-spacing*
|
||||||
|
math-symbols latexhelp.txt.gz /*math-symbols*
|
||||||
|
math: latexhelp.txt.gz /*math:*
|
||||||
|
math; latexhelp.txt.gz /*math;*
|
||||||
|
matn! latexhelp.txt.gz /*matn!*
|
||||||
|
minipage latexhelp.txt.gz /*minipage*
|
||||||
|
notitlepage latexhelp.txt.gz /*notitlepage*
|
||||||
|
onecolumn latexhelp.txt.gz /*onecolumn*
|
||||||
|
oneside latexhelp.txt.gz /*oneside*
|
||||||
|
openany latexhelp.txt.gz /*openany*
|
||||||
|
openbib latexhelp.txt.gz /*openbib*
|
||||||
|
openright latexhelp.txt.gz /*openright*
|
||||||
|
overriding-macros latex-suite.txt.gz /*overriding-macros*
|
||||||
|
package-actions latex-suite.txt.gz /*package-actions*
|
||||||
|
paragraph-mode latexhelp.txt.gz /*paragraph-mode*
|
||||||
|
part-compiling latex-suite.txt.gz /*part-compiling*
|
||||||
|
pausing-imaps latex-suite.txt.gz /*pausing-imaps*
|
||||||
|
picture latexhelp.txt.gz /*picture*
|
||||||
|
picture-makebox latexhelp.txt.gz /*picture-makebox*
|
||||||
|
place-holder latex-suite.txt.gz /*place-holder*
|
||||||
|
place-holders latex-suite.txt.gz /*place-holders*
|
||||||
|
plain latexhelp.txt.gz /*plain*
|
||||||
|
pre-lengths latexhelp.txt.gz /*pre-lengths*
|
||||||
|
quotation latexhelp.txt.gz /*quotation*
|
||||||
|
quote-l latexhelp.txt.gz /*quote-l*
|
||||||
|
recommended-settings latex-suite.txt.gz /*recommended-settings*
|
||||||
|
remapping-latex-suite-keys latex-suite.txt.gz /*remapping-latex-suite-keys*
|
||||||
|
report-class latexhelp.txt.gz /*report-class*
|
||||||
|
roman latexhelp.txt.gz /*roman*
|
||||||
|
rqno latexhelp.txt.gz /*rqno*
|
||||||
|
section-mappings latex-suite.txt.gz /*section-mappings*
|
||||||
|
slides-class latexhelp.txt.gz /*slides-class*
|
||||||
|
smart-backspace latex-suite.txt.gz /*smart-backspace*
|
||||||
|
smart-keys latex-suite.txt.gz /*smart-keys*
|
||||||
|
sub-sup latexhelp.txt.gz /*sub-sup*
|
||||||
|
subscripts latexhelp.txt.gz /*subscripts*
|
||||||
|
superscripts latexhelp.txt.gz /*superscripts*
|
||||||
|
supporting-packages latex-suite.txt.gz /*supporting-packages*
|
||||||
|
tab' latexhelp.txt.gz /*tab'*
|
||||||
|
tab+ latexhelp.txt.gz /*tab+*
|
||||||
|
tab- latexhelp.txt.gz /*tab-*
|
||||||
|
tab< latexhelp.txt.gz /*tab<*
|
||||||
|
tab= latexhelp.txt.gz /*tab=*
|
||||||
|
tab> latexhelp.txt.gz /*tab>*
|
||||||
|
tab` latexhelp.txt.gz /*tab`*
|
||||||
|
taba latexhelp.txt.gz /*taba*
|
||||||
|
tabbing latexhelp.txt.gz /*tabbing*
|
||||||
|
tabular latexhelp.txt.gz /*tabular*
|
||||||
|
theorem latexhelp.txt.gz /*theorem*
|
||||||
|
titlepage latexhelp.txt.gz /*titlepage*
|
||||||
|
twocolumn latexhelp.txt.gz /*twocolumn*
|
||||||
|
twoside latexhelp.txt.gz /*twoside*
|
||||||
|
verbatim latexhelp.txt.gz /*verbatim*
|
||||||
|
verse latexhelp.txt.gz /*verse*
|
||||||
|
why-IMAP latex-suite.txt.gz /*why-IMAP*
|
1
vim/ftplugin/bib_latexSuite.vim
Symbolic link
1
vim/ftplugin/bib_latexSuite.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/bib_latexSuite.vim
|
1
vim/ftplugin/latex-suite/bibtex.vim
Symbolic link
1
vim/ftplugin/latex-suite/bibtex.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/bibtex.vim
|
1
vim/ftplugin/latex-suite/bibtools.py
Symbolic link
1
vim/ftplugin/latex-suite/bibtools.py
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/bibtools.py
|
1
vim/ftplugin/latex-suite/brackets.vim
Symbolic link
1
vim/ftplugin/latex-suite/brackets.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/brackets.vim
|
1
vim/ftplugin/latex-suite/compiler.vim
Symbolic link
1
vim/ftplugin/latex-suite/compiler.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/compiler.vim
|
1
vim/ftplugin/latex-suite/custommacros.vim
Symbolic link
1
vim/ftplugin/latex-suite/custommacros.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/custommacros.vim
|
1
vim/ftplugin/latex-suite/diacritics.vim
Symbolic link
1
vim/ftplugin/latex-suite/diacritics.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/diacritics.vim
|
1
vim/ftplugin/latex-suite/dictionaries/SIunits
Symbolic link
1
vim/ftplugin/latex-suite/dictionaries/SIunits
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/SIunits
|
1
vim/ftplugin/latex-suite/dictionaries/dictionary
Symbolic link
1
vim/ftplugin/latex-suite/dictionaries/dictionary
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/dictionary
|
1
vim/ftplugin/latex-suite/elementmacros.vim
Symbolic link
1
vim/ftplugin/latex-suite/elementmacros.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/elementmacros.vim
|
1
vim/ftplugin/latex-suite/envmacros.vim
Symbolic link
1
vim/ftplugin/latex-suite/envmacros.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/envmacros.vim
|
1
vim/ftplugin/latex-suite/folding.vim
Symbolic link
1
vim/ftplugin/latex-suite/folding.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/folding.vim
|
1
vim/ftplugin/latex-suite/macros/example
Symbolic link
1
vim/ftplugin/latex-suite/macros/example
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/macros/example
|
1
vim/ftplugin/latex-suite/main.vim
Symbolic link
1
vim/ftplugin/latex-suite/main.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/main.vim
|
1
vim/ftplugin/latex-suite/mathmacros-utf.vim
Symbolic link
1
vim/ftplugin/latex-suite/mathmacros-utf.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/mathmacros-utf.vim
|
1
vim/ftplugin/latex-suite/mathmacros.vim
Symbolic link
1
vim/ftplugin/latex-suite/mathmacros.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/mathmacros.vim
|
1
vim/ftplugin/latex-suite/multicompile.vim
Symbolic link
1
vim/ftplugin/latex-suite/multicompile.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/multicompile.vim
|
1
vim/ftplugin/latex-suite/outline.py
Symbolic link
1
vim/ftplugin/latex-suite/outline.py
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/outline.py
|
1
vim/ftplugin/latex-suite/packages.vim
Symbolic link
1
vim/ftplugin/latex-suite/packages.vim
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages.vim
|
1
vim/ftplugin/latex-suite/packages/SIunits
Symbolic link
1
vim/ftplugin/latex-suite/packages/SIunits
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/SIunits
|
1
vim/ftplugin/latex-suite/packages/accents
Symbolic link
1
vim/ftplugin/latex-suite/packages/accents
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/accents
|
1
vim/ftplugin/latex-suite/packages/acromake
Symbolic link
1
vim/ftplugin/latex-suite/packages/acromake
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/acromake
|
1
vim/ftplugin/latex-suite/packages/afterpage
Symbolic link
1
vim/ftplugin/latex-suite/packages/afterpage
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/afterpage
|
1
vim/ftplugin/latex-suite/packages/alltt
Symbolic link
1
vim/ftplugin/latex-suite/packages/alltt
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/alltt
|
1
vim/ftplugin/latex-suite/packages/amsmath
Symbolic link
1
vim/ftplugin/latex-suite/packages/amsmath
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsmath
|
1
vim/ftplugin/latex-suite/packages/amsthm
Symbolic link
1
vim/ftplugin/latex-suite/packages/amsthm
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsthm
|
1
vim/ftplugin/latex-suite/packages/amsxtra
Symbolic link
1
vim/ftplugin/latex-suite/packages/amsxtra
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsxtra
|
1
vim/ftplugin/latex-suite/packages/arabic
Symbolic link
1
vim/ftplugin/latex-suite/packages/arabic
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/arabic
|
1
vim/ftplugin/latex-suite/packages/array
Symbolic link
1
vim/ftplugin/latex-suite/packages/array
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/array
|
1
vim/ftplugin/latex-suite/packages/babel
Symbolic link
1
vim/ftplugin/latex-suite/packages/babel
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/babel
|
1
vim/ftplugin/latex-suite/packages/bar
Symbolic link
1
vim/ftplugin/latex-suite/packages/bar
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/bar
|
1
vim/ftplugin/latex-suite/packages/biblatex
Symbolic link
1
vim/ftplugin/latex-suite/packages/biblatex
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/biblatex
|
1
vim/ftplugin/latex-suite/packages/bm
Symbolic link
1
vim/ftplugin/latex-suite/packages/bm
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/bm
|
1
vim/ftplugin/latex-suite/packages/bophook
Symbolic link
1
vim/ftplugin/latex-suite/packages/bophook
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/bophook
|
1
vim/ftplugin/latex-suite/packages/boxedminipage
Symbolic link
1
vim/ftplugin/latex-suite/packages/boxedminipage
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/boxedminipage
|
1
vim/ftplugin/latex-suite/packages/caption2
Symbolic link
1
vim/ftplugin/latex-suite/packages/caption2
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/caption2
|
1
vim/ftplugin/latex-suite/packages/cases
Symbolic link
1
vim/ftplugin/latex-suite/packages/cases
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/cases
|
1
vim/ftplugin/latex-suite/packages/ccaption
Symbolic link
1
vim/ftplugin/latex-suite/packages/ccaption
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/ccaption
|
1
vim/ftplugin/latex-suite/packages/changebar
Symbolic link
1
vim/ftplugin/latex-suite/packages/changebar
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/changebar
|
1
vim/ftplugin/latex-suite/packages/chapterbib
Symbolic link
1
vim/ftplugin/latex-suite/packages/chapterbib
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/chapterbib
|
1
vim/ftplugin/latex-suite/packages/cite
Symbolic link
1
vim/ftplugin/latex-suite/packages/cite
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/cite
|
1
vim/ftplugin/latex-suite/packages/color
Symbolic link
1
vim/ftplugin/latex-suite/packages/color
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/color
|
1
vim/ftplugin/latex-suite/packages/comma
Symbolic link
1
vim/ftplugin/latex-suite/packages/comma
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/comma
|
1
vim/ftplugin/latex-suite/packages/csquotes
Symbolic link
1
vim/ftplugin/latex-suite/packages/csquotes
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/csquotes
|
1
vim/ftplugin/latex-suite/packages/deleq
Symbolic link
1
vim/ftplugin/latex-suite/packages/deleq
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/deleq
|
1
vim/ftplugin/latex-suite/packages/drftcite
Symbolic link
1
vim/ftplugin/latex-suite/packages/drftcite
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/drftcite
|
1
vim/ftplugin/latex-suite/packages/dropping
Symbolic link
1
vim/ftplugin/latex-suite/packages/dropping
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/dropping
|
1
vim/ftplugin/latex-suite/packages/enumerate
Symbolic link
1
vim/ftplugin/latex-suite/packages/enumerate
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/enumerate
|
1
vim/ftplugin/latex-suite/packages/eqlist
Symbolic link
1
vim/ftplugin/latex-suite/packages/eqlist
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/eqlist
|
1
vim/ftplugin/latex-suite/packages/eqparbox
Symbolic link
1
vim/ftplugin/latex-suite/packages/eqparbox
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/eqparbox
|
1
vim/ftplugin/latex-suite/packages/everyshi
Symbolic link
1
vim/ftplugin/latex-suite/packages/everyshi
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/everyshi
|
1
vim/ftplugin/latex-suite/packages/exmpl
Symbolic link
1
vim/ftplugin/latex-suite/packages/exmpl
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/exmpl
|
1
vim/ftplugin/latex-suite/packages/fixme
Symbolic link
1
vim/ftplugin/latex-suite/packages/fixme
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/fixme
|
1
vim/ftplugin/latex-suite/packages/flafter
Symbolic link
1
vim/ftplugin/latex-suite/packages/flafter
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/flafter
|
1
vim/ftplugin/latex-suite/packages/float
Symbolic link
1
vim/ftplugin/latex-suite/packages/float
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/float
|
1
vim/ftplugin/latex-suite/packages/floatflt
Symbolic link
1
vim/ftplugin/latex-suite/packages/floatflt
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/floatflt
|
1
vim/ftplugin/latex-suite/packages/fn2end
Symbolic link
1
vim/ftplugin/latex-suite/packages/fn2end
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/fn2end
|
1
vim/ftplugin/latex-suite/packages/footmisc
Symbolic link
1
vim/ftplugin/latex-suite/packages/footmisc
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/footmisc
|
1
vim/ftplugin/latex-suite/packages/geometry
Symbolic link
1
vim/ftplugin/latex-suite/packages/geometry
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/geometry
|
1
vim/ftplugin/latex-suite/packages/german
Symbolic link
1
vim/ftplugin/latex-suite/packages/german
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/german
|
1
vim/ftplugin/latex-suite/packages/graphicx
Symbolic link
1
vim/ftplugin/latex-suite/packages/graphicx
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/graphicx
|
1
vim/ftplugin/latex-suite/packages/graphpap
Symbolic link
1
vim/ftplugin/latex-suite/packages/graphpap
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/graphpap
|
1
vim/ftplugin/latex-suite/packages/harpoon
Symbolic link
1
vim/ftplugin/latex-suite/packages/harpoon
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/harpoon
|
1
vim/ftplugin/latex-suite/packages/hhline
Symbolic link
1
vim/ftplugin/latex-suite/packages/hhline
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/hhline
|
1
vim/ftplugin/latex-suite/packages/histogram
Symbolic link
1
vim/ftplugin/latex-suite/packages/histogram
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/histogram
|
1
vim/ftplugin/latex-suite/packages/hyperref
Symbolic link
1
vim/ftplugin/latex-suite/packages/hyperref
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/hyperref
|
1
vim/ftplugin/latex-suite/packages/ifthen
Symbolic link
1
vim/ftplugin/latex-suite/packages/ifthen
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/ifthen
|
1
vim/ftplugin/latex-suite/packages/inputenc
Symbolic link
1
vim/ftplugin/latex-suite/packages/inputenc
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/inputenc
|
1
vim/ftplugin/latex-suite/packages/letterspace
Symbolic link
1
vim/ftplugin/latex-suite/packages/letterspace
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/letterspace
|
1
vim/ftplugin/latex-suite/packages/lineno
Symbolic link
1
vim/ftplugin/latex-suite/packages/lineno
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/lineno
|
1
vim/ftplugin/latex-suite/packages/longtable
Symbolic link
1
vim/ftplugin/latex-suite/packages/longtable
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/longtable
|
1
vim/ftplugin/latex-suite/packages/lscape
Symbolic link
1
vim/ftplugin/latex-suite/packages/lscape
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/usr/share/vim/addons/ftplugin/latex-suite/packages/lscape
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue