Changeset 3384
- Timestamp:
- 08/10/04 21:37:23 (4 years ago)
- Files:
-
- branches/2.0/lisp/ChangeLog.Meadow (modified) (1 diff)
- branches/2.0/lisp/dired.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/lisp/ChangeLog.Meadow
r3352 r3384 1 2004-07-24 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * dired.el (dired-view-command-alist): New alist from Emacs CVS 4 HEAD. 5 1 6 2004-07-15 MIYOSHI Masanori <miyoshi@meadowy.org> 2 7 branches/2.0/lisp/dired.el
r3352 r3384 188 188 ;; Note this can't simply be run inside function `dired-ls' as the hook 189 189 ;; functions probably depend on the dired-subdir-alist to be OK. 190 191 (defcustom dired-view-command-alist 192 '(("[.]\\(ps\\|ps_pages\\|eps\\)\\'" . "gv -spartan -color -watch %s") 193 ("[.]pdf\\'" . "xpdf %s") 194 ("[.]\\(jpe?g\\|gif\\|png\\)\\'" . "eog %s") 195 ("[.]dvi\\'" . "xdvi -sidemargin 0.5 -topmargin 1 %s")) 196 "Alist specifying how to view special types of files. 197 Each element has the form (REGEXP . SHELL-COMMAND). 198 When the file name matches REGEXP, `dired-view-file' 199 invokes SHELL-COMMAND to view the file, processing it through `format'. 200 Use `%s' in SHELL-COMMAND to specify where to put the file name." 201 :group 'dired 202 :type '(alist :key-type regexp :value-type string) 203 :version "21.4") 190 204 191 205 ;;; Internal variables
