0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Prevent prompting on Dein.vim installer for automation

Last updated at Posted at 2023-07-22

dein.png

Solution with custom parameters, suppressing promptings

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh)" - --overwrite-config "$HOME/.cache/dein" --use-vim-config

Basic Installation as formally described, introduces promptings

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh)"

説明

後者の Basic Installation では実行時に数回のプロンプトが表示され、インストールオプションの選択を求められます
しかしこのような対話式は、ansible 等による自動化されたインストールや設定タスクの一つとして組み入れるうえでは許容できません。なので何らかの方法で抑止する必要が出てきます

install.sh を見たところ幸いにも上記 Solution のようにすれば良いように配慮されていることがわかりました ※2023/07/22時点

オプションの内容は適宜調整すればよいでしょう。 前者で示した例は vim 用の設定になります。 neovim を使う場合は --use-neovim-config に変える必要があるようです

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?