vote up 1 vote down star

My default editor is pico at my server. I use Bash and Linux.

I tried to change Vim to be my default editor unsuccessfully by

echo vim > $EDITOR

How can I change Vim my default editor?

[edit]

The following code does not work in .bashrc

export EDITOR='vim'
flag

What unix/linux are you using, and specifically what shell? Bash, csh, other? – Zoredache Mar 15 at 1:26
@Zoredache: Bash and Linux. – Masi Mar 15 at 2:02
do you have vim installed? and if so is it on your PATH? – Neil Butterworth Mar 24 at 16:02
@Neil: I have Vim installed. It is apparently also in my PATH, since I can start vim by the command vim in Terminal. – Masi Mar 24 at 18:13

3 Answers

vote up 3 vote down check

Adding

export EDITOR=vim

to your .bashrc should really do the trick. (There a no quotes necessary and, depending on what quotes you used, they may be the cause for your problem.)

You must open a new shell (or enter source .bashrc at the prompt) after modifying .bashrc for the modification to take effect.

What is the program from which you want vim to be started?

EDIT: I haven't used git, but the documentation (http://www.kernel.org/pub/software/scm/git/docs/git-commit.html) reads ``The editor used to edit the commit log message will be chosen from the GIT_EDITOR environment variable, the core.editor configuration variable, the VISUAL environment variable, or the EDITOR environment variable (in that order).''

So check whether one of these variables is set:

echo $GIT_EDITOR $VISUAL $EDITOR
git config --get-all core.editor

For me,

export VISUAL=vim

solved the problem.

link|flag
@Jochen: The above command does not work. The program is Git from which I want vim to be started. – Masi Mar 24 at 16:00
Just out of curiosity: Did using the VISUAL environment variable solve your problem? – Jochen Walter Apr 1 at 7:53
echo $GIT_EDITOR $VISUAL $EDITOR gives me pico pico. How can I change these variables? – Masi Apr 6 at 18:17
You can change them with export GIT_EDITOR=vim export VISUAL=vim export EDITOR=vim (If the variable are already exported, you can omit the ``export´´). – Jochen Walter Apr 7 at 7:13
vote up 1 vote down

I don't have an EDITOR environmental variable. Perhaps you could specify your distribution? My bashrc does define this:

alias vi='vim'

and supposedly if vim can't find a file called .vimrc in your home directory it runs in "compatibility mode" and you only get vi features until you say type ":nocp"

If it is based on your EDITOR environmental variable you would set it like this in BASH:

export EDITOR='vim'

link|flag
vote up 1 vote down

export EDITOR vim

should do the job

link|flag
Your command does not work. I tried it also with $EDITOR unsuccessfully. – Masi Mar 15 at 0:59
It has to be: EDITOR=vim export EDITOR or if you use bash just export EDITOR=vim – njsf Mar 15 at 1:19

Your Answer

Get an OpenID
or

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