summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Leferry 2 <alexherbo2@gmail.com>2019-03-17 02:10:37 +0100
committerAlex Leferry 2 <alexherbo2@gmail.com>2019-03-17 02:10:37 +0100
commit27c8b5f97d0169e9eea197c765957ed453ebf49f (patch)
tree6183c2ee9ccc7691168727a10cf8867ac97699ba
parentdd19f9c43c0ab553e593c331101241e5a89fab26 (diff)
Update documentation of shell option
-rw-r--r--README.md2
-rw-r--r--rc/connect.kak2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index ac534ec..51006cf 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ You can also use the `connect` shell command available in `PATH`.
## Options
-- `connect_shell`: Default shell (Default: `SHELL`)
+- `connect_shell`: Shell program to be used as default entry-point (Default: `SHELL`)
[Kakoune]: https://kakoune.org
[IRC]: https://webchat.freenode.net?channels=kakoune
diff --git a/rc/connect.kak b/rc/connect.kak
index 9b17c4d..dff85cf 100644
--- a/rc/connect.kak
+++ b/rc/connect.kak
@@ -1,4 +1,4 @@
-declare-option -docstring 'Default shell' str connect_shell %sh(echo ${SHELL:-sh})
+declare-option -docstring 'Shell program to be used as default entry-point' str connect_shell %sh(echo ${SHELL:-sh})
declare-option -hidden str connect_editor %sh(printf '%s/connect.sh' "${kak_source%/*}")
declare-option -hidden str connect_cache %sh(printf '%s/kak/connect' "${XDG_CACHE_HOME:-~/.cache}")