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

SpacemacsのMetalsで画面端に爆誕するtree-viewを止めたい

Posted at

SpacemacsでScalaを書く時にlsp-metalsを使う。

画面の左端に何かが爆誕し続ける。

image.png

いらないのにバッファを隠しても頻繁に爆誕し続け度々 error running timer lsp-metals-treeview--buffer-changedを吐かせてSpacemacsを撃沈する。しんどい :innocent:

単純にlspの設定項目を見ているだけではわからなかったが、どうやら関連する設定は lsp-metals-treeview-show-when-views-receivedのようだ。user-config()内で直接オフにすると出なくなった :tada:

.spacemacs
(defun dotspacemacs/user-config ()

  ;;; lsp

  (setq-default lsp-metals-treeview-show-when-views-received nil)

)

あのバッファにも何か便利はあるのだと思うが、裏で勝手に色々やってくれているだけで十分便利だったので完

1
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
1
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?