]> git.donarmstrong.com Git - lilypond.git/blob - scm/editor.scm
*** empty log message ***
[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     ("lilypad" . "lilypad +%(line)s:%(column)s %(file)s")))
19
20 (define (get-editor)
21   (or (getenv "LYEDITOR")
22       (getenv "XEDITOR")
23       (getenv "EDITOR")
24       "emacs"))
25
26 (define (get-command-template alist editor)
27   (define (get-command-template-helper)
28     (if (null? alist)
29         (if (string-match "%\\(file\\)s" editor)
30             editor
31             (string-append editor " %(file)s"))
32         (if (string-match (caar alist) editor)
33             (cdar alist)
34             (get-command-template (cdr alist) editor))))
35   (if (string-match "%\\(file\\)s" editor)
36       editor
37       (get-command-template-helper)))
38
39 (define (re-sub re sub string)
40   (regexp-substitute/global #f re string 'pre sub 'post))
41
42 (define (slashify x)
43  (if (string-index x #\/)
44      x
45      (re-sub "\\\\" "/" x)))
46
47 (define-public (get-editor-command file-name line column)
48   (let* ((editor (get-editor))
49          (template (get-command-template editor-command-template-alist editor))
50          (command
51           (re-sub "%\\(file\\)s" (format #f "~S" file-name)
52                   (re-sub "%\\(line\\)s" (format #f "~a" line)
53                           (re-sub "%\\(column\\)s" (format #f "~a" column)
54                                   (slashify template))))))
55     command))