Skip to content

Commit 02bf289

Browse files
authored
Merge pull request #45 from sumanstats/master
About keybindings
2 parents 8a6e17f + 460b477 commit 02bf289

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ This mode needs GNU Emacs 24.4.
1919

2020
* Complete syntax highlighting
2121
* Better indentation support (uses Emacs SMIE grammar, see the Emacs manual)
22+
* Autocompletion
23+
* Possible integration with Raku language server
2224
* Help system
2325
* ETags support
2426
* `find-file-at-point` for module names
@@ -62,9 +64,9 @@ with a `.p6`, `.pm6`, or `.pl6` extension. It also applies to any `.pm`,
6264
Start the REPL with <kbd>M-x run-raku RET</kbd>. The following
6365
keybindings are available to interact with the REPL:
6466

65-
* <kbd>C-c C-c</kbd>: Send the current line to the REPL
66-
* <kbd>C-c C-r</kbd>: Send the selected region to the REPL
67-
* <kbd>C-c C-h</kbd>: Send the whole buffer to the REPL
67+
* <kbd>C-c C-l</kbd>: Send the current **l**ine to the REPL
68+
* <kbd>C-c C-r</kbd>: Send the selected **r**egion to the REPL
69+
* <kbd>C-c C-b</kbd>: Send the whole **b**uffer to the REPL
6870

6971
The REPL will start if needed with this keybindings.
7072

raku-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646

4747
(defvar raku-mode-map
4848
(let ((map (make-sparse-keymap)))
49-
(define-key map (kbd "C-c C-c") 'raku-send-line-to-repl)
49+
(define-key map (kbd "C-c C-l") 'raku-send-line-to-repl)
5050
(define-key map (kbd "C-c C-r") 'raku-send-region-to-repl)
51-
(define-key map (kbd "C-c C-h") 'raku-send-buffer-to-repl)
51+
(define-key map (kbd "C-c C-b") 'raku-send-buffer-to-repl)
5252
map)
5353
"Keymap for `raku-mode'.")
5454

0 commit comments

Comments
 (0)