fix respect_direction inconsistent naming

This commit is contained in:
Kevin Johnson 2015-04-17 23:00:31 -07:00
parent 2ddc73453b
commit c2011d43b0

View File

@ -173,11 +173,11 @@ call s:motion_map_helper({
" -- Search Motion {{{ " -- Search Motion {{{
call s:motion_map_helper({ call s:motion_map_helper({
\ 'n' : {'fnc' : 'Search', 'direction': 0, 'respectdirection': 0}, \ 'n' : {'fnc' : 'Search', 'direction': 0, 'respect_direction': 0},
\ 'N' : {'fnc' : 'Search', 'direction': 1, 'respectdirection': 0}, \ 'N' : {'fnc' : 'Search', 'direction': 1, 'respect_direction': 0},
\ 'bd-n' : {'fnc' : 'Search', 'direction': 2, 'respectdirection': 0}, \ 'bd-n' : {'fnc' : 'Search', 'direction': 2, 'respect_direction': 0},
\ 'vim-n' : {'fnc' : 'Search', 'direction': 0, 'respectdirection': 1}, \ 'vim-n' : {'fnc' : 'Search', 'direction': 0, 'respect_direction': 1},
\ 'vim-N' : {'fnc' : 'Search', 'direction': 1, 'respectdirection': 1}, \ 'vim-N' : {'fnc' : 'Search', 'direction': 1, 'respect_direction': 1},
\ }) \ })
"}}} "}}}