全部博文(236)
分类: LINUX
2022-01-09 08:10:26
关于 函数function
可以调用别的函数
还可以执行表达式
这样就可以把一系列的操作封装到一个函数里面
也可以 :command TOhtml 查询指定的命令
:command DeleteFirst :1delete
执行命令
:command Delete5Lines :.,+5delete
:Delete5Lines
:command! Delete5Lines :.,+4delete
:Delete5Lines
:normal '
command RestoreSelection :normal '
normal '
尝试恢复选区
:call Init()
:command Init :call Init()
:Init
:command Init
明确指定0个参数
:command -nargs=1 Say :echo "
:Say oeasy say easy
想在字符串里面使用引号的话
实验函数
定义命令
执行命令
但是不能执行
重新定义命令
function! Comment(line1, line2) execute a:line1.','.a:line2.'s/^/#/' endfunction command! -range=% Comment call Comment(, )
:delcommand SaveIt
:comclear
命令可以带上