在这个答案中,我面对的是实际函数名称之前和之后的CTRL-U
in函数调用:
。
:nnoremap <buffer> <cr> :<C-U>call append('.', repeat([''],v:count1))<cr>
这是帮助的内容:
CTRL-U Scroll window Upwards in the buffer. The number of
lines comes from the scroll option (default: half a
screen). If [count] given, first set the 'scroll'
option to [count].
我自己尝试过,它按我的预期工作。但是我不太了解有关该scroll
选项的部分。他们是什么意思'scroll' option
?
而且它在插入模式下还会做一些奇怪的事情。据我了解,它删除了从光标到该行开头的所有内容,然后将结果行与上面的行连接起来。