Open
Description
My Environment
- OS: MX Linux 18
- Result of
$ uname -r
: 4.19.0-5-amd64 - dotfiles
- i3 version 4.13
- ~/.config/i3
- GNU Emacs 27.0.50
- ~/.emacs.d
Issue
I have the following to prevent super-save from working on Python files:
(setq super-save-exclude '(".py"))
But it does not work, super-save remain active. In fact, super-save seems to remain active in all modes, in all circumstances, even after I hit M-x super-save-mode
. Altering super-save-duration
requires a full reboot (I use emacsclient
).
This is my use-package
declaration for super-save:
(use-package super-save
:defer nil
:ensure t
:config
(setq auto-save-default nil
auto-save-file-name-transforms `((".*" "~/.emacs.d/var/temp" t))
auto-save-interval 300
auto-save-timeout 30
auto-save-visited-mode t
super-save-exclude '(".py")
super-save-auto-save-when-idle t
super-save-idle-duration 1
super-save-triggers
'(balance-windows
evil-window-next
evil-window-prev
eyebrowse-close-window-config
eyebrowse-create-window-config
my/no-highlight
eyebrowse-next-window-config
eyebrowse-prev-window-config
eyebrowse-switch-to-window-config-1
eyebrowse-switch-to-window-config-2
eyebrowse-switch-to-window-config-3
eyebrowse-switch-to-window-config-4
eyebrowse-switch-to-window-config-5
eyebrowse-switch-to-window-config-6
eyebrowse-switch-to-window-config-7
eyebrowse-switch-to-window-config-8
eyebrowse-switch-to-window-config-9
next-buffer
org-babel-execute-src-block
other-window
previous-buffer
split-window-below
split-window-horizontally
start-process-shell-command
switch-to-buffer
treemacs-select-window
windmove-down
windmove-left
windmove-right
windmove-up))
(super-save-mode +1))
Metadata
Metadata
Assignees
Labels
No labels