Variable: so-long-mode-map
so-long-mode-map is a variable defined in so-long.el.gz.
Value
C-c C-c so-long-revert
Documentation
Major mode keymap and menu for so-long-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/so-long.el.gz
;; How do you solve a problem like a long line?
;; How do you stop a mode from slowing down?
;; How do you cope with processing a long line?
;; A bit of advice! A mode! A workaround!
(defvar so-long-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-c") 'so-long-revert)
;; Define the major mode menu. We have an awkward issue whereby
;; [menu-bar so-long] is already defined in the global map and is
;; :visible so-long-detected-p, but we also want this to be
;; available via the major mode construct in the mode line.
;; The following achieves the desired end result, as :visible nil
;; prevents this from duplicating its contents in the menu bar,
;; but still includes it in the mode line.
(define-key map [menu-bar so-long]
`(menu-item "" nil
:visible nil
:filter ,(lambda (_cmd) (so-long-menu))))
map)
"Major mode keymap and menu for `so-long-mode'.")