在 rinari-console 中设置堆栈跟踪限制

Set the stack trace limit in rinari-console

this question 可以看出,Rails 控制台中的回溯限制是通过将新值传递给 context.back_trace_limit 来设置的。虽然这可以在 .irbc 文件中设置,但我更愿意 Emacs 为我设置它,因为我通常不在编辑器之外使用 irb,而且我的 .emacs 在我使用的各种系统之间同步.

有没有办法在我启动 rinari-console 时传入这个值?

rinari-console函数在rinari.el中的完整定义是:

(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)))

所以没有 built-in 方法可以将值传递给 irb 会话。但是,我已经停止使用 Rinari,因此我不再研究解决方案。