diff options
| author | Alex Leferry 2 <alexherbo2@gmail.com> | 2020-08-18 23:34:54 +0200 |
|---|---|---|
| committer | Alex Leferry 2 <alexherbo2@gmail.com> | 2020-08-18 23:34:54 +0200 |
| commit | 01f00761050cf9cbd92c018d3dc538ffe77a384f (patch) | |
| tree | 8b14c1cd1b7a90addb1099cabd1540d33e8c8128 | |
| parent | bd66886500ab004baa255065f2dad19909ece2c4 (diff) | |
Rename prelude_path
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | rc/prelude.kak | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -25,7 +25,7 @@ The resulted text should be used unquoted and is not intended for use in double ``` kak evaluate-commands %sh{ - . "$kak_opt_prelude" + . "$kak_opt_prelude_path" kak_escape evaluate-commands -try-client "$kak_client" 'echo Tchou' | kak -p "$kak_session" } ``` diff --git a/rc/prelude.kak b/rc/prelude.kak index 88e4126..28da338 100644 --- a/rc/prelude.kak +++ b/rc/prelude.kak @@ -1,7 +1,7 @@ -declare-option -hidden str prelude_path %sh(dirname "$kak_source") +declare-option -hidden str prelude_plugin_path %sh(dirname "$kak_source") provide-module prelude %{ - declare-option -docstring 'Path to the prelude of shell blocks' str prelude "%opt{prelude_path}/prelude.sh" + declare-option -docstring 'Path to the prelude of shell blocks' str prelude_path "%opt{prelude_plugin_path}/prelude.sh" } require-module prelude |
