]> git.donarmstrong.com Git - lilypond.git/blobdiff - lilypond-mode.el
release commit
[lilypond.git] / lilypond-mode.el
index 21b6911f46e097e04c2e47602e3329b6174c4d0a..0bf1523305b8a166f0d244b6b6d7d1bd371e947a 100644 (file)
@@ -5,10 +5,11 @@
 ;;;  
 ;;; (c) 1999--2001 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; 
-;;; Changed 2001 Heikki Junes <heikki.junes@hut.fi>
+;;; Changed 2001--2002 Heikki Junes <heikki.junes@hut.fi>
 ;;;    * Add PS-compilation, PS-viewing and MIDI-play (29th Aug 2001)
 ;;;    * Keyboard shortcuts (12th Sep 2001)
 ;;;    * Inserting tags, inspired on sgml-mode (11th Oct 2001)
+;;;    * Autocompletion & Info (23rd Nov 2002)
 ;;;
 ;;; Changed 2002 Carlos Betancourt <carlos.betancourt@chello.be>
 ;;;    * Added spanish-note-replacements
 ;;; Look lilypond-init.el or Documentation/topdocs/INSTALL.texi
 ;;; for installing instructions.
 
-(load-library "lilypond-font-lock")
-(load-library "lilypond-indent")
+;;; TODO:
+;;;    * XEmacs, broken ?
+;;;    * parenthesis matching
 
 (require 'easymenu)
 (require 'compile)
 
-(defconst LilyPond-version "1.7.8"
+(defconst LilyPond-version "1.7.9"
   "`LilyPond-mode' version number.")
 
 (defconst LilyPond-help-address "bug-lilypond@gnu.org"
 (defvar LilyPond-mode-hook nil
   "*Hook called by `LilyPond-mode'.")
 
+;; FIXME: find ``\score'' in buffers / make settable?
+(defun LilyPond-master-file ()
+  ;; duh
+  (buffer-file-name))
+
 (defvar LilyPond-kick-xdvi nil
   "If true, no simultaneous xdvi's are started, but reload signal is sent.")
 
@@ -60,6 +67,62 @@ Finds file lilypond-words from load-path."
          (progn (setq fn nil) (setq lp (cdr lp)))))
     fn))
 
