mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
Rename "tumme" to "thumbnails".
This commit is contained in:
parent
a441fa7965
commit
8914e2617a
4 changed files with 38 additions and 37 deletions
15
etc/NEWS
15
etc/NEWS
|
|
@ -1739,9 +1739,10 @@ table editing available in modern word processors. The package also
|
|||
can generate a table source in typesetting and markup languages such
|
||||
as latex and html from the visually laid out text table.
|
||||
|
||||
** The tumme.el package allows you to easily view, tag and in other ways
|
||||
manipulate image files and their thumbnails, using dired as the main interface.
|
||||
Tumme provides functionality to generate simple image galleries.
|
||||
** The thumbnails.el package allows you to easily view, tag and in
|
||||
other ways manipulate image files and their thumbnails, using dired as
|
||||
the main interface. Thumbnails provides functionality to generate
|
||||
simple image galleries.
|
||||
|
||||
** Tramp is now part of the distribution.
|
||||
|
||||
|
|
@ -1804,11 +1805,11 @@ is similar to the way sequential output to a terminal works.)
|
|||
|
||||
** Changes in Dired
|
||||
|
||||
*** Bindings for Tumme added
|
||||
*** Bindings for Thumbnails added
|
||||
Several new keybindings, all starting with the C-t prefix, have been
|
||||
added to Dired. They are all bound to commands in Tumme. As a starting
|
||||
point, mark some image files in a dired buffer and do C-t d to display
|
||||
thumbnails of them in a separate buffer.
|
||||
added to Dired. They are all bound to commands in Thumbnails. As a
|
||||
starting point, mark some image files in a dired buffer and do C-t d
|
||||
to display thumbnails of them in a separate buffer.
|
||||
|
||||
** Changes in Hi Lock
|
||||
|
||||
|
|
|
|||
|
|
@ -1251,19 +1251,19 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
|
|||
(define-key map "\177" 'dired-unmark-backward)
|
||||
(define-key map [remap undo] 'dired-undo)
|
||||
(define-key map [remap advertised-undo] 'dired-undo)
|
||||
;; thumbnail manipulation (tumme)
|
||||
(define-key map "\C-td" 'tumme-display-thumbs)
|
||||
(define-key map "\C-tt" 'tumme-tag-files)
|
||||
(define-key map "\C-tr" 'tumme-delete-tag)
|
||||
(define-key map "\C-tj" 'tumme-jump-thumbnail-buffer)
|
||||
(define-key map "\C-ti" 'tumme-dired-display-image)
|
||||
(define-key map "\C-tx" 'tumme-dired-display-external)
|
||||
(define-key map "\C-ta" 'tumme-display-thumbs-append)
|
||||
(define-key map "\C-t." 'tumme-display-thumb)
|
||||
(define-key map "\C-tc" 'tumme-dired-comment-files)
|
||||
(define-key map "\C-tf" 'tumme-mark-tagged-files)
|
||||
(define-key map "\C-t\C-t" 'tumme-dired-insert-marked-thumbs)
|
||||
(define-key map "\C-te" 'tumme-dired-edit-comment-and-tags)
|
||||
;; thumbnail manipulation (thumbnails)
|
||||
(define-key map "\C-td" 'thumbnails-display-thumbs)
|
||||
(define-key map "\C-tt" 'thumbnails-tag-files)
|
||||
(define-key map "\C-tr" 'thumbnails-delete-tag)
|
||||
(define-key map "\C-tj" 'thumbnails-jump-thumbnail-buffer)
|
||||
(define-key map "\C-ti" 'thumbnails-dired-display-image)
|
||||
(define-key map "\C-tx" 'thumbnails-dired-display-external)
|
||||
(define-key map "\C-ta" 'thumbnails-display-thumbs-append)
|
||||
(define-key map "\C-t." 'thumbnails-display-thumb)
|
||||
(define-key map "\C-tc" 'thumbnails-dired-comment-files)
|
||||
(define-key map "\C-tf" 'thumbnails-mark-tagged-files)
|
||||
(define-key map "\C-t\C-t" 'thumbnails-dired-insert-marked-thumbs)
|
||||
(define-key map "\C-te" 'thumbnails-dired-edit-comment-and-tags)
|
||||
|
||||
;; Make menu bar items.
|
||||
|
||||
|
|
@ -1310,12 +1310,12 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
|
|||
(cons "Immediate" (make-sparse-keymap "Immediate")))
|
||||
|
||||
(define-key map
|
||||
[menu-bar immediate tumme-dired-display-external]
|
||||
'(menu-item "Display Image Externally" tumme-dired-display-external
|
||||
[menu-bar immediate thumbnails-dired-display-external]
|
||||
'(menu-item "Display Image Externally" thumbnails-dired-display-external
|
||||
:help "Display image in external viewer"))
|
||||
(define-key map
|
||||
[menu-bar immediate tumme-dired-display-image]
|
||||
'(menu-item "Display Image" tumme-dired-display-image
|
||||
[menu-bar immediate thumbnails-dired-display-image]
|
||||
'(menu-item "Display Image" thumbnails-dired-display-image
|
||||
:help "Display sized image in a separate window"))
|
||||
|
||||
(define-key map [menu-bar immediate dashes-4]
|
||||
|
|
@ -1358,8 +1358,8 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
|
|||
(cons "Regexp" (make-sparse-keymap "Regexp")))
|
||||
|
||||
(define-key map
|
||||
[menu-bar regexp tumme-mark-tagged-files]
|
||||
'(menu-item "Mark From Image Tag..." tumme-mark-tagged-files
|
||||
[menu-bar regexp thumbnails-mark-tagged-files]
|
||||
'(menu-item "Mark From Image Tag..." thumbnails-mark-tagged-files
|
||||
:help "Mark files whose image tags matches regexp"))
|
||||
|
||||
(define-key map [menu-bar regexp dashes-1]
|
||||
|
|
@ -1456,20 +1456,20 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
|
|||
'("--"))
|
||||
|
||||
(define-key map
|
||||
[menu-bar operate tumme-delete-tag]
|
||||
'(menu-item "Delete Image Tag..." tumme-delete-tag
|
||||
[menu-bar operate thumbnails-delete-tag]
|
||||
'(menu-item "Delete Image Tag..." thumbnails-delete-tag
|
||||
:help "Delete image tag from current or marked files"))
|
||||
(define-key map
|
||||
[menu-bar operate tumme-tag-files]
|
||||
'(menu-item "Add Image Tags..." tumme-tag-files
|
||||
[menu-bar operate thumbnails-tag-files]
|
||||
'(menu-item "Add Image Tags..." thumbnails-tag-files
|
||||
:help "Add image tags to current or marked files"))
|
||||
(define-key map
|
||||
[menu-bar operate tumme-dired-comment-files]
|
||||
'(menu-item "Add Image Comment..." tumme-dired-comment-files
|
||||
[menu-bar operate thumbnails-dired-comment-files]
|
||||
'(menu-item "Add Image Comment..." thumbnails-dired-comment-files
|
||||
:help "Add image comment to current or marked files"))
|
||||
(define-key map
|
||||
[menu-bar operate tumme-display-thumbs]
|
||||
'(menu-item "Display Thumbnails" tumme-display-thumbs
|
||||
[menu-bar operate thumbnails-display-thumbs]
|
||||
'(menu-item "Display Thumbnails" thumbnails-display-thumbs
|
||||
:help "Display thumbnails for current or marked image files"))
|
||||
|
||||
(define-key map [menu-bar operate dashes-3]
|
||||
|
|
|
|||
|
|
@ -186,7 +186,7 @@ Doug Cutting and Jamie Zawinski wrote @file{disass.el}, a disassembler
|
|||
for compiled Emacs Lisp code.
|
||||
|
||||
@item
|
||||
Mathias Dahl wrote @file{tumme.el}, a package for viewing image files
|
||||
Mathias Dahl wrote @file{thumbnails.el}, a package for viewing image files
|
||||
as ``thumbnails.''
|
||||
|
||||
@item
|
||||
|
|
|
|||
|
|
@ -1211,8 +1211,8 @@ indicated in the source buffer.
|
|||
@item
|
||||
@cindex New modes
|
||||
Many new modes and packages have been included in Emacs, such as Calc,
|
||||
TRAMP, URL, IDO, CUA, ERC, rcirc, Table, Tumme, SES, Ruler, Org, PGG,
|
||||
Flymake, Password, Printing, Reveal, wdired, t-mouse, longlines,
|
||||
TRAMP, URL, IDO, CUA, ERC, rcirc, Table, Thumbnails, SES, Ruler, Org,
|
||||
PGG, Flymake, Password, Printing, Reveal, wdired, t-mouse, longlines,
|
||||
savehist, Conf mode, Python mode, DNS mode, etc.
|
||||
|
||||
@cindex Multilingual Environment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue