nit(cli): revise header commentary
To properly reflect that it's unsafe to load core-cli in interactive sessions, but safe to load core-cli-lib.
This commit is contained in:
parent
5af38fb08e
commit
df8caf2867
2 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,10 @@
|
||||||
;;; core/core-cli-lib.el --- API+DSL for Doom's CLI framework -*- lexical-binding: t; -*-
|
;;; core/core-cli-lib.el --- API+DSL for Doom's CLI framework -*- lexical-binding: t; -*-
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
;;
|
||||||
|
;; The heart of Doom's CLI framework. This is safe to load in interactive
|
||||||
|
;; sessions (for API access and syntax highlighting), but much of the API
|
||||||
|
;; expects a noninteractive session, so take care when testing code!
|
||||||
|
;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(require 'seq)
|
(require 'seq)
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
;;; core/core-cli.el --- The heart of Doom's CLI framework -*- lexical-binding: t; no-byte-compile: t; -*-
|
;;; core/core-cli.el --- The heart of Doom's CLI framework -*- lexical-binding: t; no-byte-compile: t; -*-
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;
|
;;
|
||||||
;; The heart of Doom's CLI framework. This is safe to load in interactive
|
;; The bootstrapper for Doom's CLI. This is *not* safe to load in interactive
|
||||||
;; sessions (for API access and syntax highlighting), but much of the API
|
;; sessions as it has many side-effects. Loads `core-cli-lib' instead for API
|
||||||
;; expects a noninteractive session, so take care when testing code!
|
;; access and syntax highlighting.
|
||||||
;;
|
;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue