从这个问题可以看出,Rails 控制台中的回溯限制是通过将新值传递给context.back_trace_limit
. 虽然这可以在 .irbc 文件中设置,但我更希望 Emacs 为我设置它,因为我通常irb
不在编辑器之外使用,而且我的 .emacs 在我使用的各种系统中同步。
当我启动 rinari-console 时,有没有办法传递这个值?
从这个问题可以看出,Rails 控制台中的回溯限制是通过将新值传递给context.back_trace_limit
. 虽然这可以在 .irbc 文件中设置,但我更希望 Emacs 为我设置它,因为我通常irb
不在编辑器之外使用,而且我的 .emacs 在我使用的各种系统中同步。
当我启动 rinari-console 时,有没有办法传递这个值?
rinari.el 中rinari -console 函数的完整定义是:
(defun rinari-console (&optional edit-cmd-args)
"Run a Rails console in a compilation buffer.
The buffer will support command history and links between errors
and source code. Optional prefix argument EDIT-CMD-ARGS lets the
user edit the console command arguments."
(interactive "P")
(let* ((default-directory (rinari-root))
(command (rinari--maybe-wrap-with-ruby
(rinari--wrap-rails-command "console"))))
;; Start console in correct environment.
(when rinari-rails-env
(setq command (concat command " " rinari-rails-env)))
;; For customization of the console command with prefix arg.
(setq command (if edit-cmd-args
(read-string "Run Ruby: " (concat command " "))
command))
(with-current-buffer (run-ruby command "rails console")
(rinari-launch)))
所以没有内置的方法可以将值传递给 irb 会话。但是,我已经停止使用 Rinari,因此不再致力于解决方案。