den
 1(require "helix/editor.scm")
 2(require (prefix-in helix. "helix/commands.scm"))
 3(require (prefix-in helix.static. "helix/static.scm"))
 4
 5(provide open-helix-scm open-init-scm)
 6
 7;;@doc
 8;; Open the helix.scm file
 9(define (open-helix-scm)
10  (helix.open (helix.static.get-helix-scm-path)))
11
12;;@doc
13;; Opens the init.scm file
14(define (open-init-scm)
15  (helix.open (helix.static.get-init-scm-path)))