From 98370fa86fc34625533b58195cc2987d1f8e18e1 Mon Sep 17 00:00:00 2001 From: Ben Reilly Date: Tue, 3 Nov 2015 11:19:27 -0800 Subject: Changed from comma prefix (,w) to mapleader (w). --- plugin/camelcasemotion.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugin/camelcasemotion.vim') diff --git a/plugin/camelcasemotion.vim b/plugin/camelcasemotion.vim index fd5e341..5a53ad8 100644 --- a/plugin/camelcasemotion.vim +++ b/plugin/camelcasemotion.vim @@ -159,7 +159,7 @@ function! s:CreateMotionMappings() let l:targetMapping = 'CamelCaseMotion_' . l:motion execute l:mode . 'noremap ' . l:targetMapping . ' :call camelcasemotion#Motion(''' . l:motion . ''',v:count1,''' . l:mode . ''')' if ! hasmapto(l:targetMapping, l:mode) - execute (l:mode ==# 'v' ? 'x' : l:mode) . 'map ,' . l:motion . ' ' . l:targetMapping + execute (l:mode ==# 'v' ? 'x' : l:mode) . 'map ' . l:motion . ' ' . l:targetMapping endif endfor endfor @@ -189,7 +189,7 @@ function! s:CreateInnerMotionMappings() let l:targetMapping = 'CamelCaseMotion_i' . l:motion execute l:mode . 'noremap ' . l:targetMapping . ' :call camelcasemotion#InnerMotion(''' . l:motion . ''',v:count1)' if ! hasmapto(l:targetMapping, l:mode) - execute (l:mode ==# 'v' ? 'x' : l:mode) . 'map i,' . l:motion . ' ' . l:targetMapping + execute (l:mode ==# 'v' ? 'x' : l:mode) . 'map i' . l:motion . ' ' . l:targetMapping endif endfor endfor -- cgit v1.1