3 ;;;; source file of the GNU LilyPond music typesetter
5 ;;;; (c) 2005--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 (define-module (scm editor))
9 ;; Also for standalone use, so cannot include any lily modules.
18 (car (string-tokenize (vector-ref (uname) 0) char-set:letter)))))
21 (or (getenv "LYEDITOR")
25 ;; FIXME: how are default/preferred editors specified on
26 ;; different platforms?
32 (define editor-command-template-alist
33 '(("emacs" . "emacsclient --no-wait +%(line)s:%(column)s %(file)s || (emacs +%(line)s:%(column)s %(file)s&)")
34 ("gvim" . "gvim --remote +:%(line)s:norm%(char)s %(file)s")
35 ("uedit32" . "uedit32 %(file)s -l%(line)s -c%(char)s")
36 ("nedit" . "nc -noask +%(line)s %(file)s")
37 ("gedit" . "gedit +%(line)s %(file)s")
38 ("jedit" . "jedit -reuseview %(file)s +line:%(line)s")
39 ("syn" . "syn -line %(line)s -col %(char)s %(file)s")
40 ("lilypad" . "lilypad +%(line)s:%(char)s %(file)s")))
42 (define (get-command-template alist editor)
43 (define (get-command-template-helper)
45 (if (string-match "%\\(file\\)s" editor)
47 (string-append editor " %(file)s"))
48 (if (string-match (caar alist) editor)
50 (get-command-template (cdr alist) editor))))
51 (if (string-match "%\\(file\\)s" editor)
53 (get-command-template-helper)))
55 (define (re-sub re sub string)
56 (regexp-substitute/global #f re string 'pre sub 'post))
59 (if (string-index x #\/)
61 (re-sub "\\\\" "/" x)))
63 (define-public (get-editor-command file-name line char column)
64 (let* ((editor (get-editor))
65 (template (get-command-template editor-command-template-alist editor))
67 (re-sub "%\\(file\\)s" (format #f "~S" file-name)
68 (re-sub "%\\(line\\)s" (format #f "~a" line)
69 (re-sub "%\\(char\\)s" (format #f "~a" char)
71 "%\\(column\\)s" (format #f "~a" column)
72 (slashify template)))))))