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

Lines Matching +defs:load +defs:history

365 	       ;; before loading history file.
535 "*Non-nil means that `ido' will record commands in command history.
568 (defcustom ido-enable-last-directory-history t
684 "*Non-nil means to skip non-matching directories in the directory history.
963 (defvar ido-file-history nil
966 (defvar ido-buffer-history nil
971 See `ido-enable-last-directory-history' for details.")
1303 (defun ido-save-history ()
1304 "Save ido history and cache information between sessions."
1323 (defun ido-load-history (&optional arg)
1324 "Load ido history and cache information from previous session.
1325 With prefix argument, reload history unconditionally."
1344 (ido-wash-history))
1346 (defun ido-wash-history ()
1347 "Clean-up ido history and cache information.
1450 (ido-save-history))
1482 (ido-load-history)
1727 ;; Add (command arg) to command-history if ido-record-commands is t
1730 (if (or (not command-history)
1731 (not (equal cmd (car command-history))))
1732 (setq command-history (cons cmd command-history))))))
1801 (defun ido-read-internal (item prompt history &optional default require-match initial)
1854 (and ido-enable-last-directory-history
1965 history))))
2115 (if ido-enable-last-directory-history
2159 (buf (ido-read-internal 'buffer (or prompt "Buffer: ") 'ido-buffer-history default nil initial)))
2183 (add-to-history 'buffer-name-history buf)
2203 (add-to-history 'buffer-name-history buf)
2303 'ido-file-history
2368 ;; put make-directory command on history
2377 (add-to-history 'file-name-history filename)
2395 (add-to-history 'file-name-history filename)
2406 (add-to-history 'file-name-history filename)
3860 Record command in `command-history' if optional RECORD is non-nil."
4028 \\[ido-prev-work-directory] or \\[ido-next-work-directory] go to previous/next directory in work directory history.
4029 \\[ido-merge-work-directories] search for file in the work directory history.
4030 \\[ido-forget-work-directory] removes current directory from the work directory history.
4031 \\[ido-prev-work-file] or \\[ido-next-work-file] cycle through the work file history.
4550 (buf (ido-read-internal 'buffer prompt 'ido-buffer-history default require-match)))
4590 (ido-read-internal 'file prompt 'ido-file-history default-filename mustmatch initial))
4623 (ido-read-internal 'dir prompt 'ido-file-history default-dirname mustmatch initial))
4643 HIST, if non-nil, specifies a history list.