Added i->\iota and v->\vartheta (#277)

This commit is contained in:
Karl Yngve Lervåg 2015-12-11 08:40:49 +01:00
parent e9f2cd4067
commit 6888c3c9bf

View File

@ -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' : ['qH', '\Rightarrow'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['qH', '\Rightarrow'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['P', '\Product'], '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' : ['a', '\alpha'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['b', '\beta'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['b', '\beta'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['c', '\chi'], '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' : ['f', '\varphi'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['g', '\gamma'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['g', '\gamma'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['h', '\eta'], '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' : ['k', '\kappa'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['l', '\lambda'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['l', '\lambda'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['m', '\mu'], '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' : ['t', '\tau'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['y', '\psi'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['y', '\psi'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['u', '\upsilon'], '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' : ['w', '\omega'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['z', '\zeta'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['z', '\zeta'], 'wrapper' : 's:wrap_math'},
\ { 'lhs_rhs' : ['x', '\xi'], 'wrapper' : 's:wrap_math'}, \ { 'lhs_rhs' : ['x', '\xi'], 'wrapper' : 's:wrap_math'},