vote up 2 vote down star

Is there a single shortcut to start inserting in the new line at end of the file? I'm aware of G + o combo.

flag

4 Answers

vote up 1 vote down check

There's also the command line option "+":

vim + myfile.txt

Will open myfile.txt and do an automatic G for you.

link|flag
vote up 1 vote down

Not that I know of - G + o is what I would have suggested too, but that is 2 steps :)

You could always create a macro which does G + o, and then you can invoke the macro which will be 1 step.

link|flag
vote up 7 vote down

Adding the following into ~/.vimrc will create one for you:

:nmap ^A Go

To type the "^A" first press Ctrl-V, then press Ctrl-A. You can then use Ctrl-A to append at the end of the file when not in insert or visual mode.

link|flag
Note that this overrides the default behavior of ^A, which is to increment the number or character under the cursor intelligently. – Zathrus Nov 6 '08 at 19:49
vote up 0 vote down

You could stick the map definition in your .vimrc and then invoke it when the you open the file.

Or, if you only want to do this for a particular file, you could create an autocmd for that file type that does it automatically. See autocommand in the vim doc's.

HTH

cheers,

Rob

link|flag

Your Answer

Get an OpenID
or

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