Bad-ptr / persp-mode.el

named perspectives(set of buffers/window configs) for emacs
401 stars 44 forks source link

persp-nil-name is saved as a customized variable without being customized. #11

Closed delexi closed 10 years ago

delexi commented 10 years ago

This is my current persp-mode configuration:

(require 'persp-mode)
(setq persp-auto-resume nil)
(setq persp-nil-name "none")
(persp-mode 1)
(setq wg-morph-on nil)
(setq persp-when-kill-switch-to-buffer-in-perspective t)
(setq persp-filter-save-buffers-functions
      (list #'(lambda (b) (string-prefix-p " " (buffer-name b)))))

There is no persp-mode related variable set from inside the customize interface. Despite of this, '(persp-nil-name "none") is added to the customize-set-variables form in my init.el.

In my opinion this should not happen. Variables not changed through the customize interface should not be managed by customize behind the users back.

Bad-ptr commented 10 years ago

Yes, you right. I'll fix it. //can't remember now why i did it this way.)