up vote 2 down vote favorite
share [g+] share [fb]

I've a file that was exported from Word and it replaced all quotes with strange unicode characters which aren't correctly displayed in vim. So now I want those characters to be replaced with quotes, but I don't know how to enter this character in

:%s/???/'/g

The characters look like this: ~U ~R. But of course I can't just mark them with mouse and paste in the command.

link|improve this question

60% accept rate
not programming related, belongs on superuser.com . – ax. May 9 '10 at 17:36
2  
feedback

2 Answers

up vote 4 down vote accepted

You can try setting the encoding type and see if it fixes the visalizations of those characters:

:set encoding=utf-8

then you can use them directly. Alternatively, you can place your cursor on the unprintable character and hit ga, it will show the decimal/hex/octal code of that character, then you can substitute it with:

:%s/\%xYY/substitute/g

where YY is the hex code of the char, if it's multibyte:

:%s/\%uYYYY/substitute/g

for details:

:help character-classes
link|improve this answer
feedback

I usually:

  1. delete the character with: x
  2. undo my change with: u
  3. do the substitute thanks to *c_CTRL-R*: :%s/^R"/'/g
link|improve this answer
1  
Equivalently, you can also do y followed by space instead of xu, but whichever works for you. – DrAl May 10 '10 at 10:08
Thanks Al! I've always wondered how to do this without a vy or a xu – Luc Hermitte May 10 '10 at 11:04
Also yl (l is for letter). And also y<right>, but that one is kind of awkward. – Brian Carper May 10 '10 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.