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

Lines Matching +defs:set +defs:line

71 ;; the command line tool `exiftool' is needed.  It can be found here:
74 ;; using `image-dired-thumbnail-set-image-description' and to create
137 ;; `dired-next-line' and `dired-previous-line' figure out if
139 ;; `image-dired-dired-next-line' and
140 ;; `image-dired-dired-previous-line', respectively. Update: This is
278 "-set \"Thumb::MTime\" \"%m\" "
279 "-set \"Thumb::URI\" \"file://%f\" "
280 "-set \"Description\" \"Thumbnail of file://%f\" "
281 "-set \"Software\" \"" (emacs-version) "\" "))
424 (defcustom image-dired-line-up-method 'dynamic
425 "Default method for line-up of thumbnails in thumbnail buffer.
427 line-up thumbnails. Dynamic means to use the available width of the
430 line-up means that no automatic line-up will be done."
431 :type '(choice :tag "Default line-up method"
435 (const :tag "No line-up" none))
466 If non-nil, using `image-dired-next-line-and-display' and
467 `image-dired-previous-line-and-display' will leave a trail of thumbnail
477 Used by `image-dired-next-line-and-display',
478 `image-dired-previous-line-and-display' and `image-dired-mark-and-display-next'.
668 (defun image-dired-next-line-and-display ()
669 "Move to next dired line and display thumbnail image."
671 (dired-next-line 1)
677 (defun image-dired-previous-line-and-display ()
678 "Move to previous dired line and display thumbnail image."
680 (dired-previous-line 1)
719 "Create thumb buffer and set `image-dired-thumbnail-mode'."
731 "Create image display buffer and set `image-dired-display-image-mode'."
784 (set-window-configuration image-dired-saved-window-configuration)
805 `image-dired-next-line-and-display' and
806 `image-dired-previous-line-and-display' where we do not want the
828 (cond ((eq 'dynamic image-dired-line-up-method)
829 (image-dired-line-up-dynamic))
830 ((eq 'fixed image-dired-line-up-method)
831 (image-dired-line-up))
832 ((eq 'interactive image-dired-line-up-method)
833 (image-dired-line-up-interactive))
834 ((eq 'none image-dired-line-up-method)
837 (image-dired-line-up-dynamic))))
884 (beginning-of-line)
886 (end-of-line)
905 (end-of-line)
907 (beginning-of-line)
912 (end-of-line)
914 (beginning-of-line)
916 (kill-line 1)
917 ;; If on empty line at end of buffer
933 (end-of-line)
935 (beginning-of-line)
1012 (set-buffer dired-buf)
1017 (set-window-point
1019 (set-buffer old-buf))))
1039 (set-buffer image-dired-thumbnail-buffer)
1050 (set-window-point
1053 (set-buffer old-buf))))
1055 (defun image-dired-dired-next-line (&optional arg)
1056 "Call `dired-next-line', then track thumbnail.
1057 This can safely replace `dired-next-line'. With prefix argument, move
1060 (dired-next-line (or arg 1))
1064 (defun image-dired-dired-previous-line (&optional arg)
1065 "Call `dired-previous-line', then track thumbnail.
1066 This can safely replace `dired-previous-line'. With prefix argument,
1069 (dired-previous-line (or arg 1))
1115 (defun image-dired-next-line ()
1116 "Move to next line and display properties."
1118 (next-line 1)
1127 (defun image-dired-previous-line ()
1128 "Move to previous line and display properties."
1130 (previous-line 1)
1173 "Check whether file on current line is marked or not."
1175 (beginning-of-line)
1235 (select-frame-set-input-focus frame))
1248 (select-frame-set-input-focus frame))
1255 (defvar image-dired-thumbnail-mode-line-up-map (make-sparse-keymap)
1256 "Keymap for line-up commands in `image-dired-thumbnail-mode'.")
1267 (define-key image-dired-thumbnail-mode-map [up] 'image-dired-previous-line)
1268 (define-key image-dired-thumbnail-mode-map [down] 'image-dired-next-line)
1271 (define-key image-dired-thumbnail-mode-map "\C-p" 'image-dired-previous-line)
1272 (define-key image-dired-thumbnail-mode-map "\C-n" 'image-dired-next-line)
1282 ;; add line-up map
1283 (define-key image-dired-thumbnail-mode-map "g" image-dired-thumbnail-mode-line-up-map)
1286 (define-key image-dired-thumbnail-mode-line-up-map "g" 'image-dired-line-up-dynamic)
1288 (define-key image-dired-thumbnail-mode-line-up-map "f" 'image-dired-line-up)
1290 (define-key image-dired-thumbnail-mode-line-up-map "i" 'image-dired-line-up-interactive)
1312 'image-dired-thumbnail-set-image-description)
1326 ;; Seems I must first set C-down-mouse-1 to undefined, or else it
1363 [menu-bar image-dired image-dired-line-up-dynamic]
1364 '("Dynamic line up" . image-dired-line-up-dynamic))
1366 [menu-bar image-dired image-dired-line-up]
1367 '("Line up thumbnails" . image-dired-line-up))
1483 `image-dired-dired-x-line'."
1486 ;; Hijack previous and next line movement. Let C-p and C-b be
1489 (define-key dired-mode-map "p" 'image-dired-dired-previous-line)
1490 (define-key dired-mode-map "n" 'image-dired-dired-next-line)
1491 (define-key dired-mode-map [up] 'image-dired-dired-previous-line)
1492 (define-key dired-mode-map [down] 'image-dired-dired-next-line)
1494 (define-key dired-mode-map (kbd "C-S-n") 'image-dired-next-line-and-display)
1495 (define-key dired-mode-map (kbd "C-S-p") 'image-dired-previous-line-and-display)
1566 [menu-bar image-dired image-dired-previous-line-and-display]
1567 '("Display thumb for previous file" . image-dired-previous-line-and-display))
1569 [menu-bar image-dired image-dired-next-line-and-display]
1570 '("Display thumb for next file" . image-dired-next-line-and-display)))
1609 (image-dired-next-line-and-display))
1632 "Remove current thumbnail from thumbnail buffer and line up."
1651 (defun image-dired-line-up ()
1653 See also `image-dired-line-up-dynamic'."
1680 (defun image-dired-line-up-dynamic ()
1691 (image-dired-line-up)))
1693 (defun image-dired-line-up-interactive ()
1701 (image-dired-line-up))))
1728 ;; Note: The mode-line consumes one line
1943 (defun image-dired-thumbnail-set-image-description ()
1953 (image-dired-set-exif-data file "ImageDescription"
1959 (defun image-dired-set-exif-data (file tag-name tag-value)
1960 "In FILE, set EXIF tag TAG-NAME to value TAG-VALUE."
2048 (beginning-of-line)
2059 (beginning-of-line)
2061 (end-of-line)
2114 (end-of-line)
2116 (beginning-of-line)
2172 (mouse-set-point event)
2187 (mouse-set-point event)
2199 (mouse-set-point event)
2307 (end-of-line)
2309 (beginning-of-line)