History
Article Edit this page Discussion

Repeating a substitute from current cursor position

From Vim Tips Wiki

(Redirected from VimTip573)
Jump to: navigation, search

Tip 573 Previous Next Created: October 3, 2003 Complexity: intermediate Author: Charles E. Campbell, Jr. Version: 6.0


The :RS /pattern/subpattern/{flags} command+function as shown below allows one to repeat a RS-substitute after the current cursor position.

For example:

" The cursor position is indicated with '^' on next line.
one two three one two three one two three
 ^

:RS /two/TWO/
one TWO three one two three one two three
       ^

move cursor:
one TWO three one two three one two three
                      ^

(I think tip author intended to repeat :RS here?)

cursor ends up:
one TWO three one two three one TWO three

Put the following into your vimrc if you'd like to be able to do this.

" RS: repeat substitution command
com! -range -nargs=* RS call RepeatSubst(<q-args>)
" RepatSubst:
fun! RepeatSubst(subexpr)
  if a:subexpr != ""
    let g:repeatsubst= a:subexpr
  endif
  let curcol= col(".")
  let sep = strpart(g:repeatsubst,0,1)
  let pat = substitute(g:repeatsubst,'^.\(.\{-}\)'.sep.'.*$','\1','')
  s/\%#./\r&/
  let curcol= curcol + matchend(getline("."),pat)
  exe "s".g:repeatsubst
  norm! k
  j!
  exe 'norm! '.curcol.'|'
endfun

[edit] Comments

Rate this article:

Share this article:

Hubs Highlights International Sites Wikia messages
Entertainment
Gaming
Cartoons & Comics
Science Fiction
Hobbies
Sports
See all...
Grand Theft Auto Wiki
Doctor Who
Legend of Zelda Wiki
Terminator Wiki
Everquest II Wiki
Mystery Science Theater 3000
German
Spanish
Chinese
Japanese
More...
Wikia is hiring for several open positions
Send this article to a friend
"Repeating a substitute from current cursor position"
 
 
Hi!

I thought you'd like this page from Wikia!

http://vim.wikia.com

Come check it out!
Send confirmation