Arch Linuxで入力がない場合にVimに起動時にNERDTreeを起動させる方法

Arch Linuxで入力がない場合にVimに起動時にNERDTreeを起動させる方法

gvim-gtk2私はOpen Build Serviceリポジトリからインストールしました(ここ例)そしてほとんどのことはうまくいきます。唯一の例外は、私の目的が起動時に入力が提供されない場合(つまり、列ファイルまたはフォルダを指定せずに起動される~/.vimrc場合)、NERDTreeをロードすることですが、これは真ではありません。vimgvim

代わりに、Vimの起動時に表示される画面は次のとおりです。 ここに画像の説明を入力してください。

ここ私のファイルです~/.vimrc~/.vimrcVimの起動時にNERDTreeを起動する行は次のとおりです。

autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif

このラインは以下から借りたものです。ナッドツリーを読む文書。他のディストリビューションでは、起動時に~/.vimrc正確に私が望む方法でNERDTreeをロードしたときにこの行を見つけましたが、Arch Linuxではそうではありませんでした。/etc/vimrc私のパッケージにインストールされたファイルは次のとおりですvim-runtime

" All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just
" /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime
" you can find below.  If you wish to change any of those settings, you should
" do it in this file (/etc/vimrc), since archlinux.vim will be overwritten
" everytime an upgrade of the vim packages is performed.  It is recommended to
" make changes after sourcing archlinux.vim since it alters the value of the
" 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages.
runtime! archlinux.vim

" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim'
" Or better yet, read /usr/share/vim/vim80/vimrc_example.vim or the vim manual
" and configure vim to your own liking!

" do not load defaults if ~/.vimrc is missing
"let skip_defaults_vim=1

これは私のarchlinux.vimファイルです:

" The ArchLinux global vimrc - setting only a few sane defaults
"
" Maintainer:      Thomas Dziedzic [[email protected]]
"
" NEVER EDIT THIS FILE, IT'S OVERWRITTEN UPON UPGRADES, GLOBAL CONFIGURATION
" SHALL BE DONE IN /etc/vimrc, USER SPECIFIC CONFIGURATION IN ~/.vimrc

" Normally we use vim-extensions. If you want true vi-compatibility
" remove change the following statements
set nocompatible                " Use Vim defaults instead of 100% vi compatibility
set backspace=indent,eol,start  " more powerful backspacing

" Now we set some defaults for the editor
set history=50                  " keep 50 lines of command line history
set ruler                       " show the cursor position all the time

" Suffixes that get lower priority when doing tab completion for filenames.
" These are files we are not likely to want to edit or read.
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc,.png,.jpg

if has('gui_running')
  " Make shift-insert work like in Xterm
  map <S-Insert> <MiddleMouse>
  map! <S-Insert> <MiddleMouse>
endif

ベストアンサー1

おすすめ記事