Variable: artist-arrows

artist-arrows is a variable defined in artist.el.gz.

Value

[62 nil 118 76 60 nil 94 nil]

Documentation

A vector of characters to use as arrows.

The vector is 8 elements long and contains a character for each direction, or nil if there is no suitable character to use for arrow in that direction.

The directions are as follows:

5 6 7
\ | /
4 - * - 0
/ | \
3 2 1

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defvar artist-arrows [ ?> nil ?v ?L ?< nil ?^ nil ]
  ;; This is a defvar, not a defcustom, since the custom
  ;; package shows vectors of characters as a vector of integers,
  ;; which is confusing
  "A vector of characters to use as arrows.

The vector is 8 elements long and contains a character for each
direction, or nil if there is no suitable character to use for arrow
in that direction.

The directions are as follows:

			  5  6  7
			   \\ | /
			 4 - * - 0
			   / | \\
			  3  2  1")