Procházet zdrojové kódy

Borrow .guile from guixSD

nixos
Maxime Wack před 5 roky
rodič
revize
1b52784539
1 změnil soubory, kde provedl 17 přidání a 3 odebrání
  1. +17
    -3
      .guile

+ 17
- 3
.guile Zobrazit soubor

@@ -1,4 +1,18 @@
(use-modules (ice-9 readline))
(use-modules (ice-9 history))
(cond ((false-if-exception (resolve-interface '(ice-9 readline)))
=>
(lambda (module)
;; Enable completion and input history at the REPL.
((module-ref module 'activate-readline))))
(else
(display "Consider installing the 'guile-readline' package for
convenient interactive line editing and input history.\n\n")))

(activate-readline)
(unless (getenv "INSIDE_EMACS")
(cond ((false-if-exception (resolve-interface '(ice-9 colorized)))
=>
(lambda (module)
;; Enable completion and input history at the REPL.
((module-ref module 'activate-colorized))))
(else
(display "Consider installing the 'guile-colorized' package
for a colorful Guile experience.\n\n"))))

Načítá se…
Zrušit
Uložit