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

Isearch #16

Closed
wants to merge 9 commits into from
Closed

Conversation

burtonsamograd
Copy link
Contributor

Emacs like isearch command bound to C-s. Adds search-string for searching a buffer for a string, wrapping around.

@@ -1547,6 +1569,60 @@ If no such form is found, then return the CL-USER package."
(defun beginning-of-top-level-form-command ()
(beginning-of-top-level-form (current-buffer *editor*)))

(defvar *isearch-string* (make-array 0 :fill-pointer t))
(defvar *last-isearch-string* *isearch-string*)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These defvars should be bound in editor-main and the array should be created with ":element-type 'character :adjustable t"

@fitzsim
Copy link
Collaborator

fitzsim commented Mar 9, 2024

It looks like this code went into Med almost unchanged from this pull request, so this can be closed.

@fitzsim fitzsim closed this Mar 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants