You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm liking god mode. One idea that would make it even more useful for me would be to have it extend to a "pantheon mode" -- or perhaps "trinity mode" -- or in less grand terms, a way to similate general purpose sticky modifiers. For example, I know I can do <god-mode-on>gb..<god-mode-off> instead of M-b M-b but it would be nice to either have a whole separate dispatch, so I could type <meta-mode-on>bb<meta-mode-off> or to have an option so that <god-mode-on>g is understood to be sticky, so I would type <god-mode-on>gbb<god-mode-off>.
(This is similar to issue #74, and it might work well to use key chords as the dispatches, so that, for example, gc activated <control-mode> (i.e. what is currently known as "<god mode>"), .p activated <meta-mode>, etc.; of course the specific chords could be customizable.)
The text was updated successfully, but these errors were encountered:
You can just customize god-mod-alist in various settings. e.g.
(defun god-meta-mode () (interactive)
(if god-local-mode (god-mode-all)
(setq god-mod-alist '((nil . "M-")))
(god-mode-all))
I personally did not find a need for meta-mode, although I'm experimenting with god-mod-alist set to ((nil . "C-M-") ("g" . "C-")), for sexp editing.
I'm liking god mode. One idea that would make it even more useful for me would be to have it extend to a "pantheon mode" -- or perhaps "trinity mode" -- or in less grand terms, a way to similate general purpose sticky modifiers. For example, I know I can do
<god-mode-on>gb..<god-mode-off>
instead ofM-b M-b
but it would be nice to either have a whole separate dispatch, so I could type<meta-mode-on>bb<meta-mode-off>
or to have an option so that<god-mode-on>g
is understood to be sticky, so I would type<god-mode-on>gbb<god-mode-off>
.(This is similar to issue #74, and it might work well to use key chords as the dispatches, so that, for example,
gc
activated<control-mode>
(i.e. what is currently known as "<god mode>
"),.p
activated<meta-mode>
, etc.; of course the specific chords could be customizable.)The text was updated successfully, but these errors were encountered: