Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在正常模式下,我键入以下内容时,将选择分配的左侧:
^v/=
这种行为并没有在看似等效的映射中复制:
onoremap lhs :<c-u>execute "normal! ^v/="
工作上有什么不同?
您实际上还没有结束搜索(按Enter);要在映射中实现相同的效果,请附加<CR>(或仅使用该f命令进行单字符搜索):
<CR>
f
onoremap lhs :<c-u>execute "normal! ^v/=\<CR>"