]> git.donarmstrong.com Git - lilypond.git/blob - scm/editor.scm
* Documentation/user/preface.itely (Preface): Run
[lilypond.git] / scm / editor.scm
1 ;;;; editor.scm --
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 2005 Jan Nieuwenhuizen <janneke@gnu.org>
6
7 (define-module (scm editor))
8
9 (use-modules
10  (ice-9 regex))
11
12 (define editor-command-template-alist
13   '(("emacs" .  "emacsclient --no-wait +%(line)s:%(column)s %(file)s")
14     ("gvim" . "gvim --remote +:%(line)s:norm%(column)s %(file)s")
15     ("nedit" . "nc -noask +%(line)s %(file)s")
16     ("gedit" . "gedit +%(line)s %(file)s")
17     ("jedit" . "jedit %(file)s +line:%(line)s")))
18
19 (define (get-editor)
20   (or (getenv "LYEDITOR")
21       (getenv "XEDITOR")
22       (getenv "EDITOR")
23       "emacs"))
24
25 (define (re-sub re sub string)
26   (regexp-substitute/global #f re string 'pre sub 'post))
27
28 (define-public (get-editor-command file-name line column)
29   (define (get-command-template alist editor)
30     (if (null? alist)
31         (if (string-match "%\\(file\\)s" editor)
32             (editor)
33             (string-append editor " %(file)s"))
34         (if (string-match (caar alist) editor)
35             (cdar alist)
36             (get-command-template (cdr alist) editor))))
37
38   (let* ((editor (get-editor))
39          (template (get-command-template editor-command-template-alist editor))
40          (command
41           (re-sub "%\\(file\\)s" (format #f "~S" file-name)
42                   (re-sub "%\\(line\\)s" (format #f "~a" line)
43                           (re-sub "%\\(column\\)s" (format #f "~a" column)
44                                   template)))))
45     command))