4
6

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 5 years have passed since last update.

gvimをタブエディタにする

Last updated at Posted at 2018-03-06

#初期設定

今回は常時タブエディタとしたいので、以下の手順で設定を行った。
(尚、環境はWindows)

①レジストリエディタを開きます
 Win + R(ファイル名を指定して実行)から regedit でポチッと

②以下のキーに値を設定します
 キー :HKEY_CLASSES_ROOT\Applications\gvim.exe\shell\open\command
 設定値:"{ホームディレクトリ}\gvim.exe" -p --remote-tab-silent "%1"

 尚、事前にレジストリのバックアップは各自でアレしておいてください。

③タブエディタ化を確認
 適当なファイルを複数、gvimで開いてみてタブエディタ化していることを確認。

#後日談(タブにならなくなった)

ある日、何故かファイルを開いてもタブにならなくなった(´・ω・`)

ナンデナンデ?などと思っているうちに、何故か__PHPファイル__を開いたときのみタブ化しないことに気付く。そして。再びレジストリを検索した結果、こんなキーが…

 キー :HKEY_CLASSES_ROOT\php_auto_file
 設定値:"{ホームディレクトリ}\gvim.exe" -p "%1"

こちらもサクッと設定値を -p --remote-tab-silent "%1" に変更して__問題解決!__

ちょっとした事だが、知っておけば次回から慌てず済むはず…!

4
6
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
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?