作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您可以将光标线保持在屏幕中间,然后通过将 scrolloff 设置为一个非常大的数字来让文本在其下方滚动。前任:
:let &scrolloff = 999
:help scrolloff
" SCROLLFIX SHORTCUTS
function! ToggleMyScrollFix()
if ( g:scrollfix == 5 )
let g:scrollfix = 50
elseif ( g:scrollfix == 50 )
let g:scrollfix = 95
elseif ( g:scrollfix == 95 )
let g:scrollfix = 5
else
let g:scrollfix = 50
endif
endfunction
nnoremap <silent> zz :call ToggleMyScrollFix()<CR>lh
最佳答案
查看 scrollfix plugin .我几年前使用过它,所以我不知道它是否仍然适用于 Vim 的最新快照——但最坏的情况是,它应该给你一个很好的开始修改它以适合你。
关于scripting - 如何 : assign vim cursor to a certain line in the window and have the text scroll underneath that cursor position?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1179529/
我是一名优秀的程序员,十分优秀!