Skip to content

Commit d5f925b

Browse files
committed
Modify some code comments by referencing README
1 parent 1138b40 commit d5f925b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

nodejs-repl.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
;;
2323
;; This program is derived from comint-mode and provides the following features.
2424
;;
25-
;; * TAB completion same as Node.js REPL
25+
;; * token completion, same as Node.js REPL
2626
;; * file name completion in string
2727
;; * incremental history search
28+
;; * sending JavaScript codes to REPL
2829
;;
2930
;;
3031
;; Put this file in your Emacs lisp path (e.g. ~/.emacs.d/site-lisp)
@@ -40,6 +41,7 @@
4041
;; (add-hook 'js-mode-hook
4142
;; (lambda ()
4243
;; (define-key js-mode-map (kbd "C-x C-e") 'nodejs-repl-send-last-expression)
44+
;; (define-key js-mode-map (kbd "C-c C-j") 'nodejs-repl-send-line)
4345
;; (define-key js-mode-map (kbd "C-c C-r") 'nodejs-repl-send-region)
4446
;; (define-key js-mode-map (kbd "C-c C-l") 'nodejs-repl-load-file)
4547
;; (define-key js-mode-map (kbd "C-c C-z") 'nodejs-repl-switch-to-repl)))

0 commit comments

Comments
 (0)