defmode name &key setup-function syntax-table key-bindings no-redefine vars cleanup-function major-p transparent-p precedence => nil
A string containing the name of the mode being defined.
Name of function which sets up a buffer in this mode.
A quoted list of key-binding directions.
If
t
, the mode cannot be re-defined. The default value is
nil
.
A quoted list of Editor variables and values.
A quoted list of synonyms for name.
Called upon exit from a buffer in this mode.
If
t
, the mode is defined as major, otherwise minor. The default value is
nil
.
This function defines an Editor mode called
name.
By default, any mode defined is a minor one--specification of major-mode status is made by supplying
t
to the
major-p
argument.
defmode
is essentially for the purposes of mode specification--not all of the essential definitions required to establish a new Editor mode are made in a
defmode
call. In the example, below, other required calls are shown.
Key-bindings can be defined by supplying a quoted list of bindings, where a binding is a list containing as a first element the (string) name of the Editor command being bound, and as the second, the key binding description (see Advanced Features, for example key-bindings).
The state of Editor variables can be changed in the definition of a mode. These are supplied as a quoted list of dotted pairs, where the first element of the pair is the (symbol) name of the editor variable to be changed, and the second is the new value.
Let us define a minor mode,
Foo
.
Foo
has a set-up function, called
setup-foo-mode
. All files with suffix
.foo
invoke
Foo
-mode.
(editor:defmode "Foo" :setup-function 'setup-foo-mode)
The next piece of code makes
.foo
files invoke
Foo
-mode:
(editor:define-file-type-hook ("foo") (buffer type)
(declare (ignore type))
(setf (editor:buffer-minor-mode buffer "Foo") t))
The next form defines the set-up function:
(defun setup-foo-mode (buffer)
(setf (editor:buffer-major-mode buffer) "Lisp")
(let ((pathname (editor:buffer-pathname buffer)))
(unless (and pathname
(probe-file pathname))
(editor:insert-string
(editor:buffer-point buffer)
#.(format nil ";;; -*- mode :foo -*-~2%(in-package \"CL-USER\")~2%")))))
Now, any files loaded into the Editor with the suffix
.foo
invoke the
Foo
minor mode.