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

Lines Matching +defs:isearch +defs:word

164 ;;           To index the current selection or the word at point, type
165 ;; `C-c /' (`reftex-index-selection-or-word'). The default macro
171 ;; Type `C-c \' (`reftex-index-phrase-selection-or-word') to add
172 ;; the current word or selection to a special _index phrase
361 Index entries can be made with `\\[reftex-index-selection-or-word]' which indexes the word at point
908 entry env-or-mac typekeychar typekey prefix context word
1017 ;; Remember the first association of each word.
1018 (while (stringp (setq word (pop wordlist)))
1019 (or (assoc word reftex-words-to-typekey-alist)
1020 (push (cons word typekey) reftex-words-to-typekey-alist)))
1065 (setq word (car x)
1068 (setq word (concat "\\W\\(" word "[ \t\n\r]*\\)\\("))
1073 (setq word (concat word "\\|" (regexp-quote
1076 (cons (concat word "\\)\\=") typekey))
1708 (autoload 'reftex-index-selection-or-word "reftex-index"
1709 "Put selection or the word near point into the default index macro." t)
1710 (autoload 'reftex-index-phrase-selection-or-word "reftex-index"
1711 "Put selection or the word near point into Index Phrases File." t)
1835 (defun reftex-this-word (&optional class)
1836 ;; Grab the word around point.
2176 t: Throw away only the matched part, not the whole word.
2193 words word)
2196 (while (setq word (pop words0))
2197 (if downcase (setq word (downcase word)))
2199 ((member (downcase word) ignore-words))
2200 ((string-match reftex-label-illegal-re word)
2202 (while (string-match reftex-label-illegal-re word)
2203 (setq word (replace-match "" nil nil word)))
2204 (push word words)))
2206 (push word words))))
2392 ("\C-c/" . reftex-index-selection-or-word)
2393 ("\C-c\\" . reftex-index-phrase-selection-or-word)
2430 (defvar reftex-isearch-minor-mode nil)
2431 (make-variable-buffer-local 'reftex-isearch-minor-mode)
2446 ["\\index{THIS}" reftex-index-selection-or-word t]
2448 ["Add THIS to Index Phrases" reftex-index-phrase-selection-or-word t]
2503 ["isearch whole document" reftex-isearch-minor-mode
2504 :style toggle :selected reftex-isearch-minor-mode])