Variable: finder-known-keywords

finder-known-keywords is a variable defined in finder.el.gz.

Value

Large value
((abbrev . "abbreviation handling, typing shortcuts, and macros")
 (bib . "bibliography processors")
 (c . "C and related programming languages")
 (calendar . "calendar and time management tools")
 (comm . "communications, networking, and remote file access")
 (convenience . "convenience features for faster editing")
 (data . "editing data (non-text) files")
 (docs . "Emacs documentation facilities")
 (emulations . "emulations of other editors")
 (extensions . "Emacs Lisp language extensions")
 (faces . "fonts and colors for text")
 (files . "file editing and manipulation")
 (frames . "Emacs frames and window systems")
 (games . "games, jokes and amusements")
 (hardware . "interfacing with system hardware")
 (help . "Emacs help systems")
 (hypermedia . "links between text or other media types")
 (i18n . "internationalization and character-set support")
 (internal . "code for Emacs internals, build process, defaults")
 (languages . "specialized modes for editing programming languages")
 (lisp . "Lisp support, including Emacs Lisp")
 (local . "code local to your site")
 (maint . "Emacs development tools and aids")
 (mail . "email reading and posting")
 (matching . "searching, matching, and sorting")
 (mouse . "mouse support")
 (multimedia . "images and sound")
 (news . "USENET news reading and posting")
 (outlines . "hierarchical outlining and note taking")
 (processes . "processes, subshells, and compilation")
 (terminals . "text terminals (ttys)")
 (tex . "the TeX document formatter")
 (tools . "programming tools")
 (unix . "UNIX feature interfaces and emulators")
 (vc . "version control")
 (wp . "word processing"))

Documentation

Association list of the standard "Keywords:" headers.

Each element has the form (KEYWORD . DESCRIPTION).

Source Code

;; Defined in /usr/src/emacs/lisp/finder.el.gz
;; These are supposed to correspond to top-level customization groups,
;; says rms.
(defvar finder-known-keywords
  '((abbrev	. "abbreviation handling, typing shortcuts, and macros")
    (bib	. "bibliography processors")
    (c		. "C and related programming languages")
    (calendar	. "calendar and time management tools")
    (comm	. "communications, networking, and remote file access")
    (convenience . "convenience features for faster editing")
    (data	. "editing data (non-text) files")
    (docs	. "Emacs documentation facilities")
    (emulations	. "emulations of other editors")
    (extensions	. "Emacs Lisp language extensions")
    (faces	. "fonts and colors for text")
    (files      . "file editing and manipulation")
    (frames     . "Emacs frames and window systems")
    (games	. "games, jokes and amusements")
    (hardware	. "interfacing with system hardware")
    (help	. "Emacs help systems")
    (hypermedia . "links between text or other media types")
    (i18n	. "internationalization and character-set support")
    (internal	. "code for Emacs internals, build process, defaults")
    (languages	. "specialized modes for editing programming languages")
    (lisp	. "Lisp support, including Emacs Lisp")
    (local	. "code local to your site")
    (maint	. "Emacs development tools and aids")
    (mail	. "email reading and posting")
    (matching	. "searching, matching, and sorting")
    (mouse	. "mouse support")
    (multimedia . "images and sound")
    (news	. "USENET news reading and posting")
    (outlines   . "hierarchical outlining and note taking")
    (processes	. "processes, subshells, and compilation")
    (terminals	. "text terminals (ttys)")
    (tex	. "the TeX document formatter")
    (tools	. "programming tools")
    (unix	. "UNIX feature interfaces and emulators")
    (vc		. "version control")
    (wp		. "word processing"))
  "Association list of the standard \"Keywords:\" headers.
Each element has the form (KEYWORD . DESCRIPTION).")