From 45b50c643fde02cec27f8997011cd6401af6b629 Mon Sep 17 00:00:00 2001 From: Pete Riley Date: Mon, 18 Dec 2023 15:39:27 -0800 Subject: [PATCH 1/3] Update README.md Added some love for the tcsh/csh --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0591c37..4690ef0 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,14 @@ end +```tcsh/csh +alias lk 'cd "`walk \!:*`"' +``` + + + + + ```powershell function lk() { cd $(walk $args) @@ -73,7 +81,6 @@ function lk() { - Now use `lk` command to start walking. ## Usage From 2f1ce1ee5b956df5c24670f971e7b8a313bf23d2 Mon Sep 17 00:00:00 2001 From: Pete Riley Date: Tue, 19 Dec 2023 04:38:29 -0800 Subject: [PATCH 2/3] Update README.md Added a title to the new column in the shell table --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4690ef0..483dbee 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Put the next function into the **.bashrc** or a similar config: Bash/Zsh Fish + (t)csh PowerShell @@ -64,6 +65,7 @@ end ```tcsh/csh +Add the following to your .cshrc file: alias lk 'cd "`walk \!:*`"' ``` From d4cb4c756c48c771360f1597952bd62a4a21c222 Mon Sep 17 00:00:00 2001 From: Pete Riley Date: Tue, 19 Dec 2023 04:40:07 -0800 Subject: [PATCH 3/3] Update README.md modified the wording in the shell table. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 483dbee..3294620 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ go install github.com/antonmedv/walk@latest Or download [prebuild binaries](https://github.com/antonmedv/walk/releases). -Put the next function into the **.bashrc** or a similar config: +Put the next function/alias into the **.bashrc** or a similar config: @@ -65,7 +65,6 @@ end
```tcsh/csh -Add the following to your .cshrc file: alias lk 'cd "`walk \!:*`"' ```