Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customize isearch behavior in REPL. #554

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion jupyter-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@ about DEPTH."
:type 'integer
:group 'jupyter-repl)

(defcustom jupyter-repl-isearch-override t
"Override isearch behavior in REPL buffers.
If non-nil, whenever a new REPL buffer is created, the isearch behavior will
be overriden so that instead of searching the contents of the buffer, we
search over the REPL command history instead.

Can set this variable to nil in order to keep the standard isearch behavior."
:type 'boolean
:group 'jupyter-repl)

;;; Implementation

(defclass jupyter-repl-client (jupyter-widget-client jupyter-kernel-client)
Expand Down Expand Up @@ -1715,7 +1725,8 @@ Return the buffer switched to."
(add-hook 'pre-redisplay-functions 'jupyter-repl-preserve-window-margins nil t)
;; Initialize the REPL
(jupyter-repl-initialize-fontification)
(jupyter-repl-isearch-setup)
(if jupyter-repl-isearch-override
(jupyter-repl-isearch-setup))
(jupyter-repl-sync-execution-state)
(jupyter-repl-interaction-mode)
;; Do this last so that it runs before any other `change-major-mode-hook's.
Expand Down