From 9179db39c975fbb0d61cf01c823f74cb304671e8 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Mon, 30 Mar 2015 12:44:15 +0100 Subject: Added latex shortcuts in after --- vim/after/ftplugin/tex/folding.vim | 34 ---------------------------------- vim/after/ftplugin/tex/mappings.vim | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 34 deletions(-) create mode 100644 vim/after/ftplugin/tex/mappings.vim (limited to 'vim/after') diff --git a/vim/after/ftplugin/tex/folding.vim b/vim/after/ftplugin/tex/folding.vim index 096c8a9..e69de29 100644 --- a/vim/after/ftplugin/tex/folding.vim +++ b/vim/after/ftplugin/tex/folding.vim @@ -1,34 +0,0 @@ -" function! TexFolds() -" let thisline = getline(v:lnum) -" if match(thisline,'^\\chapter') >= 0 -" return ">1" -" elseif match(thisline,'^\\section') >= 0 -" return ">1" -" elseif match(thisline,'^\\subsection') >=0 -" return ">1" -" elseif match(thisline,'^\\subsubsection') >=0 -" return ">1" -" else -" return "=" -" endif -" endfunction -" -" function! TexFoldText() -" let startline = getline(v:foldstart) -" let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"") -" if match(startline,'^\\chapter') >= 0 -" return '*' . title . '' -" elseif match(startline,'^\\section') >= 0 -" return ' # ' . title -" elseif match(startline,'^\\subsection') >=0 -" return ' ## ' . title -" elseif match(startline,'^\\subsubsection') >=0 -" return ' ### ' . title -" else -" echom "Error, fold not recognized" -" endif -" endfunction -" -" setlocal foldmethod=expr -" setlocal foldexpr=TexFolds() -" setlocal foldtext=TexFoldText() diff --git a/vim/after/ftplugin/tex/mappings.vim b/vim/after/ftplugin/tex/mappings.vim new file mode 100644 index 0000000..121cdee --- /dev/null +++ b/vim/after/ftplugin/tex/mappings.vim @@ -0,0 +1,31 @@ +inoremap (( \left( +inoremap )) \right) +inoremap {{ \left\{ +inoremap }} \right\} +inoremap [[ \left[ +inoremap ]] \right] +inoremap == \,=\, +inoremap >> \,\geq\, +inoremap << \,\leq\, +inoremap ++ \,+\, +inoremap -- \,-\, + +inoremap `a \alpha +inoremap `b \beta +inoremap `g \gamma +inoremap `d \delta +inoremap `e \varepsilon +inoremap `z \zeta +inoremap `h \eta +inoremap `t \theta +inoremap `i \iota +inoremap `k \kappa +inoremap `l \lambda +inoremap `m \mu +inoremap `n \nu +inoremap `x \xi +inoremap `r \rho +inoremap `s \sigma +inoremap `f \phi +inoremap `p \pi +inoremap `w \omega -- cgit v1.2.3