• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/

Lines Matching +defs:latex +defs:mode

521 When using jka-compr (a.k.a. `auto-compression-mode'), the returned
785 ;; These search actions depend on the major-mode or regexps matching
797 (emacs-lisp-mode . ffap-el-mode) ; rmail, gnus, simple, custom
798 ;; (lisp-interaction-mode . ffap-el-mode) ; maybe
799 (finder-mode . ffap-el-mode) ; type {C-h p} and try it
800 (help-mode . ffap-el-mode) ; maybe useful
801 (c++-mode . ffap-c-mode) ; search ffap-c-path
802 (cc-mode . ffap-c-mode) ; same
803 ("\\.\\([chCH]\\|cc\\|hh\\)\\'" . ffap-c-mode) ; stdio.h
804 (fortran-mode . ffap-fortran-mode) ; FORTRAN requested by MDB
805 ("\\.[fF]\\'" . ffap-fortran-mode)
806 (tex-mode . ffap-tex-mode) ; search ffap-tex-path
807 (latex-mode . ffap-latex-mode) ; similar
814 (dired-mode . ffap-dired) ; maybe in a subdirectory
819 KEY is a symbol, and it equals `major-mode', or
829 ;; (delete (assoc 'c-mode ffap-alist) ffap-alist))
869 (defun ffap-el-mode (name)
878 (defun ffap-c-mode (name)
883 (defun ffap-fortran-mode (name)
888 "Path where `ffap-tex-mode' looks for tex files.
909 (defun ffap-tex-mode (name)
913 (defun ffap-latex-mode (name)
980 (defvar ffap-string-at-point-mode-alist
982 ;; The default, used when the `major-mode' is not found.
985 ;; * no commas (good for latex)
994 (math-mode ",-:$+<>@-Z_[:lower:]~`" "<" "@>;.,!?`:")
997 possibly a major-mode name, or one of the symbol
1008 (defun ffap-string-at-point (&optional mode)
1010 MODE (defaults to value of `major-mode') is a symbol used to look up string
1011 syntax parameters in `ffap-string-at-point-mode-alist'.
1017 (or (assq (or mode major-mode) ffap-string-at-point-mode-alist)
1018 (assq 'file ffap-string-at-point-mode-alist))))
1021 (if (and transient-mark-mode mark-active)
1051 (defun ffap-copy-string-as-kill (&optional mode)
1055 (let ((str (ffap-string-at-point mode)))
1072 (and (eq major-mode 'w3-mode)
1156 (string (ffap-string-at-point)) ; uses mode alist
1193 (if (or (eq major-mode (car tem))
1220 ((and (eq major-mode 'internal-ange-ftp-mode)
1225 ;;((and (eq major-mode 'w3-mode)
1553 ;; Avoid repeated searches of the *mode-alist:
1554 (major-mode (if (assq major-mode ffap-string-at-point-mode-alist)
1555 major-mode
1733 (defun ffap-ro-mode-hook nil
1903 (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
1904 (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
1905 (add-hook 'vm-mode-hook 'ffap-ro-mode-hook)
1906 (add-hook 'rmail-mode-hook 'ffap-ro-mode-hook)