summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2012-11-29 23:33:29 +0200
committerBozhidar Batsov <bozhidar@tradeo.com>2012-11-29 23:33:29 +0200
commit2056507d81aa2656d37887e4409bb4c804889245 (patch)
tree074a49fe5078d8f1a25aad1f8d7a181487d58721 /README.md
parent3c4da3eec7b39f97d180b9bdf002bdab7a249ea7 (diff)
mentioned subword-mode in the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 990e5a4f..a514a11a 100644
--- a/README.md
+++ b/README.md
@@ -101,6 +101,15 @@ buffer:
(add-to-list 'same-window-buffer-names "*nrepl*")
```
+* Enabling `CamelCase` support for editing commands(like
+`forward-word`, `backward-word`, etc) in nREPL is quite useful since
+we often have to deal with Java class and method names. The built-in
+Emacs minor mode `subword-mode` provides such functionality:
+
+```lisp
+(add-hook 'nrepl-mode-hook 'subword-mode)
+```
+
* The use of [paredit](http://mumble.net/~campbell/emacs/paredit.html)
when editing Clojure (or any other Lisp) code is highly
recommended. You're probably using it already in your `clojure-mode`