Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a2c060f6
Commit
a2c060f6
authored
Apr 13, 2002
by
Pavel Janík
Browse files
Update commentary to include new function iswitchb-exclude-nonmatching.
parent
4603049d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
lisp/ChangeLog
lisp/ChangeLog
+6
-1
lisp/iswitchb.el
lisp/iswitchb.el
+16
-1
No files found.
lisp/ChangeLog
View file @
a2c060f6
2002-04-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* iswitchb.el: Update commentary to include new function
iswitchb-exclude-nonmatching.
2002-04-12 John Wiegley <johnw@gnu.org>
* eshell/esh-ext.el (eshell-script-interpreter): Fix for CRLF
...
...
@@ -15,7 +20,7 @@
2002-04-12 Francesco Potorti` <pot@gnu.org>
* comint.el (comint-password-prompt-regexp): Match" SMB password".
* comint.el (comint-password-prompt-regexp): Match
" SMB password".
2002-04-11 Stefan Monnier <monnier@cs.yale.edu>
...
...
lisp/iswitchb.el
View file @
a2c060f6
...
...
@@ -182,7 +182,7 @@
;; Using iswitchb for other completion tasks.
;; Kin Cho (kin@neoscale.com sent the following suggestion to use
;; Kin Cho (kin@neoscale.com
)
sent the following suggestion to use
;; iswitchb for other completion tasks.
;;
;; (defun my-icompleting-read (prompt choices)
...
...
@@ -198,6 +198,21 @@
;; (my-icompleting-read "Which fruit? " '
;; ("apple" "pineapple" "pear" "bananas" "oranges") )
;; Kin Cho also suggested the following defun. Once you have a subset of
;; matching buffers matching your current prompt, you can then press
;; e.g. C-o to restrict matching to those buffers and clearing the prompt:
;; (defun iswitchb-exclude-nonmatching()
;; "Make iswitchb work on only the currently matching names."
;; (interactive)
;; (setq iswitchb-buflist iswitchb-matches)
;; (setq iswitchb-rescan t)
;; (delete-minibuffer-contents))
;;
;; (add-hook 'iswitchb-define-mode-map-hook
;; '(lambda () (define-key
;; iswitchb-mode-map "\C-o"
;; 'iswitchb-exclude-nonmatching)))
;; Other lisp packages extend iswitchb behaviour to other tasks. See
;; ido.el (by Kim Storm) and mcomplete.el (Yuji Minejima).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment