怎么在vim中用xshell命令
时间: 2024-01-21 07:18:42 浏览: 130
linux基本命令vim文件等等
在vim编辑器中,你可以使用以下命令来运行xshell命令:
```
:!xshell [command]
```
其中,`[command]` 是你要执行的xshell命令。例如,要在vim中使用xshell连接到远程服务器,你可以输入以下命令:
```
:!xshell -newtab user@remote_server_ip
```
这将在xshell中打开一个新选项卡,并连接到远程服务器。请注意,在vim中使用 `!` 可以执行外部命令。
阅读全文