| > don't give up Yes. All the tutos I have read recently insist on using hjkl, which is a matter of taste, but do not emphasize what I believe is the most important (for terminal use): cut and paste. - Easy cut and paste in Vim is done with yy and p, avoid mouse and ctrl-c/v or any other trick that is not "inside" Vim. - Good trick are to first select a block with <shift-V>. - Don't forget P, which is pasting above current line or before cursor, often more logical than p. - This implies to open different files inside the same Vim instance, using :Explore or :edit - If you have to copy some outside text inside Vim, by all means, use the paste mode (:set paste), if you don't you'll mess up your text. |