aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil/doc/source/internals.rst
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-30 20:09:00 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-30 20:18:37 -0400
commit8c4e09dff83847ac7f07bf1da7751e9328006c4d (patch)
treea0e245567ce225f8bcb63b66e4d2373b5d033e4a /.config/emacs/lisp/evil/doc/source/internals.rst
parent1e33b30749bb1043ffc6ceb5a2fb0977446788b3 (diff)
actual final changes and get rid of junk in lisp dir
actually works fine
Diffstat (limited to '.config/emacs/lisp/evil/doc/source/internals.rst')
-rw-r--r--.config/emacs/lisp/evil/doc/source/internals.rst36
1 files changed, 0 insertions, 36 deletions
diff --git a/.config/emacs/lisp/evil/doc/source/internals.rst b/.config/emacs/lisp/evil/doc/source/internals.rst
deleted file mode 100644
index 9984f7c..0000000
--- a/.config/emacs/lisp/evil/doc/source/internals.rst
+++ /dev/null
@@ -1,36 +0,0 @@
-Internals
-=========
-
-Command properties
-------------------
-
-Evil defines *command properties* to store information about commands
-[#command]_, such as whether they should be repeated. A command
-property is a ``:keyword`` with an associated value, e.g.
-``:repeat nil``.
-
-.. elisp:autofunction:: evil-add-command-properties
-
-.. elisp:autofunction:: evil-set-command-properties
-
-.. elisp:autofunction:: evil-get-command-properties
-
-.. elisp:autofunction:: evil-get-command-property
-
-.. elisp:autofunction:: evil-define-command
-
-
-For setting repeat properties, use the following functions:
-
-.. elisp:autofunction:: evil-declare-repeat
-
-.. elisp:autofunction:: evil-declare-not-repeat
-
-.. elisp:autofunction:: evil-declare-change-repeat
-
-
-.. rubric:: Footnotes
-
-.. [#command] In this context, a *command* may mean any Evil motion,
- text object, operator or indeed other Emacs commands, which have
- not been defined through the Evil machinery.