Modaled is a fully customizable modal editing package for Emacs.
Unlike many popular modal editing modes, Modaled doesn't provide any keybindings and nor does it come with any minor modes by default.
This package provides util functions to help you build your own keybindings and minor modes. It is inspired by evil, modalka, and meow, but it supports building your own minor modes without any predefined states. Compared to modalka, Modaled supports creating multiple minor modes and comes with no default mode, which makes it possible to implement different states in modal editing and different keybindings for different situations. Compared to meow, Modaled has no default config and greatly simplifies the design for customization from scratch. You can freely define many different states and their corresponding minor modes in Modaled.
This package is available on MELPA.
You can install it by M-x package-install RET modaled RET
or use use-package to install it.
To install the package manually, download this repo to Emacs' load-path
.
Then add the following to the config file:
(require 'modaled)
If you are using Nix flake, you can directly add this package to your inputs and use it in emacsPackages.
You can define your own state and keybindings by modaled-define-state STATE &rest BODY
.
You can set the lighter or cursor type in body.
It will create a minor mode modaled-STATE-state-mode
and keymap modaled-STATE-state-keymap
automatically.
The mode is added to emulation-mode-map-alists
by default to increase its priority unless :no-emulation
is specified.
Besides, the keymap is suppressed by default, which means using undefined keys will result in an error instead of inserting the raw character
unless :no-suppress
is set to true.
You can set up the keymap by modaled-define-state-keys
(or directly using define-key
) and enable the minor mode whenever you want.
(modaled-define-state "normal"
; use no-suppress to allow inserting the char if keybinding is not defined
; :no-suppress t
;; to prevent it from being added to emulation-mode-map-alist
; :no-emulation t
:lighter "[NOR]"
:cursor-type 'box)
(modaled-define-keys "normal"
'("h" . backward-char)
'("l" . forward-char)
'("k" . previous-line)
'("j" . next-line)
;; you can also bind multiple keys to a command
'(("a" "b") . (lambda () (interative) (message "hello"))))
To change the current state, you can use modaled-set-state
or modaled-set-default-state
:
; Disable all states
(modaled-set-state nil)
; Enable/change to a defined state
(modaled-set-state "normal")
; Reset to default state
(modaled-set-default-state)
To enable Modaled globally, you will need to define a default state by modaled-define-default-state STATE
.
This will create a globalized minor mode modaled-global-mode
for the default state minor mode you specified.
You can later enable the global mode directly using it.
Note that the default state must be defined by modaled-define-state
before you call modaled-define-default-state
.
(modaled-define-state "insert"
:sparse t
;; insert state must be no-suppress to support inserting char
:no-suppress t
:cursor-type 'bar
:lighter "[INS]")
; modaled-define-state-keys also supports defining keys for multiple states (suppose select state is already defined)
(modaled-define-state-keys '("insert" "select")
; bind a key to change back to default state from other states
`(,(kbd "ESC") . modaled-set-default-state))
(modaled-define-default-state "normal")
(modaled-global-mode 1)
To enable the default state only in specific modes, use :predicate
option in modaled-defined-default-state
(see more :predicate usage):
; only in c++-mode
(modaled-define-default-state "normal" :predicate '(c++-mode))
; or set default state except c++-mode
; (modaled-define-default-state "normal" :predicate '((not c++-mode) t))
(modaled-global-mode 1)
To see supported arguments for each function, use describe-function
(usually bound to C-h f
) to see the docs.
Modaled also supports defining substates.
In Modaled, states are managed like a major mode (which means only one state should be enabled),
while substates are unmanaged like a minor mode (multiple substates can be active at the same time).
The current state is stored in variable modaled-state
.
You should only use modaled-set-state
or modaled-set-default-state
to change a state,
but you can enable substates by calling the minor mode function directly.
Similarly, substates are defined by modaled-define-substate
and keybindings are defined by modaled-define-substate-keys
.
The function parameters are the same as those for states.
The corresponding minor mode and keymap are modaled-SUBSTATE-substate-mode
and modaled-SUBSTATE-substate-keymap
.
Substates are more flexible than states as you manage them directly. One use case is to enable some keybindings only in a specific major mode. The example below shows how to define a substate only for org-mode and normal state:
(modaled-define-substate "org")
(hx-define-substate-keys "org"
(" o" "org open" nil (call-interactively #'org-open-at-point)))
; enable org substate when in normal state
(add-variable-watcher
'modaled-state
(lambda (sym newval op where)
; suppress the warning of unused vars
(ignore sym op where)
(when (eq major-mode 'org-mode)
(let ((arg (if (equal newval "normal") 1 -1)))
(modaled-org-substate-mode arg)))))
AGPL-3.0.
Copyright (C) 2023 DCsunset
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.