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

Spacemacsでファイル履歴の列幅を伸ばす

Posted at

Helmのバッファ履歴一覧 ( Space b b)は、ファイル名の幅が短いのでScalaなどで長いファイル名をつけていると ...で隠れてしまう。

ウィンドウ的には全体の幅に余裕があるので、ファイル名の列幅を伸ばしたい。

.spacemacsuser-config()helm-buffer-max-lengthを設定したらいけた :tada:

.spacemacs
(defun dotspacemacs/user-config ()

  ;; SPC b bで表示されるファイル名の列幅を伸ばす
  (setq helm-buffer-max-length 60)

)

cf. https://github.com/emacs-helm/helm/issues/514#issuecomment-418015625 ("How to adjust helm-mini filename column width?")

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?