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

I set up this mapping in my .vimrc and it works great...

" Auto indent entire file
nmap <C-f> gg=G
imap <C-f> <ESC>gg=G

However, after the operation the cursor has moved to line 1, column 1.

Is there a way to do it so that if I'm in the middle of the file somewhere the cursor will remain where it is?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Sure, use marks (:help mark):

nmap <C-f> mtgg=G't
imap <C-f> <ESC><C-f>

Before executing gg=G, the current cursor position is saved to mark t. After the operation, 't jumps back to the mark.

link|improve this answer
Or more elegant, :nnoremap <c-f> 1G=G``. – ib. Dec 6 '11 at 11:32
feedback

Ctrl+O is good for walking back through the jump list. '' will move you back to the last line in the jump list (or `` to go back to the last line and column).

Unfortunately, there isn't an "entire buffer" text object, so gg=G requires moving back two places in the jump list.

link|improve this answer
Then just use 1G=G``! – ib. Dec 6 '11 at 11:32
feedback

Brian's solution above will work for a macro, but as a good tip, note that Ctrl+O will go to the previous cursor position in the jump list. So if you ever do an operation that moves away, you can step back to a previous position.

link|improve this answer
feedback

Why not use ma to mark the current position in buffer a, and after the transformation use `a (i.e. backtick + a) to return to that position ? Here's an article on using marks to move around.

link|improve this answer
The regular quote character ' also works and is easier to type than the backtick – Wim Coenen Oct 29 '09 at 22:18
1  
Using ' to return to a mark only brings you back to the line of the mark. ` will bring you back to the line and column of the mark. – jamessan Oct 29 '09 at 22:20
feedback

As jamessan wrote, Ctrl+o jumps back to the last posistion in the jumplist. After calling gg=G, this has to be called twice.

Thus, you can use a mapping without marks:

map <silent> <C-f> gg=G<C-o><C-o>
imap <silent> <C-f> <Esc> gg=G<C-o><C-o>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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