How can I create a shortcut to open a terminal and launch vim (terminal version, not gvim) ?

link|improve this question
feedback

migrated from stackoverflow.com Mar 23 '11 at 13:58

This question came from our site for professional and enthusiast programmers.

4 Answers

up vote 1 down vote accepted

Create a shortcut with gnome-terminal -e vim as the target.

link|improve this answer
feedback

Look up in the options of your favourite terminal and see which allows you to run a given program. Using xterm:

xterm -e vim

assuming that vim is in you $PATH.

link|improve this answer
feedback

I recommend a keyboard shortcut then typing vi or vim in when terminal opens: Bind terminal to a key combination

link|improve this answer
feedback

using an alias e.g.

alias tvim="gnome-terminal -e vim"

if you use gnome-terminal obviously

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.