summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authordpsutton <dpsutton@users.noreply.github.com>2016-04-25 11:02:54 -0500
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2016-04-25 09:02:54 -0700
commitece8fb95696316d2ef305efb007f63dd4385f94f (patch)
tree37f9d799a030f4630f1e397235c2859a3a9ff80b /doc
parent21b585752358c719ff87ad51246d543c59f60b82 (diff)
Keyboard shortcuts for macroexpansion mode (#1704)
Change keyboard shortcuts for `cider-macroexpand-1-inplace` to `m` and `cider-macroexpand-all-inplace` to `a` from previous `C-c C-m` and `C-c M-m` respectively.
Diffstat (limited to 'doc')
-rw-r--r--doc/miscellaneous_features.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/miscellaneous_features.md b/doc/miscellaneous_features.md
index 29ba0dbd..c406c0aa 100644
--- a/doc/miscellaneous_features.md
+++ b/doc/miscellaneous_features.md
@@ -39,12 +39,12 @@ result in a new buffer, showing the macroexpansion of the form in
question. You'll have access to additional keybindings in the macroexpansion
buffer (which is internally using `cider-macroexpansion-mode`):
-Keyboard shortcut | Description
---------------------------------|-------------------------------
-<kbd>C-c C-m</kbd> | Invoke `macroexpand-1` on the form at point and replace the original form with its expansion. If invoked with a prefix argument, `macroexpand` is used instead of `macroexpand-1`.
-<kbd>C-c M-m</kbd> | Invoke `clojure.walk/macroexpand-all` on the form at point and replace the original form with its expansion.
-<kbd>g</kbd> | The prior macroexpansion is performed again and the current contents of the macroexpansion buffer are replaced with the new expansion.
-<kbd>C-/</kbd> <br/> <kbd>C-x u</kbd> | Undo the last inplace expansion performed in the macroexpansion buffer.
+Keyboard shortcut | Description
+----------------------------------|-------------------------------
+<kbd>m</kbd> | Invoke `macroexpand-1` on the form at point and replace the original form with its expansion. If invoked with a prefix argument, `macroexpand` is used instead of `macroexpand-1`.
+<kbd>a</kbd> | Invoke `clojure.walk/macroexpand-all` on the form at point and replace the original form with its expansion.
+<kbd>g</kbd> | The prior macroexpansion is performed again and the current contents of the macroexpansion buffer are replaced with the new expansion.
+<kbd>C-/</kbd> <br/> <kbd>u</kbd> | Undo the last inplace expansion performed in the macroexpansion buffer.
## Value inspection