在VIM宏中,如何处理条件操作?
if condition is true
do this
else
do something else
文件内容:
_
abcdefg
宏会做:
G^
if letter is one of the following letters: a e i o u
gg$i0<ESC>
else
gg$i1<ESC>
Gx
重复7次缓冲区:
_0111011
那么,我如何验证条件是否为真,然后运行一个动作?
答案 0 :(得分:7)
因为没有&#34;有条件的&#34;在Vim中的命令,这不能严格地用宏来完成。您只能使用以下事实:当宏中的命令发出蜂鸣声时,宏重播将中止。递归宏使用此事实来停止迭代(例如,当j
命令无法移动到缓冲区末尾的后续行时)。
另一方面,Vimscript中的条件逻辑非常简单,宏可以轻松地:call
任何Vimscript函数。
你的例子可以这样表达:
function! Macro()
" Get current letter.
normal! yl
if @" =~# '[aeiou]'
execute "normal! gg$i0\<ESC>"
else
execute "normal! gg$i1\<ESC>"
endif
endfunction
答案 1 :(得分:2)
一种解决方案是采用更具功能性(而非命令性)的方法,例如:这个特殊的任务(和many others)可以用替换来完成:
G:s/\v([aeiou])|./\=strlen(submatch(1)) ? 1 : 0/g<CR>gggJ
即:
G " go to the first non-blank character on the last line
" replace each vowel with 1 and everything else with 0
:s/\v([aeiou])|./\=strlen(submatch(1)) ? 1 : 0/g<CR>
gg " go to the first line
gJ " and append the line below
根据任务的不同,您可能会发现插件(例如abolish.vim)以比放入vimscript更方便的方式打包逻辑。
另一种方法是使用here所述的:global
,再次将任何其他逻辑移动到方便/必要的命令中。如果要处理的文本不是:g
的正确格式(基于行),则可以将其拆分为行,使用:g
进行操作,然后重新组合/恢复
您还可以将一系列非重叠命令与|
(:help :bar
)捆绑在一起,以近似if/else
链,例如转换:
DMY: 09/10/2011 to 10/11/2012
DMY: 13/12/2011
MDY: 10/09/2011 to 11/10/2012
MDY: 12/13/2011
为:
DMY: 2011-10-09 to 2012-11-10
DMY: 2011-12-13
MDY: 2011-10-09 to 2012-11-10
MDY: 2011-12-13
为了清晰起见而格式化(对于:execute
用法,请参阅here):
:exe 'g/^DMY:/s/\v(\d\d)\D(\d\d)\D(\d{4})/\3-\2-\1/g' |
g/^MDY:/s/\v(\d\d)\D(\d\d)\D(\d{4})/\3-\1-\2/g