gpt4 book ai didi

vim - 如何让 Vim 中的波浪号运算符将 ‘==’ 更改为 ‘!=’?

转载 作者:行者123 更新时间:2023-12-03 20:37:47 27 4
gpt4 key购买 nike

我想要正常模式命令波浪号 ~ ,除了改变字母的大小写,还可以改变文字 ==!=!=== .

我发现我经常这样做,我想要一个仍然使用波浪号的快捷方式。

最佳答案

这在 vimscript 中相当简单。
将以下内容添加到您的 .vimrcsource此代码来自不同的文件。

" ----------------------
" Tilde switches ==/!=
" ----------------------
function! TildeSwitch()
" Gets the pair of characters under the cursor, before and behind.
let cur_pair = getline(".")[col(".") - 2 : col(".") - 1]
let next_pair = getline(".")[col(".") - 1 : col(".")]

if cur_pair == "=="
normal! "_ch!
normal! l
elseif next_pair == "=="
normal! r!
elseif cur_pair == "!="
normal! "_ch=
normal! l
elseif next_pair == "!="
normal! r=
else
" If == and != are not found, simply use the regular tilde.
normal! ~
endif
endfunction

nnoremap <silent> ~ :silent call TildeSwitch()<cr>

关于vim - 如何让 Vim 中的波浪号运算符将 ‘==’ 更改为 ‘!=’?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14691620/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com