如何在 vim 中从插入模式切换到替换/改写模式

如何在 vim 中从插入模式切换到替换/改写模式

如何在 vim 中从插入模式切换到替换/改写模式?在 windows/*nix 中,我只需按两次插入键 (command->insert->replace),但不幸的是,我现在被困在无法识别插入键的 mac 上。

答案1

您可以映射一个组合键来在插入模式下执行“Insert”键的作用。

例如,使用 Control-T:

:inoremap <C-T> <Ins>

相关内容