Jody> Is there any way to stop the index window from being treated as Jody> the "other window" for navigating and for temporary buffers?
I use dedicated-mode to accomplish this (works for any window with any major mode at any times). I also use a little code on top of it to nicely toggle as you can see: ,----[ the keybinding ] | (global-set-key (kbd "C-c t d") | (fset 'toggle-dedicated-mode | (lambda () "Toggle dedicated-mode" | (interactive) | (toggle-option 'dedicated-mode) | ) | ) | ) `---- ,----[ the optional toggling code I use ] | ;;;_ , toggle-option | | (require 'toggle-option) | | (setq toggle-option-list | '( | (flyspell-mode function nil nil) | (auto-fill-mode function nil nil) | (abbrev-mode function nil nil) | (dedicated-mode function nil nil) | ) | ) `---- _______________________________________________ Planner-el-discuss mailing list [email protected] https://mail.gna.org/listinfo/planner-el-discuss
