From 9f2f5293e335f85e26479c5e1a59cee088736657 Mon Sep 17 00:00:00 2001 From: Aman Kumar Sinha <45752299+Perniciosius@users.noreply.github.com> Date: Thu, 7 Oct 2021 05:01:26 +0530 Subject: [PATCH] docs: fix custom commands example (#3129) --- docs/config/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config/README.md b/docs/config/README.md index 669a08fc..c6ae7b04 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -3392,12 +3392,12 @@ with shell details and starship configuration if you hit such scenario. [custom.foo] command = "echo foo" # shows output of command -files = ["foo"] # can specify filters +files = ["foo"] # can specify filters but wildcards are not supported when = """ test "$HOME" == "$PWD" """ format = " transcending [$output]($style)" [custom.time] command = "time /T" -files = ["*.pst"] +extensions = ["pst"] # filters *.pst files shell = ["pwsh.exe", "-NoProfile", "-Command", "-"] ```