From c2011d43b02f6d4f90e1b986347022e6ab61a5ea Mon Sep 17 00:00:00 2001 From: Kevin Johnson Date: Fri, 17 Apr 2015 23:00:31 -0700 Subject: [PATCH] fix respect_direction inconsistent naming --- plugin/EasyMotion.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index 82c8e8b..096cc4e 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -173,11 +173,11 @@ call s:motion_map_helper({ " -- Search Motion {{{ call s:motion_map_helper({ - \ 'n' : {'fnc' : 'Search', 'direction': 0, 'respectdirection': 0}, - \ 'N' : {'fnc' : 'Search', 'direction': 1, 'respectdirection': 0}, - \ 'bd-n' : {'fnc' : 'Search', 'direction': 2, 'respectdirection': 0}, - \ 'vim-n' : {'fnc' : 'Search', 'direction': 0, 'respectdirection': 1}, - \ 'vim-N' : {'fnc' : 'Search', 'direction': 1, 'respectdirection': 1}, + \ 'n' : {'fnc' : 'Search', 'direction': 0, 'respect_direction': 0}, + \ 'N' : {'fnc' : 'Search', 'direction': 1, 'respect_direction': 0}, + \ 'bd-n' : {'fnc' : 'Search', 'direction': 2, 'respect_direction': 0}, + \ 'vim-n' : {'fnc' : 'Search', 'direction': 0, 'respect_direction': 1}, + \ 'vim-N' : {'fnc' : 'Search', 'direction': 1, 'respect_direction': 1}, \ }) "}}}