domtronn / spaceline-all-the-icons.el

A Spaceline Mode Line theme using All The Icons for Emacs
MIT License
235 stars 25 forks source link

Buffer " *temp*" has a running process. #96

Open peschkaj opened 5 years ago

peschkaj commented 5 years ago

After enabling spaceline-all-the-icons with the config below, I'm spammed with a message Buffer " *temp*" has a running process; kill it? (y or n). I can remove this message by setting vc-handled-backends to 'nil, but that disables a great deal of git support.

Is there a configuration tweak to make to stop the "buffer has a running process" messages?

Config:

(use-package spaceline
  :ensure t)

(use-package spaceline-config
  :ensure spaceline
  :after spaceline)

(use-package spaceline-all-the-icons
  :ensure t
  :after spaceline
  :config
  (spaceline-all-the-icons-theme)
  (setq spaceline-all-the-icons-separator-type 'none)
  (spaceline-all-the-icons--setup-git-ahead)
  (spaceline-toggle-all-the-icons-vc-icon-on)
  (spaceline-toggle-all-the-icons-mode-icon-on)
  (spaceline-toggle-all-the-icons-vc-status-on)
  (spaceline-toggle-all-the-icons-git-ahead-on)
  (spaceline-toggle-all-the-icons-git-status-on))
peschkaj commented 5 years ago

The workaround I found is to avoid setting spaceline-all-the-icons--setup-git-ahead. Not sure if there's a better workaround.