aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-04-26 10:48:17 +0000
committerRichard M. Stallman2005-04-26 10:48:17 +0000
commit9bc727cd9a87b3f4b0bca724f638450b604ab100 (patch)
treebaa7a4ed8e530908a8285d2457024eae3502701f
parentea3b47e34941c76013f38d1d5e20a3a98bdab885 (diff)
downloademacs-9bc727cd9a87b3f4b0bca724f638450b604ab100.tar.gz
emacs-9bc727cd9a87b3f4b0bca724f638450b604ab100.zip
(Filesets): New node.
(File Conveniences): Document Image mode.
-rw-r--r--man/files.texi47
1 files changed, 47 insertions, 0 deletions
diff --git a/man/files.texi b/man/files.texi
index a03bb2a64ea..8ababef064c 100644
--- a/man/files.texi
+++ b/man/files.texi
@@ -37,6 +37,7 @@ on file directories.
37* Quoted File Names:: Quoting special characters in file names. 37* Quoted File Names:: Quoting special characters in file names.
38* File Name Cache:: Completion against a list of files you often use. 38* File Name Cache:: Completion against a list of files you often use.
39* File Conveniences:: Convenience Features for Finding Files. 39* File Conveniences:: Convenience Features for Finding Files.
40* Filesets:: Handling sets of files.
40@end menu 41@end menu
41 42
42@node File Names 43@node File Names
@@ -3325,6 +3326,15 @@ point. Partial Completion mode offers other features extending
3325@code{find-file}, which can be used with @code{ffap}. 3326@code{find-file}, which can be used with @code{ffap}.
3326@xref{Completion Options}. 3327@xref{Completion Options}.
3327 3328
3329@findex image-mode
3330@findex image-toggle-display
3331@cindex images, viewing
3332 Visiting image files automatically selects Image mode. This major
3333mode allows you to toggle between displaying the file as an image in
3334the Emacs buffer, and displaying its underlying text representation,
3335using the command @kbd{C-c C-c} (@code{image-toggle-display}). This
3336works only when Emacs can display the specific image type.
3337
3328@findex thumbs-mode 3338@findex thumbs-mode
3329@findex mode, thumbs 3339@findex mode, thumbs
3330 Thumbs mode is a major mode for viewing directories containing many 3340 Thumbs mode is a major mode for viewing directories containing many
@@ -3335,6 +3345,43 @@ thumbnail to view the full-size image. Thumbs mode requires the
3335@file{convert} program, which is part of the ImageMagick software 3345@file{convert} program, which is part of the ImageMagick software
3336package. 3346package.
3337 3347
3348@node Filesets
3349@section Filesets
3350@cindex filesets
3351
3352@findex filesets-init
3353 If you regularly edit a certain group of files, you can define them
3354as a @dfn{fileset}. This lets you perform certain operations, such as
3355visiting, @code{query-replace}, and shell commands on all the files
3356at once. To make use of filesets, you must first add the expression
3357@code{(filesets-init)} to your @file{.emacs} file (@pxref{Init File}).
3358This adds a @samp{Filesets} menu to the menu bar.
3359
3360@findex filesets-add-buffer
3361@findex filesets-remove-buffer
3362 The simplest way to define filesets is by adding files to them one
3363at a time. To add a file to fileset @var{name}, visit the file and
3364type @kbd{M-x filesets-add-buffer @kbd{RET} @var{name} @kbd{RET}}. If
3365there is no fileset @var{name}, this creates a new one, which
3366initially creates only the current file. The command @kbd{M-x
3367filesets-remove-buffer} removes the current file from a fileset.
3368
3369 You can also edit the list of filesets directly, with @kbd{M-x
3370filesets-edit} (or by choosing @samp{Edit Filesets} from the
3371@samp{Filesets} menu). The editing is performed in a Customize buffer
3372(@pxref{Easy Customization}). Filesets need not be a simple list of
3373files---you can also define filesets using regular expression matching
3374file names. Some examples of these more complicated filesets are
3375shown in the Customize buffer. Remember to select @samp{Save for
3376future sessions} if you want to use the same filesets in future Emacs
3377sessions.
3378
3379 You can use the command @kbd{M-x filesets-open} to visit all the
3380files in a fileset, and @kbd{M-x filesets-close} to close them. Use
3381@kbd{M-x filesets-run-cmd} to run a shell command on all the files in
3382a fileset. These commands are also available from the @samp{Filesets}
3383menu, where each existing fileset is represented by a submenu.
3384
3338@ignore 3385@ignore
3339 arch-tag: 768d32cb-e15a-4cc1-b7bf-62c00ee12250 3386 arch-tag: 768d32cb-e15a-4cc1-b7bf-62c00ee12250
3340@end ignore 3387@end ignore