Variable: quail-keyboard-layout-standard

quail-keyboard-layout-standard is a variable defined in quail.el.gz.

Value

"                                1!2@3#4$5%6^7&8*9(0)-_=+`~    qQwWeErRtTyYuUiIoOpP[{]}      aAsSdDfFgGhHjJkKlL;:'\"\\|      zZxXcCvVbBnNmM,<.>/?                                      "

Documentation

Standard keyboard layout of printable characters Quail assumes.

See the documentation of quail-keyboard-layout for this format. This layout is almost the same as that of VT100,
 but the location of key \ (backslash) is just right of key ' (single-quote),
 not right of RETURN key.

Source Code

;; Defined in /usr/src/emacs/lisp/international/quail.el.gz
;; Keyboard layout translation handlers.

;; Some Quail packages provide localized keyboard simulation which
;; requires a particular keyboard layout.  In this case, what we need
;; is locations of keys the user entered, not character codes
;; generated by those keys.  However, for the moment, there's no
;; common way to get such information.  So, we ask a user to give
;; information of his own keyboard layout, then translate it to the
;; standard layout which we defined so that all Quail packages depend
;; just on it.

(defconst quail-keyboard-layout-standard
  "\
                              \
  1!2@3#4$5%6^7&8*9(0)-_=+`~  \
  qQwWeErRtTyYuUiIoOpP[{]}    \
  aAsSdDfFgGhHjJkKlL;:'\"\\|    \
  zZxXcCvVbBnNmM,<.>/?        \
                              "
  "Standard keyboard layout of printable characters Quail assumes.
See the documentation of `quail-keyboard-layout' for this format.
This layout is almost the same as that of VT100,
 but the location of key \\ (backslash) is just right of key \\=' (single-quote),
 not right of RETURN key.")