summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorCamron Flanders <me@camronflanders.com>2024-01-06 04:46:25 -0600
committerGitHub <noreply@github.com>2024-01-06 11:46:25 +0100
commitcec111affdaf0a52f72c398f8307cf7e19c7dd8d (patch)
treed6a40dedac0b9b99cc2a0458ff7b88bbaaec1ade /docs
parent0d73154002a3f8a7ee55a2578cf8caf4d7325782 (diff)
fix(direnv): update to work with direnv v2.33 (#5657)
* update AllowStatus to work with direnv 2.33 direnv now returns int enum instead of boolean, https://github.com/direnv/direnv/pull/1158 * update schema * maybe fixed the schema now * Whoops, I inverted the flags somehow * have coffee, fix mistaken understanding * undo changes to tranlations * Update docs/config/README.md * Update src/modules/direnv.rs Co-authored-by: David Knaack <davidkna@users.noreply.github.com> * update test output --------- Co-authored-by: David Knaack <davidkna@users.noreply.github.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/config/README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/config/README.md b/docs/config/README.md
index 046ad01d4..786ab81c9 100644
--- a/docs/config/README.md
+++ b/docs/config/README.md
@@ -1225,6 +1225,7 @@ The `direnv` module shows the status of the current rc file if one is present. T
| `detect_files` | `['.envrc']` | Which filenames should trigger this module. |
| `detect_folders` | `[]` | Which folders should trigger this module. |
| `allowed_msg` | `'allowed'` | The message displayed when an rc file is allowed. |
+| `not_allowed_msg` | `'not allowed'` | The message displayed when an rc file is not_allowed. |
| `denied_msg` | `'denied'` | The message displayed when an rc file is denied. |
| `loaded_msg` | `'loaded'` | The message displayed when an rc file is loaded. |
| `unloaded_msg` | `'not loaded'` | The message displayed when an rc file is not loaded. |