From 1e29dd842514294795506e0353b819536ce05ef5 Mon Sep 17 00:00:00 2001 From: cxykevin Date: Tue, 27 Aug 2024 20:15:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4vim=E7=9A=84=E9=AB=98?= =?UTF-8?q?=E4=BA=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shell_and_shell_script/vim_editor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell_and_shell_script/vim_editor.md b/src/shell_and_shell_script/vim_editor.md index 035162b..86d3fbc 100644 --- a/src/shell_and_shell_script/vim_editor.md +++ b/src/shell_and_shell_script/vim_editor.md @@ -153,7 +153,7 @@ Vim 有一个最基本的东西“模式”,在不同模式下,快捷键的 在使用 Vim 的过程中,假如我们需要调试一个 Shell,那么我们就需要退出 Vim,启动脚本,再打开 Vim,十分的麻烦。不过 Vim 提供了一个命令 `:!` 来让我们快速运行一行命令。 -```vim +```text :! [要执行的命令] ```