Qual é a diferença entre .exrc e .vimrc?


13

Sei por experiência própria que o arquivo ~ / .exrc pode ser usado para configurar vim. Sei também que o arquivo ~ / .vimrc pode ser usado para a mesma finalidade.

No entanto, se eu usar .exrc para configurar vim, isso causará problemas nos sistemas em que viestá instalado e não vim. Ou seja, vimsuporta recursos extras que vinão; e quando você tenta usá-los vi, vireclama.

Minhas perguntas são:

  1. Qual é a diferença entre .exrc e .vimrc?
  2. Se ambos estão presentes, então ambos são usados?
  3. É uma má prática usar o arquivo .exrc para configurar vim?

Respostas:


14
  1. .exrc é o arquivo de configuração vi, enquanto .vimrc é o arquivo de configuração devim

  2. Não. O Vim usará o arquivo .vimrc, se presente, caso contrário, o arquivo .exrc, se presente

  3. Sim, a menos que você insira apenas comandos compatíveis com vi

Na ajuda do Vim no exrc:

 c. Four places are searched for initializations.  The first that exists
is used, the others are ignored.  The $MYVIMRC environment variable is
set to the file that was first found, unless $MYVIMRC was already set
and when using VIMINIT.
-  The environment variable VIMINIT (see also |compatible-default|) (*)
   The value of $VIMINIT is used as an Ex command line.
-  The user vimrc file(s):
        "$HOME/.vimrc"     (for Unix and OS/2) (*)
        "$HOME/.vim/vimrc"     (for Unix and OS/2) (*)
        "s:.vimrc"         (for Amiga) (*)
        "home:.vimrc"      (for Amiga) (*)
        "home:vimfiles:vimrc"  (for Amiga) (*)
        "$VIM/.vimrc"      (for OS/2 and Amiga) (*)
        "$HOME/_vimrc"     (for MS-DOS and Win32) (*)
        "$HOME/vimfiles/vimrc" (for MS-DOS and Win32) (*)
        "$VIM/_vimrc"      (for MS-DOS and Win32) (*)
    Note: For Unix, OS/2 and Amiga, when ".vimrc" does not exist,
    "_vimrc" is also tried, in case an MS-DOS compatible file
    system is used.  For MS-DOS and Win32 ".vimrc" is checked
    after "_vimrc", in case long file names are used.
    Note: For MS-DOS and Win32, "$HOME" is checked first.  If no
    "_vimrc" or ".vimrc" is found there, "$VIM" is tried.
    See |$VIM| for when $VIM is not set.
-  The environment variable EXINIT.
   The value of $EXINIT is used as an Ex command line.
-  The user exrc file(s).  Same as for the user vimrc file, but with
   "vimrc" replaced by "exrc".  But only one of ".exrc" and "_exrc" is
   used, depending on the system.  And without the (*)!
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.