有没有办法得到类似的东西
vnoremap <F3> :call Surround("prfx_", "_psfx")<Enter>
function! Surround(prefix, postfix)
" get the selection
let selection = @*
" remove selected text
normal gv"xx
" inserting text with prefix and postfix
execute "normal i" . a:prefix . selection . a:postfix
endfunction
在 Spacemacs 中?我的 .vimrc 中有这个,在处理 .org 文件时拥有相同的功能会非常方便。这是我需要学习在 Elisp 中实现的东西吗?