+(defun LilyPond-add-dictionary-word (x)
+  "Contains all words: keywords, identifiers, reserved words."
+  (nconc '(("" . 1)) x))
+
+;; creates dictionary if empty
+(if (eq (length (LilyPond-add-dictionary-word ())) 1)
+    (progn
+      (setq fn (LilyPond-words-filename))
+      (setq b (find-file-noselect fn t t))
+      (setq m (set-marker (make-marker) 1 (get-buffer b)))
+      (setq i 1)
+      (while (> (buffer-size b) (marker-position m))
+       (setq i (+ i 1))
+       (setq copy (copy-alist (list (eval (symbol-name (read m))))))
+       (setcdr copy i)
+       (LilyPond-add-dictionary-word (list copy)))
+      (kill-buffer b)))
+
+(defconst LilyPond-keywords 
+  (let ((wordlist ())
+       (co (all-completions "" (LilyPond-add-dictionary-word ()))))
+    (progn
+      (while (> (length co) 0)
+       (if (> (length (car co)) 1)
+           (if (and (string-equal "\\" (substring (car co) 0 1))
+                    (string-equal (downcase (car co)) (car co)))
+               (add-to-list 'wordlist (car co))))
+       (setq co (cdr co)))
+      wordlist))
+  "LilyPond \\keywords")
+
+(defconst LilyPond-identifiers 
+  (let ((wordlist ())
+       (co (all-completions "" (LilyPond-add-dictionary-word ()))))
+    (progn
+      (while (> (length co) 0)
+       (if (> (length (car co)) 1)
+           (if (and (string-equal "\\" (substring (car co) 0 1))
+                    (not (string-equal (downcase (car co)) (car co))))
+               (add-to-list 'wordlist (car co))))
+       (setq co (cdr co)))
+      wordlist))
+  "LilyPond \\Identifiers")
+
+(defconst LilyPond-reserved-words 
+  (let ((wordlist ())
+       (co (all-completions "" (LilyPond-add-dictionary-word ()))))
+    (progn
+      (while (> (length co) 0)
+       (if (> (length (car co)) 0)
+           (if (not (string-equal "\\" (substring (car co) 0 1)))
+               (add-to-list 'wordlist (car co))))
+       (setq co (cdr co)))
+      wordlist))
+  "LilyPond ReservedWords")
+
 (defun LilyPond-check-files (derived originals extensions)
   "Check that DERIVED is newer than any of the ORIGINALS.
 Try each original with each member of EXTENSIONS, in all directories
@@ -92,20 +155,48 @@ in LilyPond-include-path."
     found))
 
 (defun LilyPond-running ()
-  (let ((process (get-process "lilypond")))
-  (and process
-       (eq (process-status process) 'run))))
-
-(defun Midi-running ()
-  (let ((process (get-process "midi")))
-  (and process
-       (eq (process-status process) 'run))))
-
-(defun LilyPond-kill-job ()
-  "Kill the currently running LilyPond job."
+  "Check the currently running LilyPond compiling jobs."
+  (interactive)
+  (let ((process-names (list "lilypond" "tex" "2dvi" "2ps" "2midi" 
+                            "book" "latex"))
+       (running nil))
+    (while (setq process-name (pop process-names))
+      (setq process (get-process process-name))
+      (if (and process 
+              (eq (process-status process) 'run))
+         (push process-name running)))
+    running)) ; return the running jobs
+
+(defun LilyPond-midi-running ()
+  "Check the currently running Midi processes."
+  (interactive)
+  (let ((process-names (list "midi" "midiall"))
+       (running nil))
+    (while (setq process-name (pop process-names))
+      (setq process (get-process process-name))
+      (if (and process 
+              (eq (process-status process) 'run))
+         (push process-name running)))
+    running)) ; return the running jobs
+
+(defun LilyPond-kill-jobs ()
+  "Kill the currently running LilyPond compiling jobs."
   (interactive)
-  ;; What bout TeX, Xdvi?
-  (quit-process (get-process "lilypond") t))
+  (let ((process-names (LilyPond-running))
+       (killed nil))
+    (while (setq process-name (pop process-names))
+      (quit-process (get-process process-name) t)
+      (push process-name killed))
+    killed)) ; return the killed jobs
+
+(defun LilyPond-kill-midi ()
+  "Kill the currently running midi processes."
+  (let ((process-names (LilyPond-midi-running))
+       (killed nil))
+    (while (setq process-name (pop process-names))
+      (quit-process (get-process process-name) t)
+      (push process-name killed))
+    killed)) ; return the killed jobs
 
 ;; URG, should only run LilyPond-compile for LilyPond
 ;; not for tex,xdvi (ly2dvi?)
@@ -169,20 +260,78 @@ in LilyPond-include-path."
   :group 'LilyPond
   :type 'string)
 
-(defcustom LilyPond-midi-all-command "timidity -ig"
+(defcustom LilyPond-all-midi-command "timidity -ia"
   "Command used to play MIDI files."
 
   :group 'LilyPond
   :type 'string)
 
+(defun LilyPond-command-current-midi ()
+  "Play midi corresponding to the current document."
+  (interactive)
+  (LilyPond-command (LilyPond-command-menu "Midi") 'LilyPond-master-file))
+
+(defun LilyPond-command-all-midi ()
+  "Play midi corresponding to the current document."
+  (interactive)
+  (LilyPond-command (LilyPond-command-menu "MidiAll") 'LilyPond-master-file))
+
+(defun count-rexp (start end rexp)
+  "Print number of found regular expressions in the region."
+  (interactive "r")
+  (save-excursion
+    (save-restriction
+      (narrow-to-region start end)
+      (goto-char (point-min))
+      (count-matches rexp))))
+
+(defun count-midi-words ()
+  "Check number of midi-scores before the curser."
+  (interactive)
+  (count-rexp (point-min) (point-max) "\\\\midi"))
+(defun count-midi-words-backwards ()
+  "Check number of midi-scores before the curser."
+  (interactive)
+  (count-rexp (point-min) (point) "\\\\midi"))
+(defun LilyPond-string-current-midi ()
+  "Check the midi file of the following midi-score in the current document."
+  (interactive)
+  (let ((fnameprefix (substring (LilyPond-master-file) 0 -3)) ; suppose ".ly"
+       (allcount (string-to-number (substring (count-midi-words) 0 -12)))
+       (count (string-to-number (substring (count-midi-words-backwards) 0 -12))))
+    (concat  fnameprefix
+            (if (and (> allcount 1) (> count 0)) ; not first score
+                (if (eq count allcount)          ; last score
+                    (concat "-" (number-to-string (+ count -1)))
+                  (concat "-" (number-to-string count))))
+            ".midi")))
+
+(defun LilyPond-string-all-midi ()
+  "Return the midi files of the current document in ascending order."
+  (interactive)
+  (let ((fnameprefix (substring (LilyPond-master-file) 0 -3))
+       (allcount (string-to-number (substring (count-midi-words) 0 -12))))
+    (concat (if (> allcount 0)  ; at least one midi-score
+               (concat fnameprefix ".midi "))
+           (if (> allcount 1)  ; more than one midi-score
+               (concat fnameprefix "-[1-9].midi "))
+           (if (> allcount 9)  ; etc.
+               (concat fnameprefix "-[1-9][0-9].midi"))
+           (if (> allcount 99) ; not first score
+               (concat fnameprefix "-[1-9][0-9][0-9].midi")))))
+
 ;; This is the major configuration variable.
 (defcustom LilyPond-command-alist
+  ;; Should expand this to include possible keyboard shortcuts which
+  ;; could then be mapped to define-key and menu.
   `(
     ("LilyPond" . ("lilypond %s" . "LaTeX"))
     ("TeX" . ("tex '\\nonstopmode\\input %t'" . "View"))
 
     ("2Dvi" . ("ly2dvi %s" . "View"))
-    ("2PS" . ("ly2dvi -P %s" . "View"))
+    ("2PS" . ("ly2dvi -P %s" . "ViewPS"))
     ("2Midi" . ("lilypond -m %s" . "View"))
 
     ("Book" . ("lilypond-book %x" . "LaTeX"))
@@ -190,13 +339,16 @@ in LilyPond-include-path."
 
     ;; point-n-click (arg: exits upop USR1)
     ("SmartView" . ("xdvi %d" . "LilyPond"))
-    
+
     ;; refreshes when kicked USR1
     ("View" . (,(concat LilyPond-xdvi-command " %d") . "LilyPond"))
-
     ("ViewPS" . (,(concat LilyPond-gv-command " %p") . "LilyPond"))
 
-    ("Midi" . (,(concat LilyPond-midi-command " %m") . "LilyPond"))
+    ;; The following are refreshed in LilyPond-command:
+    ;; - current-midi depends on cursor position and
+    ("Midi" . (,(concat LilyPond-midi-command " " (LilyPond-string-current-midi)) . "LilyPond" )) ; 
+    ;; - all-midi depends on number of midi-score.
+    ("MidiAll" . (,(concat LilyPond-all-midi-command " " (LilyPond-string-all-midi)) . "LilyPond"))
     )
 
   "AList of commands to execute on the current document.
@@ -272,9 +424,12 @@ Must be the car of an entry in `LilyPond-command-alist'."
                             (LilyPond-check-files (concat name ".tex")
                                                   (list name)
                                                   LilyPond-file-extensions)
-                          (if (buffer-modified-p) 
-                              (if (y-or-n-p "Save buffer before next command? ")
-                                  (LilyPond-save-buffer)))
+                          (if (verify-visited-file-modtime (current-buffer))
+                              (if (buffer-modified-p)
+                                  (if (y-or-n-p "Save buffer before next command? ")
+                                      (LilyPond-save-buffer)))
+                            (if (y-or-n-p "The command will be invoked to an already saved buffer. Revert it? ")
+                                (revert-buffer t t)))
                           ;;"LilyPond"
                           LilyPond-command-default))
                        (t LilyPond-command-default)))
@@ -293,12 +448,6 @@ Must be the car of an entry in `LilyPond-command-alist'."
          answer
        default))))
 
-
-;; FIXME: find ``\score'' in buffers / make settable?
-(defun LilyPond-master-file ()
-  ;; duh
-  (buffer-file-name))
-
 (defun LilyPond-command-master ()
   "Run command on the current document."
   (interactive)
@@ -323,6 +472,12 @@ Must be the car of an entry in `LilyPond-command-alist'."
   (LilyPond-command (LilyPond-command-menu "2PS") 'LilyPond-master-file)
 )
 
+(defun LilyPond-command-formatmidi ()
+  "Format the midi output of the current document."
+  (interactive)
+  (LilyPond-command (LilyPond-command-menu "2Midi") 'LilyPond-master-file)
+)
+
 (defun LilyPond-command-smartview ()
   "View the dvi output of current document."
   (interactive)
@@ -341,68 +496,7 @@ Must be the car of an entry in `LilyPond-command-alist'."
   (LilyPond-command (LilyPond-command-menu "ViewPS") 'LilyPond-master-file)
 )
 
-(defun LilyPond-command-midi ()
-  "Play midi corresponding to the current document."
-  (interactive)
-  (LilyPond-command (LilyPond-command-menu "Midi") 'LilyPond-master-file)
-)
-
-(defun count-rexp (start end rexp)
-  "Print number of found regular expressions in the region."
-  (interactive "r")
-  (save-excursion
-    (save-restriction
-      (narrow-to-region start end)
-      (goto-char (point-min))
-      (count-matches rexp))))
-
-(defun count-midi-words ()
-  "Print number of scores before the curser."
-  (interactive)
-  (count-rexp (point-min) (point-max) "\\\\midi"))
-(defun count-midi-words-backwards ()
-  "Print number of scores before the curser."
-  (interactive)
-  (count-rexp (point-min) (point) "\\\\midi"))
-(defun LilyPond-command-next-midi ()
-  "Play next midi score of the current document."
-  (interactive)
-  (if (Midi-running)
-      (quit-process (get-process "midi") t)
-    (LilyPond-compile-file 
-     (let ((fname (LilyPond-master-file))
-          (allcount (string-to-number (substring (count-midi-words) 0 -12)))
-          (count (string-to-number (substring (count-midi-words-backwards) 0 -12))))
-       (concat  LilyPond-midi-command " "
-               (substring fname 0 -3) ; suppose ".ly"
-               (if (and (> allcount 1) (> count 0)) ; not first score
-                   (if (eq count allcount)          ; last score
-                       (concat "-" (number-to-string (+ count -1)))
-                     (concat "-" (number-to-string count))))
-               ".midi"))
-     "Midi")))
-
-(defun LilyPond-command-all-midi ()
-  "Play next midi score of the current document."
-  (interactive)
-  (if (Midi-running)
-      (quit-process (get-process "midi") t)
-    (LilyPond-compile-file 
-     (let ((fname (LilyPond-master-file))
-          (allcount (string-to-number (substring (count-midi-words) 0 -12))))
-       (concat  LilyPond-midi-all-command " "
-               (if (> allcount 0) ; at least one midi-score
-                   (concat (substring fname 0 -3) ".midi "))
-               (if (> allcount 1) ; more than one midi-score
-                   (concat (substring fname 0 -3) "-?.midi "))
-               (if (> allcount 9) ; etc.
-                   (concat (substring fname 0 -3) "-??.midi"))
-               (if (> allcount 99) ; not first score
-                   (concat (substring fname 0 -3) "-???.midi"))))
-     "Midi")))
-
+;; FIXME, does not find commend ender
 (defun LilyPond-un-comment-region (start end level)
   "Remove up to LEVEL comment characters from each line in the region."
   (interactive "*r\np") 
@@ -477,7 +571,9 @@ command."
   (let ((entry (assoc name LilyPond-command-alist)))
     (if entry
        (let ((command (LilyPond-command-expand (cadr entry)
-                                               (apply file nil))))
+                                               (apply file nil)))
+             (jobs nil)
+             (job-string "no jobs"))
          (if (string-equal name "View")
              (let ((buffer-xdvi (get-buffer-create "*view*")))
                (if LilyPond-kick-xdvi
@@ -487,8 +583,44 @@ command."
                      (LilyPond-shell-process name buffer-xdvi command)))
                  (LilyPond-shell-process name buffer-xdvi command)))
            (progn
+             (if (member name (list "Midi" "MidiAll"))
+                 (if (file-newer-than-file-p
+                      (LilyPond-master-file)
+                      (concat (substring (LilyPond-master-file) 0 -3) ".midi"))
+                     (if (y-or-n-p "Midi older than source. Reformat midi?")
+                         (progn
+                           (LilyPond-command-formatmidi)
+                           (while (LilyPond-running)
+                             (message "Starts playing midi once it is built.")
+                             (sit-for 0 100))))))
+             (if (string-equal name "Midi")
+                 (progn
+                   (setq command (concat LilyPond-midi-command " " (LilyPond-string-current-midi)))
+                   (if (LilyPond-kill-midi)
+                       (setq job-string nil)))) ; either stop or start playing
+             (if (string-equal name "MidiAll")
+                 (progn
+                   (setq command (concat LilyPond-all-midi-command " " (LilyPond-string-all-midi)))
+                   (LilyPond-kill-midi))) ; stop and start playing
+             (if (member name (list "LilyPond" "TeX" "2Midi" "2PS" "2Dvi" 
+                                    "Book" "LaTeX"))
+                 (if (setq jobs (LilyPond-running))
+                     (progn
+                       (setq job-string "Process") ; could also suggest compiling after process has ended
+                       (while jobs
+                         (setq job-string (concat job-string " \"" (pop jobs) "\"")))
+                       (setq job-string (concat job-string " is already running; kill it to proceed "))
+                       (if (y-or-n-p job-string)
+                           (progn
+                             (setq job-string "no jobs")
+                             (LilyPond-kill-jobs)
+                             (while (LilyPond-running)
+                               (sit-for 0 100)))
+                         (setq job-string nil)))))
+
              (setq LilyPond-command-default name)
-             (LilyPond-compile-file command name)))))))
+             (if (string-equal job-string "no jobs")
+                 (LilyPond-compile-file command name))))))))
          
 ;; XEmacs stuff
 ;; Sadly we need this for a macro in Emacs 19.
@@ -513,17 +645,20 @@ command."
 (if LilyPond-mode-map
     ()
   (setq LilyPond-mode-map (make-sparse-keymap))
+  ;; Put keys to Lilypond-command-alist and fetch them from there somehow.
   (define-key LilyPond-mode-map "\C-c\C-l" 'LilyPond-command-lilypond)
   (define-key LilyPond-mode-map "\C-c\C-r" 'LilyPond-command-region)
   (define-key LilyPond-mode-map "\C-c\C-b" 'LilyPond-command-buffer)
-  (define-key LilyPond-mode-map "\C-c\C-k" 'LilyPond-kill-job)
+  (define-key LilyPond-mode-map "\C-c\C-k" 'LilyPond-kill-jobs)
   (define-key LilyPond-mode-map "\C-c\C-c" 'LilyPond-command-master)
+  (define-key LilyPond-mode-map "\C-cm" 'LilyPond-command-formatmidi)
   (define-key LilyPond-mode-map "\C-c\C-d" 'LilyPond-command-formatdvi)
   (define-key LilyPond-mode-map "\C-c\C-f" 'LilyPond-command-formatps)
   (define-key LilyPond-mode-map "\C-c\C-s" 'LilyPond-command-smartview)
   (define-key LilyPond-mode-map "\C-c\C-v" 'LilyPond-command-view)
   (define-key LilyPond-mode-map "\C-c\C-p" 'LilyPond-command-viewps)
-  (define-key LilyPond-mode-map "\C-c\C-m" 'LilyPond-command-next-midi)
+  (define-key LilyPond-mode-map [(control c) return] 'LilyPond-command-current-midi)
+  (define-key LilyPond-mode-map [(control c) (control return)] 'LilyPond-command-all-midi)
   (define-key LilyPond-mode-map "\C-x\C-s" 'LilyPond-save-buffer)
   (define-key LilyPond-mode-map "\C-cf" 'font-lock-fontify-buffer)
   (define-key LilyPond-mode-map "\C-ci" 'LilyPond-quick-note-insert)
@@ -531,10 +666,11 @@ command."
   (define-key LilyPond-mode-map "\C-cs" 'LilyPond-insert-tag-score)
   (define-key LilyPond-mode-map "\C-c:" 'LilyPond-un-comment-region)
   (define-key LilyPond-mode-map "\C-c;" 'comment-region)
-  (define-key LilyPond-mode-map ")" 'LilyPond-electric-close-paren)
-  (define-key LilyPond-mode-map ">" 'LilyPond-electric-close-paren)
-  (define-key LilyPond-mode-map "}" 'LilyPond-electric-close-paren)
-  (define-key LilyPond-mode-map [(shift control c)] 'LilyPond-autocompletion)
+  (define-key LilyPond-mode-map ")" 'LilyPond-electric-close-paren) ; urgh
+  (define-key LilyPond-mode-map ">" 'LilyPond-electric-close-paren) ; argh
+  (define-key LilyPond-mode-map "}" 'LilyPond-electric-close-paren) ; ..rgh
+  (define-key LilyPond-mode-map [S-iso-lefttab] 'LilyPond-autocompletion)
+  (define-key LilyPond-mode-map "\C-c\t" 'LilyPond-info-index-search)
   )
 
 ;;; Menu Support
@@ -575,7 +711,7 @@ command."
                     (make-string (abs octav) (if (> octav 0) ?' ?,)) 
                     durat 
                     (if (string= durat "") "" (make-string dots ?.)))))))
-;    (insert (number-to-string x)) ; test numbers for characters
+    ;; (insert (number-to-string x)) ; test numbers for characters
     (setq note (cdr (assoc (char-to-string x) dutch-notes)))
     (cond
      ((= x 127) (backward-kill-word 1)) ; backspace
@@ -636,43 +772,85 @@ command."
             (message "Remember to add all other details as well.") (sit-for 5 0 1)))
     )))
 
+(defun LilyPond-pre-word-search ()
+  "Fetch the alphabetic characters and \\ in front of the cursor."
+  (interactive)
+  (let ((pre "")
+       (prelen 0)
+       (ch (char-before (- (point) 0))))
+    (while (and ch (or (and (>= ch 65) (<= ch 90))  ; not bolp, A-Z
+                      (and (>= ch 97) (<= ch 122)) ; a-z
+                      (= ch 92)))                  ; \\
+      (setq pre (concat (char-to-string ch) pre))
+      (setq prelen (+ prelen 1))
+      (setq ch (char-before (- (point) prelen))))
+    pre))
+
+(defun LilyPond-post-word-search ()
+  "Fetch the alphabetic characters behind the cursor."
+  (interactive)
+  (let ((post "")
+       (postlen 0)
+       (ch (char-after (+ (point) 0))))
+    (while (and ch (or (and (>= ch 65) (<= ch 90))    ; not eolp, A-Z
+                      (and (>= ch 97) (<= ch 122)))) ; a-z
+      (setq post (concat post (char-to-string ch)))
+      (setq postlen (+ postlen 1))
+      (setq ch (char-after (+ (point) postlen))))
+    post))
+
 (defun LilyPond-autocompletion ()
   "Show completions in mini-buffer for the given word."
   (interactive)
-  (defun add-dictionary-word (x)
-    (nconc '(("" . 1)) x))
-  (if (eq (length (add-dictionary-word ())) 1) ; does not recreate the dict
-    (progn
-      (setq fn (LilyPond-words-filename))
-      (setq b (find-file-noselect fn t t))
-      (setq m (set-marker (make-marker) 1 (get-buffer b)))
-      (setq i 1)
-      (while (> (buffer-size b) (marker-position m))
-       (setq i (+ i 1))
-       (setq copy (copy-alist (list (eval (symbol-name (read m))))))
-       (setcdr copy i)
-       (add-dictionary-word (list copy))
-       )
-      (kill-buffer b)))
-  (setq i 0)
-  (setq beg "")
-  (setq ch (preceding-char))
-  (while (or (and (>= ch 65) (<= ch 90)) 
-            (and (>= ch 97) (<= ch 122))) ; add [A-Z,a-z] until non-alpha
-    (setq beg (concat (char-to-string ch) beg))
-    (setq i (+ i 1))
-    (setq ch (char-before (- (point) i)))
-   )
-  (if (> i 0)
-      (progn
-       (setq co (all-completions beg (add-dictionary-word ())))
-       ; the completions are known already co, currently only show them
-       ; later, one of them could be interactively added
-       (while (> (length co) 0)
-         (sit-for 0 500 1)
-         (message (car co)) 
-         (setq co (cdr co))))))
+  (let ((pre (LilyPond-pre-word-search))
+       (post (LilyPond-post-word-search))
+       (compsstr ""))
+    ;; insert try-completion and show all-completions
+    (if (> (length pre) 0)
+       (progn
+         (setq trycomp (try-completion pre (LilyPond-add-dictionary-word ())))
+         (if (char-or-string-p trycomp)
+             (if (string-equal (concat pre post) trycomp)
+                 (goto-char (+ (point) (length post)))
+               (progn
+                 (delete-region (point) (+ (point) (length post)))
+                 (insert (substring trycomp (length pre) nil))))
+           (progn
+             (delete-region (point) (+ (point) (length post)))
+             (font-lock-fontify-buffer))) ; only inserting fontifies
+       
+       (setq complist (all-completions pre (LilyPond-add-dictionary-word ())))
+       (while (> (length complist) 0)
+         (setq compsstr (concat compsstr "\"" (car complist) "\" "))
+         (setq complist (cdr complist)))
+       (message compsstr) 
+       (sit-for 0 100 1)))))
+
+(defun LilyPond-info ()
+  "Launch Info for lilypond."
+  (interactive)
+  (info "lilypond"))
+  
+(defun LilyPond-music-glossary-info ()
+  "Launch Info for music-glossary."
+  (interactive)
+  (info "music-glossary"))
+
+(defun LilyPond-internals-info ()
+  "Launch Info for lilypond-internals."
+  (interactive)
+  (info "lilypond-internals"))
   
+(defun LilyPond-info-index-search ()
+  "Inside Emacs, launch `info lilypond --index-search word-under-cursor'"
+  (interactive)
+  (let ((str (concat (LilyPond-pre-word-search) (LilyPond-post-word-search))))
+    (if (and (> (length str) 0) 
+            (string-equal (substring str 0 1) "\\"))
+       (setq str (substring str 1 nil)))
+    (LilyPond-info)
+    (Info-index str)))
+
 (defun LilyPond-insert-string (pre)
   "Insert text to the buffer."
   (interactive)
@@ -746,8 +924,8 @@ command."
 
 
 (easy-menu-define LilyPond-command-menu
-    LilyPond-mode-map
-    "Menu used in LilyPond mode."
+  LilyPond-mode-map
+  "Menu used in LilyPond mode."
   (append '("Command")
          '(("Command on"
             [ "Master File" LilyPond-command-select-master
@@ -759,21 +937,25 @@ command."
             [ "Region" LilyPond-command-select-region
               :keys "C-c C-r" :style radio
               :selected (eq LilyPond-command-current 'LilyPond-command-region) ]))
-;        (let ((file 'LilyPond-command-on-current))
-;          (mapcar 'LilyPond-command-menu-entry LilyPond-command-alist))
+;;;      (let ((file 'LilyPond-command-on-current))
+;;;        (mapcar 'LilyPond-command-menu-entry LilyPond-command-alist))
 ;;; Some kind of mapping which includes :keys might be more elegant
-         '([ "LilyPond" (LilyPond-command (LilyPond-command-menu "LilyPond") 'LilyPond-master-file) :keys "C-c C-l"])
+;;; Put keys to Lilypond-command-alist and fetch them from there somehow.
+         '([ "LilyPond" LilyPond-command-lilypond t])
          '([ "TeX" (LilyPond-command (LilyPond-command-menu "TeX") 'LilyPond-master-file) ])
-         '([ "2Dvi" (LilyPond-command (LilyPond-command-menu "2Dvi") 'LilyPond-master-file) :keys "C-c C-d"])
-         '([ "2PS" (LilyPond-command (LilyPond-command-menu "2PS") 'LilyPond-master-file) :keys "C-c C-f"])
-         '([ "2Midi" (LilyPond-command (LilyPond-command-menu "2Midi") 'LilyPond-master-file)])
+         '([ "2Dvi" LilyPond-command-formatdvi t])
+         '([ "2PS" LilyPond-command-formatps t])
+         '([ "2Midi" LilyPond-command-formatmidi t])
          '([ "Book" (LilyPond-command (LilyPond-command-menu "Book") 'LilyPond-master-file) ])
          '([ "LaTeX" (LilyPond-command (LilyPond-command-menu "LaTeX") 'LilyPond-master-file) ])
-         '([ "SmartView" (LilyPond-command (LilyPond-command-menu "SmartView") 'LilyPond-master-file) :keys "C-c C-s"])
-         '([ "View" (LilyPond-command (LilyPond-command-menu "View") 'LilyPond-master-file) :keys "C-c C-v"])
-         '([ "ViewPS" (LilyPond-command (LilyPond-command-menu "ViewPS") 'LilyPond-master-file) :keys "C-c C-p"])
-         '([ "Midi (off)" (LilyPond-command-next-midi) :keys "C-c C-m"])
-         '([ "Midi all" (LilyPond-command-all-midi)])
+         '([ "Kill jobs" LilyPond-kill-jobs t])
+         '("-----")
+         '([ "SmartView" LilyPond-command-smartview t])
+         '([ "View" LilyPond-command-view t])
+         '([ "ViewPS" LilyPond-command-viewps t])
+         '("-----")
+         '([ "Midi (toggle)" LilyPond-command-current-midi t])
+         '([ "Midi all" LilyPond-command-all-midi t])
          ))
 
 (easy-menu-define LilyPond-mode-menu
@@ -784,12 +966,19 @@ command."
             [ "\\notes..."  LilyPond-insert-tag-notes t]
             [ "\\score..."  LilyPond-insert-tag-score t]
             ["Quick Notes"  LilyPond-quick-note-insert t]
+            ["Autocompletion"   LilyPond-autocompletion t]
             ))
          '(("Miscellaneous"
             ["Uncomment Region" LilyPond-un-comment-region t]
             ["Comment Region" comment-region t]
             ["Refontify buffer" font-lock-fontify-buffer t]
             ))
+         '(("Info"
+            ["LilyPond" LilyPond-info t]
+            ["LilyPond index-search" LilyPond-info-index-search t]
+            ["Music Glossary" LilyPond-music-glossary-info t]
+            ["LilyPond internals" LilyPond-internals-info t]
+            ))
          ))
 
 (defconst LilyPond-imenu-generic-re "^\\([a-zA-Z]+\\) *="
@@ -872,7 +1061,7 @@ LilyPond-xdvi-command\t\tcommand to display dvi files -- bit superfluous"
   (make-local-variable 'indent-line-function)
   (setq indent-line-function 'LilyPond-indent-line)
 
-    (set-syntax-table LilyPond-mode-syntax-table)
+  (set-syntax-table LilyPond-mode-syntax-table)
   (setq major-mode 'LilyPond-mode)
   (setq mode-name "LilyPond")
   (setq local-abbrev-table LilyPond-mode-abbrev-table)
@@ -882,7 +1071,7 @@ LilyPond-xdvi-command\t\tcommand to display dvi files -- bit superfluous"
   (setq imenu-generic-expression LilyPond-imenu-generic-expression)
   (imenu-add-to-menubar "Index")
 
-    ;; run the mode hook. LilyPond-mode-hook use is deprecated
+  ;; run the mode hook. LilyPond-mode-hook use is deprecated
   (run-hooks 'LilyPond-mode-hook))
 
 (defun LilyPond-version ()
@@ -890,6 +1079,9 @@ LilyPond-xdvi-command\t\tcommand to display dvi files -- bit superfluous"
   (interactive)
   (message "Using `LilyPond-mode' version %s" LilyPond-version))
 
+(load-library "lilypond-font-lock")
+(load-library "lilypond-indent")
+
 (provide 'lilypond-mode)
 ;;; lilypond-mode.el ends here