有现代模型文本编辑器吗?
Is there a modern model text editor ?
我用过 VSCode、Sublime 和 Atom,但我听说过一个只能使用键盘的编辑器 - Vim。当我安装它时,我很震惊。它是一个命令行编辑器。有模态代码编辑器吗,那是一个视觉效果很好的程序(不是命令行文本编辑器)
Vim 有两种形式:作为在终端中运行的命令行应用程序,以及使用 gvim
、vim -g
甚至从内部启动的 GUI 版本终端 Vim 通过 :gui
.
"graphical" GVIM 看起来仍然很像终端版本,但您可以获得更多可用颜色、额外的突出显示属性(如 undercurl)以及更多要映射的键。这个想法是两者可以互换使用并提供相似的功能。 CP。 :help design-not
:
- Vim is not a fancy GUI editor that tries to look nice at the cost of
being less consistent over all platforms. But functional GUI features are
welcomed.
备选方案
有 neovim, a modern drop-in replacement, as well as some other vi clones. Emacs supports mode-based editing via the Evil mode.
我用过 VSCode、Sublime 和 Atom,但我听说过一个只能使用键盘的编辑器 - Vim。当我安装它时,我很震惊。它是一个命令行编辑器。有模态代码编辑器吗,那是一个视觉效果很好的程序(不是命令行文本编辑器)
Vim 有两种形式:作为在终端中运行的命令行应用程序,以及使用 gvim
、vim -g
甚至从内部启动的 GUI 版本终端 Vim 通过 :gui
.
"graphical" GVIM 看起来仍然很像终端版本,但您可以获得更多可用颜色、额外的突出显示属性(如 undercurl)以及更多要映射的键。这个想法是两者可以互换使用并提供相似的功能。 CP。 :help design-not
:
- Vim is not a fancy GUI editor that tries to look nice at the cost of being less consistent over all platforms. But functional GUI features are welcomed.
备选方案
有 neovim, a modern drop-in replacement, as well as some other vi clones. Emacs supports mode-based editing via the Evil mode.