1
0

9 lines
109 B
VimL
Raw Permalink Normal View History

2019-06-15 15:31:01 -06:00
command! E %s/[a-zA-Z]/e/g
command! EE call E()
function! E()
while 1
echo "e"
endwhile
endfunction