Quote:
Originally Posted by Tom.P
I'm getting this, when trying to write something:
Code:
E353: Nothing in register "
What can i do?
|
Nice to see that it seems to be working as intended;-) This is a typical vi error message. I guess that you typed either 'p' or 'P' while not in insert mode, which in this case is the 'paste' command. And since you haven't 'yanked' (i.e. copied) text yet vi hasn't anything to paste, so you get that error message. If you want to type in text you first have to switch to insert mode by typing e.g. 'i'. To get out of insert mode again press <Esc>.
Best regards, Jens