Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的设置.vimrc是
.vimrc
set textwidth=79
但是,这也会影响 BASH 提示,因为我使用的是 vi 编辑模式。
有没有办法为 bash 独立设置它?
如果没有,是否可以选择在第 79 列的右侧以某种方式显示标尺?
仅为文件设置textwidth应该做你想要的。换行
textwidth
进入这个:
if has("autocmd") autocmd FileType * set textwidth=79 endif