branch: elpa/kotlin-mode
commit b2085f5315886450c357e8c0cefe13967d1dcc56
Author: Kang Tu <[email protected]>
Commit: Kang Tu <[email protected]>
Put key-binding to README
---
README.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/README.md b/README.md
index 783ec534f3..43a7ffc167 100644
--- a/README.md
+++ b/README.md
@@ -16,3 +16,52 @@ with package management so you can use package management to
install the mode fr
(*) As at 2016-06-20 this mode is only in MELPA and not in MELPA stable, a
release will be made when a
version is ready to be declared.
+
+## Kotlin REPL key binding
+
+<table border="2" cellspacing="0" cellpadding="6" rules="groups"
frame="hsides">
+
+
+<colgroup>
+<col class="org-left" />
+
+<col class="org-left" />
+</colgroup>
+<thead>
+<tr>
+<th scope="col" class="org-left">Key</th>
+<th scope="col" class="org-left">Function</th>
+</tr>
+</thead>
+
+<tbody>
+<tr>
+<td class="org-left">C-c C-z</td>
+<td class="org-left">Start REPL</td>
+</tr>
+
+
+<tr>
+<td class="org-left">C-c C-n</td>
+<td class="org-left">Send current line to REPL</td>
+</tr>
+
+
+<tr>
+<td class="org-left">C-c C-r</td>
+<td class="org-left">Send selected region to REPL</td>
+</tr>
+
+
+<tr>
+<td class="org-left">C-c C-c</td>
+<td class="org-left">Send current code block to REPL</td>
+</tr>
+
+
+<tr>
+<td class="org-left">C-c C-b</td>
+<td class="org-left">Send whole buffer to REPL</td>
+</tr>
+</tbody>
+</table>