summaryrefslogtreecommitdiff
path: root/.vim/after/ftplugin/tex.vim
blob: 0d3f84b67e2b0095ea3876856a9e15d6eb359066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" disable annoying {{ and (( completion
call IMAP('{{', '{{', 'tex')
call IMAP('((', '((', 'tex')

" add our own macros
call IMAP('EFR', "\\begin{frame}{<++>}\<CR><++>\<CR>\\end{frame}<++>", "tex")

" ignore some more stuff
let g:Tex_IgnoredWarnings.="\nFont shape"
let g:Tex_IgnoredWarnings.="\nFloat too large"
let g:Tex_IgnoredWarnings.="\nUserWarning"
let g:Tex_IgnoreLevel+=3
'2012-09-22 20:51:41 +0200'>2012-09-22Normalize copyright headers.Jason A. Donenfeld7-23/+18 2012-09-22Bring zsh completion up to parity with bash completionBrian Mattern1-59/+92 2012-09-22EDITOR should be italicized.Jason A. Donenfeld1-2/+2 2012-09-22Allow git repo to be elsewhere via env var.Jason A. Donenfeld2-9/+24 2012-09-22I don't want --help or --version in bash completion.Jason A. Donenfeld1-1/+1 2012-09-22Vastly simplify GPG secret key finding logic.Jason A. Donenfeld1-1/+1 2012-09-22simplify logic slightlyBrian Mattern1-9/+12 2012-09-22turn -o filenames back onBrian Mattern1-10/+6 2012-09-22bash completion - Fix UTF8, escape spaces, inverted commas, brackets, and amp...Jeffrey Ratcliffe1-14/+10 2012-09-21Better gpg key completion for `pass init`Brian Mattern1-2/+15 2012-09-21Append to COMPREPLY instead of inserting by indexBrian Mattern1-3/+1