从 SELECTION 模式 (VSCode, Vim) 中选择活动切换到 INSERT 模式
Switch to INSERT mode with active selection from SELECTION mode (VSCode, Vim)
是否有可能在 Vim 的 selection 模式下 select 某些内容,然后切换到输入模式且文本仍然 selected?
当使用 VSCode 时,您可以 select 文本并按 <
,它会自动用 <
和 [=14= 包围 selection ].但是当我使用Vim的select离子模式时,VSCode的功能不起作用。
vscodevim:
在视觉选择中,ys"
将添加引号。
https://github.com/VSCodeVim/Vim#vim-surround
IdeaVim:
Use surround emulated plugin
put set surround
into your ~/.ideavimrc
select something with visual mode and press S"
to surround with "
我测试了 IdeaVim 插件,但没有测试 vscode。
是否有可能在 Vim 的 selection 模式下 select 某些内容,然后切换到输入模式且文本仍然 selected?
当使用 VSCode 时,您可以 select 文本并按 <
,它会自动用 <
和 [=14= 包围 selection ].但是当我使用Vim的select离子模式时,VSCode的功能不起作用。
vscodevim:
在视觉选择中,ys"
将添加引号。
https://github.com/VSCodeVim/Vim#vim-surround
IdeaVim:
Use surround emulated plugin put
set surround
into your~/.ideavimrc
select something with visual mode and pressS"
to surround with"
我测试了 IdeaVim 插件,但没有测试 vscode。