vim132
来自「MSYS在windows下模拟了一个类unix的终端」· 代码 · 共 14 行
TXT
14 行
#!/bin/csh## Shell script for use with UNIX# Starts up Vim with the terminal in 132 column mode# Only works on VT-100 terminals and lookalikes# You need to have a termcap entry "vt100-w". Same as vt100 but 132 columns.#set oldterm=$termecho "[?3h"setenv TERM vt100-wvim $*set term=$oldtermecho "[?3l"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?