• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:isearch +defs:word

103 ;; C-S-delete or C-S-remove (vcursor-copy-word) copies a word.
163 ;; C-S-f8 (C-S-find on DEC keyboards) (vcursor-isearch-forward)
164 ;; allows you to do an isearch in another window. It works a bit like
165 ;; vcursor-scroll-*; it moves into another window, calls isearch
167 ;; other words, it works just like isearch but with the virtual cursor
171 ;; started. Note that once you are in isearch all the keys are normal
369 (global-set-key [C-f3] 'vcursor-copy-word)
383 (global-set-key [M-f6] 'vcursor-backward-word)
384 (global-set-key [M-f6] 'vcursor-forward-word)
392 (global-set-key [C-f9] 'vcursor-isearch-forward)
432 (global-set-key (vcursor-cs-binding "delete") 'vcursor-copy-word)
433 (global-set-key (vcursor-cs-binding "remove") 'vcursor-copy-word)
451 'vcursor-isearch-forward) ; DEC keyboards
452 (global-set-key (vcursor-cs-binding "f8") 'vcursor-isearch-forward)
457 (global-set-key (vcursor-cs-binding "prior" t) 'vcursor-backward-word)
458 (global-set-key (vcursor-cs-binding "next" t) 'vcursor-forward-word)
533 (define-key vcursor-map "\C-y" 'vcursor-copy-word)
542 (define-key vcursor-map "\C-s" 'vcursor-isearch-forward)
543 (define-key vcursor-map "\C-r" 'vcursor-isearch-backward)
546 (define-key vcursor-map "\M-w" 'vcursor-forward-word)
547 (define-key vcursor-map "\M-b" 'vcursor-backward-word)
741 (defun vcursor-isearch-forward (&optional rep norecurs)
747 (vcursor-window-funcall 'isearch-forward rep norecurs)
750 (defun vcursor-isearch-backward (&optional rep norecurs)
756 (vcursor-window-funcall 'isearch-backward rep norecurs)
1015 (defun vcursor-forward-word (arg)
1018 (vcursor-relative-move 'forward-word arg)
1021 (defun vcursor-backward-word (arg)
1024 (vcursor-relative-move 'backward-word arg)
1109 (defun vcursor-copy-word (arg)
1112 (vcursor-copy (vcursor-get-char-count 'forward-word arg))