Function: emerge-mode

emerge-mode is an interactive and byte-compiled function defined in emerge.el.gz.

Signature

(emerge-mode &optional ARG)

Documentation

Emerge mode is used by the Emerge file-merging package.

It is entered only through one of the functions:
emerge-files
emerge-files-with-ancestor
emerge-buffers
emerge-buffers-with-ancestor
emerge-files-command
emerge-files-with-ancestor-command
emerge-files-remote
emerge-files-with-ancestor-remote

Commands: Keymap emerge-basic-keymap is not currently defined. Commands must be prefixed by M-x emerge-basic-keymap (emerge-basic-keymap) in edit mode, but can be invoked directly in fast mode.

This is a minor mode. If called interactively, toggle the Emerge mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate the variable emerge-mode(var)/emerge-mode(fun).

The mode's hook is called both when the mode is enabled and when it is disabled.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
;; We need to define this function so describe-mode can describe Emerge mode.
(define-minor-mode emerge-mode
  "Emerge mode is used by the Emerge file-merging package.
It is entered only through one of the functions:
	`emerge-files'
	`emerge-files-with-ancestor'
	`emerge-buffers'
	`emerge-buffers-with-ancestor'
	`emerge-files-command'
	`emerge-files-with-ancestor-command'
	`emerge-files-remote'
	`emerge-files-with-ancestor-remote'

Commands:
\\{emerge-basic-keymap}
Commands must be prefixed by \\<emerge-fast-keymap>\\[emerge-basic-keymap] in `edit' mode,
but can be invoked directly in `fast' mode."
  :lighter (" Emerge"
            (emerge-fast-mode " F")
            (emerge-edit-mode " E")
            (emerge-auto-advance " A")
            (emerge-skip-prefers " S")))