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

Lines Matching +defs:isearch +defs:word

215 A deadline is this string, followed by a time stamp.  Should be a word,
224 A schedule is this string, followed by a time stamp. Should be a word,
287 isearch when exiting from an incremental search
303 (const isearch)
331 (const isearch)
335 (defcustom org-show-siblings '((default . nil) (isearch t))
342 By default this is on for the isearch context, off for all other contexts.
362 (const isearch)
2332 "Non-nil means, interpret *word*, /word/, and _word_ as emphasized text.
2333 If the export target supports emphasizing text, the word will be
2351 10^-12 or 10^-tau a leading sign with digits or a word
2715 like \" *strong word* \", we call the initial space PREMATCH, the final
3554 ;; Make isearch reveal context
3556 (not (boundp 'outline-isearch-open-invisible-function)))
3558 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
3560 (org-set-local 'outline-isearch-open-invisible-function
3561 (lambda (&rest ignore) (org-show-context 'isearch))))
4238 (let ((cmds '(isearch-forward isearch-backward)) cmd)
7007 that costs. If there is a word longer than WIDTH, the text is actually
7008 wrapped to the length of that word.
7031 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
7347 (defun org-this-word ()
7348 ;; Get the current word
10102 (vm-isearch-update)
10103 (vm-isearch-narrow)
10792 "Perform completion on word at point.
10795 If the current word is preceded by a backslash, completes the TeX symbols
10797 If the current word is preceded by \"#+\", completes special words for
10800 At all other locations, this simply calls `ispell-complete-word'."
10854 (t (progn (ispell-complete-word arg) (throw 'exit nil)))))
16086 - after the first word in a line, where an abbreviation expansion could
18870 With no specific context, calls the Emacs default `backward-word'.
18878 (t (call-interactively 'backward-word))))
18883 With no specific context, calls the Emacs default `forward-word'.
18891 (t (call-interactively 'forward-word))))
19805 ;; Make isearch reveal the necessary context
19806 (defun org-isearch-end ()
19807 "Reveal context after isearch exits."
19808 (when isearch-success ; only if search was successful
19812 (org-show-context 'isearch)
19816 (unless (and (boundp 'isearch-mode-end-hook-quit)
19817 isearch-mode-end-hook-quit)
19818 ;; Only when the isearch was not quitted.
19819 (org-add-hook 'post-command-hook 'org-isearch-post-command
19822 (defun org-isearch-post-command ()
19824 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
19825 (org-show-context 'isearch))