Vim相当于“tr”命令

时间:2014-09-04 12:18:16

标签: vim

有这样一句话:

xxAyayyBwedCdweDmdwCkDwedBAwe
;;;; cleaner example
__A__B__C__D__C_D_BA_

希望将ABCD替换为PQRT,例如得到

__P__Q__R__T__R_T_QP_

例如下一个bash或perl的tr

的等价
tr '[ABCD]' '[PQRT]' <<<"$string"

如何在“vim”中执行此操作? (VIM - Vi IMproved 7.4(2013年8月10日,编译于2014年5月9日12:12:40))

1 个答案:

答案 0 :(得分:9)

您可以将tr()功能与:global

结合使用
:g/./call setline(line('.'), tr(getline('.'), 'ABCD', 'PQRS'))

很容易使其适应:%Tr#ABCD#PQRS命令。

:command! -nargs=1 -range=1 Translate <line1>,<line2>call s:Translate(<f-args>)

function! s:Translate(repl_arg) range abort
  let sep = a:repl_arg[0]
  let fields = split(a:repl_arg, sep)
  " build the action to execute
  let cmd = a:firstline . ',' . a:lastline . 'g'.sep.'.'.sep
        \. 'call setline(".", tr(getline("."), '.string(fields[0]).','.string(fields[1]).'))'
  " echom cmd
  " and run it
  exe cmd
endfunction