I'm editing a file, part of which looks like:
The quick brown fox jumped over the lazy dog.
^
With the cursor under the "q". In normal mode, I want to type ">" to obtain
The quick brown fox jumped over the lazy dog.
^
That is, I want the cursor to jump to the end of the line. If I add the line
nmap > $
To my .vimrc file, the effect of typing ">" becomes
The quick brown fox jumped over the lazy dog.
^
That is, ">" now sends the cursor to the beginning of the line after the line I'm on. In command mode, if I type
:nmap > $
The behavior is as desired; that is, from "q" the cursor jumps to the following:
The quick brown fox jumped over the lazy dog.
^
Not sure how much it matters, but I'm using MacVim with the latex-suite package running, using Mac OS X version 10.8.4.