We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f82514 commit d90eb08Copy full SHA for d90eb08
init-editing-utils.el
@@ -161,7 +161,14 @@
161
"Restore fci-mode when all popups have closed"
162
(when (and (not popup-instances) sanityinc/fci-mode-suppressed)
163
(setq sanityinc/fci-mode-suppressed nil)
164
- (turn-on-fci-mode))))
+ (turn-on-fci-mode)))
165
+
166
+ ;; Regenerate fci-mode line images after switching themes
167
+ (defadvice load-theme (after recompute-fci-face activate)
168
+ (dolist (buffer (buffer-list))
169
+ (with-current-buffer buffer
170
+ (when fci-mode
171
+ (turn-on-fci-mode))))))
172
173
174
;;----------------------------------------------------------------------------
0 commit comments