On Tue, Jun 27, 2006 at 04:23:36PM -0700, Mike Li wrote: > in normal mode, ';' and ',' are not working to repeat the last till > commands (i.e. 't' and 'T'), though they do seem to work for find > commands (i.e. 'f' and 'F'). i see this for both the win32 vim7 > binaries and FC5 builds from vim7 svn source. > > -x
If, in Normal mode, you type tx;;;; then (assuming there is an "x" in the current line) the "tx" part will take you to the position before the "x" and the later ";" commands will leave you there. This is by design. If, instead, you type txl;l; then each "l" (lower case L, not number 1) will move you onto the "x" and the ";" will take you to the characte before the next one. HTH --Benji Fisher