From before:
�function! SadeAppend()
normal! `>
if 'g:sade#Repeating'
normal! .
else
call feedkeys("�\<esc>a", 'n')
endif
endfunction
function! SadeInsert()
normal! `<
if 'g:sade#Repeating'
normal! .
else
call feedkeys("�\<esc>i", 'n')
endif
endfunction
call sade#Func('(', 'SadeInsert')
call sade#Func(')', 'SadeAppend')
When I press the dot operator it performs the last insert operation at the current location without calling the function.
From before:
When I press the dot operator it performs the last insert operation at the current location without calling the function.