作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Vim 中编辑文件是我记录终端命令行以及我所做的事情的描述。
我所有的命令行都以 $ 开头,所以我的文件如下所示:
This is a description of what this
command does, it can be quite long and
should have line breaks.
$ ./the_command.sh
au CursorMovedI *.viki call SetTextWidth()
function! SetTextWidth()
if getline(".")=~'^\$'
set textwidth=1000
else
set textwidth=80
endif
endfunction
最佳答案
我收集当你说你想要“硬换行”时,你的意思是你想让 Vim 自动换行,当它到达 textwidth 列时。我认为,最好的方法是定义一个“au”命令,当它位于以“$”开头的行上时,将 textwidth 设置为一个较高的数字(高于可能的最长行)。
因此,每当您在一行上进入或退出插入模式时,这样的事情都会改变 textwidth :
au InsertEnter call SetTextWidth()
au InsertLeave call SetTextWidth()
function! SetTextWidth()
if getline(line('.')) =~ '^\$'
" [edit: 'set textwidth = 0' is preferable to line below]
set textwidth =1000
else
set textwidth=78
endif
endfunction
au InsertEnter exec "set tw=" . getline(line('.'))=~'^\$' ? 1000 : 78
au InsertLeave exec "set tw=" . getline(line('.'))=~'^\$' ? 1000 : 78
关于vim - 如何在 Vim 中为换行符定义异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4144160/
我是一名优秀的程序员,十分优秀!