Added support for extra cider commands

Also moved enlighten-mode toggle to toggles
This commit is contained in:
Antonis Kalou 2016-08-17 22:50:24 +03:00 committed by Eivind Fonn
parent b3e7f0f65a
commit 27098315e8
2 changed files with 16 additions and 6 deletions

View File

@ -132,12 +132,15 @@ As this state works the same for all files, the documentation is in global
*** Goto
| Key Binding | Description |
|-------------+---------------|
| ~SPC m g b~ | go back |
| ~SPC m g g~ | goto var |
| ~SPC m g e~ | goto error |
| ~SPC m g r~ | goto resource |
| Key Binding | Description |
|-------------+-----------------------|
| ~SPC m g b~ | go back |
| ~SPC m g C~ | browse classpath |
| ~SPC m g g~ | goto var |
| ~SPC m g e~ | goto error |
| ~SPC m g r~ | goto resource |
| ~SPC m g n~ | browse namespaces |
| ~SPC m g N~ | browse all namespaces |
*** REPL
@ -172,9 +175,11 @@ As this state works the same for all files, the documentation is in global
| Key Binding | Description |
|-------------+-----------------------------|
| ~SPC m T e~ | toggle englighten mode |
| ~SPC m T f~ | toggle REPL font-locking |
| ~SPC m T p~ | toggle REPL pretty-printing |
| ~SPC m T i~ | toggle indentation style |
| ~SPC m T t~ | toggle auto test mode |
*** Debugging

View File

@ -111,9 +111,12 @@
"fb" 'cider-format-buffer
"gb" 'cider-pop-back
"gC" 'cider-classpath
"ge" 'cider-jump-to-compilation-error
"gg" 'cider-find-var
"gr" 'cider-jump-to-resource
"gn" 'cider-browse-ns
"gN" 'cider-browse-ns-all
"'" 'cider-jack-in
"sb" 'cider-load-buffer
@ -134,8 +137,10 @@
"ss" 'cider-switch-to-repl-buffer
"sx" 'cider-refresh
"Te" 'cider-enlighten-mode
"Tf" 'spacemacs/cider-toggle-repl-font-locking
"Tp" 'spacemacs/cider-toggle-repl-pretty-printing
"Tt" 'cider-auto-test-mode
"ta" 'spacemacs/cider-test-run-all-tests
"tb" 'cider-test-show-report