我写了一个vim函数来打印我选中的几行文字并进行快捷键映射,代码如下:
function! EchoVisual()
let st= getpos("'<")[1]
let ed= getpos("'>")[1]
execute '!sed -n '.st.','.ed.'p '.expand('%:p')
endfunction
vmap <leader>e :call EchoVisual()<CR>
但是在实际执行的时候,每次我按<leader>e
时EchoVisual函数会重复执行n次,n的大小同我选择的行数是一样的,请问这是什么问题呢?该如何解决呢?
漂亮男人2017-05-16 16:44:01
现在知道了
command! -range=% EchoVisual :!sed -n <line1>,<line2>p %:p
vmap <leader>e :EchoVisual<CR>
阿神2017-05-16 16:44:01
command! -range=% EchoVisual :<line1>,<line2>p | echo expand('%:p')
vmap <leader>e :EchoVisual<CR>
如何?