From 6888c3c9bfe85b7609d008704ab152e1e2e6c19c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Fri, 11 Dec 2015 08:40:49 +0100 Subject: [PATCH] Added i->\iota and v->\vartheta (#277) --- autoload/vimtex/imaps.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/vimtex/imaps.vim b/autoload/vimtex/imaps.vim index 52886bc..35ab652 100644 --- a/autoload/vimtex/imaps.vim +++ b/autoload/vimtex/imaps.vim @@ -114,7 +114,6 @@ function! s:default_maps() " {{{1 \ { 'lhs_rhs' : ['qh', '\rightarrow'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['qH', '\Rightarrow'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['P', '\Product'], 'wrapper' : 's:wrap_math'}, - \ { 'lhs_rhs' : ['S', '\Sum'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['a', '\alpha'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['b', '\beta'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['c', '\chi'], 'wrapper' : 's:wrap_math'}, @@ -123,6 +122,7 @@ function! s:default_maps() " {{{1 \ { 'lhs_rhs' : ['f', '\varphi'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['g', '\gamma'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['h', '\eta'], 'wrapper' : 's:wrap_math'}, + \ { 'lhs_rhs' : ['i', '\iota'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['k', '\kappa'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['l', '\lambda'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['m', '\mu'], 'wrapper' : 's:wrap_math'}, @@ -134,6 +134,7 @@ function! s:default_maps() " {{{1 \ { 'lhs_rhs' : ['t', '\tau'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['y', '\psi'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['u', '\upsilon'], 'wrapper' : 's:wrap_math'}, + \ { 'lhs_rhs' : ['v', '\vartheta'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['w', '\omega'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['z', '\zeta'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['x', '\xi'], 'wrapper' : 's:wrap_math'},