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

Lines Matching +defs:one +defs:window

170 If the file name matches one of these regular expressions,
315 add a final newline, whenever you save a file that really needs one."
352 When one transform applies, its result is final;
391 The functions are called in the order given until one of them returns non-nil.")
409 If one of them returns non-nil, the file is considered already written
432 If one of them returns non-nil, the file is considered already written
633 If your environment includes a `CDPATH' variable, try each one of
680 For compatibility, PREDICATE can also be one of the symbols
682 one or more of those symbols."
914 ;; time-window of loose permissions otherwise.
988 (defun switch-to-buffer-other-window (buffer &optional norecord)
989 "Select buffer BUFFER in another window.
1002 (interactive "BSwitch to buffer in other window: ")
1005 same-window-buffer-names same-window-regexps)
1017 same-window-buffer-names same-window-regexps)
1019 (raise-frame (window-frame (selected-window)))))
1027 same-window-buffer-names same-window-regexps
1028 (old-window (selected-window))
1029 new-window)
1030 (setq new-window (display-buffer buffer t))
1031 (lower-frame (window-frame new-window))
1032 (make-frame-invisible (window-frame old-window))
1033 (make-frame-visible (window-frame old-window))))
1069 creating one if none already exists.
1086 (defun find-file-other-window (filename &optional wildcards)
1087 "Edit file FILENAME, in another window.
1088 May create a new window, or reuse an existing one.
1097 (interactive (find-file-read-args "Find file in other window: " nil))
1102 (cons (switch-to-buffer-other-window (car value))
1104 (switch-to-buffer-other-window value))))
1108 May create a new frame, or reuse an existing one.
1151 (defun find-file-read-only-other-window (filename &optional wildcards)
1152 "Edit file FILENAME in another window but don't allow changes.
1153 Like \\[find-file-other-window] but marks buffer as read-only.
1155 (interactive (find-file-read-args "Find file read-only other window: " nil))
1161 (let ((value (find-file-other-window filename wildcards)))
1181 (defun find-alternate-file-other-window (filename &optional wildcards)
1182 "Find file FILENAME as a replacement for the file in the next window.
1183 This command does not select that window.
1188 (save-selected-window
1189 (other-window 1)
1199 (if (one-window-p)
1200 (find-file-other-window filename wildcards)
1201 (save-selected-window
1202 (other-window 1)
1214 for one or more indirect buffers, the other buffer(s) are not
1421 If a buffer exists visiting FILENAME, return that one, but
1550 Emacs can only visit a file in one way at a time.
1556 but Emacs can only visit a file in one way at a time.
1581 But Emacs can only visit a file in one way at a time.
1587 but Emacs can only visit a file in one way at a time.
1637 ;; Run find-file-not-found-functions until one returns non-nil.
2112 "List of regexps; if one matches a file name, don't look for `-*-'.")
2117 from the end of the file name anything that matches one of these regexps.")
2312 ;; same one we already have, don't actually reset it. We don't want to lose
2329 If one is found, set point to the beginning
2495 (save-window-excursion
2534 (if (< (line-number-at-pos) (window-body-height))
2737 (hack-one-local-variable-eval-safep
2749 (hack-one-local-variable (car elt) (cdr elt))))
2759 (hack-one-local-variable (car elt) (cdr elt)))))))
2795 (defun hack-one-local-variable-quotep (exp)
2798 (defun hack-one-local-variable-constantp (exp)
2802 (hack-one-local-variable-quotep exp)))
2804 (defun hack-one-local-variable-eval-safep (exp)
2809 (hack-one-local-variable-quotep (nth 1 exp))
2810 (hack-one-local-variable-quotep (nth 2 exp))
2821 (hack-one-local-variable-quotep val)
2832 (unless (hack-one-local-variable-constantp arg)
2844 (defun hack-one-local-variable (var val)
3034 ;; the one at the old location.
3128 ;; time-window of loose permissions otherwise.
3242 For the common case of all backups going into one directory, the alist
3527 Prefixed with one \\[universal-argument], marks this version
3635 ;; If buffer has no file name, ask user for one.
3674 (format "Buffer %s does not end in newline. Add one? "
3710 ;; but inhibited if one of write-file-functions returns non-nil.
3751 ;; time-window of loose permissions otherwise.
3845 (save-window-excursion
3859 "Save some modified file-visiting buffers. Asks user about each one.
3874 (save-window-excursion
4076 This should be a function with one optional argument NOCONFIRM.
4085 user. In such situations, one has to be careful with potentially
4268 ((save-window-excursion
4301 To choose one, move point to the proper line and then type C-c C-c.
4332 "Choose one saved session to recover auto-save files from.
4404 "Kill some buffers. Asks the user whether to kill each one of them.
4406 specifies the list of buffers to kill, asking for approval for each one."
4544 ;; Try a few alternative directories, to get one we can
4675 ;; This can be more than one dir
4863 ;; Japanese MS-Windows ls-lisp has one-digit months, and
4900 ;; - must insert exactly one line for each file if WILDCARD or
4901 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
4946 ;; putting text property `dired-filename, decode one
4947 ;; bunch by one to preserve that property.
5076 ;; The following overshoots by one line for an empty
5090 ;; and record the bounds of each one.
5120 ;; and we went one line too far back (see above).
5340 (define-key ctl-x-4-map "f" 'find-file-other-window)
5341 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
5342 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
5343 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)