Emacs中的节点REPL打印输入

时间:2014-04-05 05:06:32

标签: javascript node.js emacs read-eval-print-loop

我在节点REPL中设置一些细节时遇到了麻烦:

每当我在提示符中键入命令时,在从REPL获得实际输出之前,将重新打印此命令。例如:

  

var n = 1;   var n = 1;   未定义

我尝试使用balajis repo https://github.com/startup-class/dotfiles/blob/master/.emacs.d/js-comint.el中的一些代码,但之后我的M-x run-js命令没有用。

这是我的初始文件(我没有编辑我的js-comint.el):

(normal-erase-is-backspace-mode 1)


(add-to-list 'load-path "~/.emacs.d/")
(add-to-list 'load-path "~/.emacs.d/auto-complete/")
; Load the default configuration                                                                             
(require 'auto-complete-config)
; Make sure we can find the dictionaries                                                                     
(add-to-list 'ac-dictionary-directories "~/.emacs.d/auto-complete/dict")
; Use dictionaries by default                                                                                
(setq-default ac-sources (add-to-list 'ac-sources 'ac-source-dictionary))
(global-auto-complete-mode t)
; Start auto-completion after 2 characters of a word                                                         
(setq ac-auto-start 2)
; case sensitivity is important when finding matches                                                         
(setq ac-ignore-case nil)
(add-to-list 'load-path "~/.emacs.d/yasnippet/")
(require 'yasnippet)
(yas-global-mode 1)
;; Load the snippet files themselves                                                                         
(yas/load-directory "~/.emacs.d/yasnippet/snippets/text-mode/javascript-mode/")
;; Let's have snippets in the auto-complete dropdown                                                         
(add-to-list 'ac-sources 'ac-source-yasnippet)

(add-to-list 'auto-mode-alist (cons (rx ".js" eos) 'js2-mode))

(require 'js-comint)
(setq inferior-js-program-command "/usr/bin/java org.mozilla.javascript.tools.shell.Main")
(setq inferior-js-program-command "node")

(setq inferior-js-mode-hook
      (lambda ()
        ;; We like nice colors                                                                               
        (ansi-color-for-comint-mode-on)
        ;; Deal with some prompt nonsense                                                                    
        (add-to-list
         'comint-preoutput-filter-functions
         (lambda (output)
           (replace-regexp-in-string "\033\\[[0-9]+[GKCJ]" "" output)))))

(add-hook 'js2-mode-hook '(lambda ()
                           (local-set-key "\C-x\C-e" 'eval-last-sexp)
                           (local-set-key "\C-cb" 'js-send-buffer)
                           (local-set-key "\C-c\C-b" 'js-send-buffer-and-go)
                           (local-set-key "\C-cl" 'js-load-file-and-go)
                           (local-set-key "\C-c!" 'run-js)
                           (local-set-key "\C-c\C-r" 'js-send-region)
                           (local-set-key "\C-c\C-j" 'js-send-line)
                           (local-set-key "\C-c\C-u" 'whitespace-clean-and-compile)
                           ))

2 个答案:

答案 0 :(得分:0)

如果您可以稍微改变解决问题的方法,则可以使用replpad代替。它适用于任何编辑器,只要文件发生变化就会自动更新。

只需通过以下方式安装:npm install -g replpad

然后运行:replpad

使用它

如果您希望它在当前和所有子目录中观看所有文件,并在更改时将它们传递到repl中:replpad .

更多详情in this answer

答案 1 :(得分:0)

这应该解决它:

(add-hook 'inferior-js-mode-hook
          (lambda ()
            (setq comint-process-echoes t)))