We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
终端 Vim 改变光标在不同模式下的样式
:h termcap-cursor-shape
let &t_SI = "\<Esc>[5 q" let &t_SR = "\<Esc>[3 q" let &t_EI = "\<Esc>[1 q" " 1 -> blinking block " 2 -> solid block " 3 -> blinking underscore " 4 -> solid underscore " 5 -> blinking vertical bar " 6 -> solid vertical bar
出现类似>4;m、>4;2m的异常字符
>4;m
>4;2m
:h map.txt
:h modifyOtherKeys
let &t_TI = "" let &t_TE = ""
Vim 支持终端真彩,但可能需要一些额外配置
:h term.txt
:h xterm-true-color
:h tmux-integration
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" set termguicolors
The text was updated successfully, but these errors were encountered:
Add relevant Vim Help tip for #4
Vim Help
010e6ec
No branches or pull requests
终端 Vim 改变光标在不同模式下的样式
:h termcap-cursor-shape
出现类似
>4;m
、>4;2m
的异常字符:h map.txt
&:h modifyOtherKeys
Vim 支持终端真彩,但可能需要一些额外配置
:h term.txt
&:h xterm-true-color
&:h tmux-integration
The text was updated successfully, but these errors were encountered: