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

Lines Matching defs:w*w

98 ;; other file in another (the other?) window (see find-file-other-window and
99 ;; switch-to-buffer-other-window). This can be set on a more permanent basis
100 ;; by setting ff-always-in-other-window to t in which case the ^U prefix will
165 (defcustom ff-always-in-other-window nil
166 "*If non-nil, find the corresponding file in another window by default.
296 (make-variable-buffer-local 'ff-always-in-other-window)
306 (defun ff-get-other-file (&optional in-other-window)
310 If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
314 (ff-find-the-other-file in-other-window)
321 (defun ff-find-other-file (&optional in-other-window ignore-include)
325 If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
334 - `ff-always-in-other-window'
335 If non-nil, always open the other file in another window, unless an
376 (ff-find-the-other-file in-other-window)
382 (defun ff-find-the-other-file (&optional in-other-window)
387 If optional IN-OTHER-WINDOW is non-nil, find the file in another window."
417 (setq found (ff-get-file dirs fname nil in-other-window)))
481 in-other-window)))))
509 (ff-find-file pathname in-other-window t)))
614 (defun ff-get-file (search-dirs filename &optional suffix-list other-window)
626 (ff-switch-to-buffer (get-file-buffer filename) other-window)
630 (ff-find-file filename other-window nil)
817 (defun ff-switch-file (f1 f2 file &optional in-other-window new-file)
823 and on the global variable `ff-always-in-other-window'.
825 F1 and F2 are typically `find-file' / `find-file-other-window'
826 or `switch-to-buffer' / `switch-to-buffer-other-window' function pairs.
832 (and in-other-window (not ff-always-in-other-window))
833 (and (not in-other-window) ff-always-in-other-window))
840 (defun ff-find-file (file &optional in-other-window new-file)
841 "Like `find-file', but may show the file in another window."
843 'find-file-other-window
844 file in-other-window new-file))
846 (defun ff-switch-to-buffer (buffer-or-name &optional in-other-window)
847 "Like `switch-to-buffer', but may show the buffer in another window."
850 'switch-to-buffer-other-window
851 buffer-or-name in-other-window nil))
862 (defun ff-mouse-find-other-file-other-window (event)
863 "Visit the file you click on in another window."