aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2023-03-06 11:19:51 +0800
committerHsieh Chin Fan <pham@topo.tw>2023-03-06 11:19:51 +0800
commitd073346d4252f1cdb57d002f888d49e9557db765 (patch)
tree1410f230e3b833c00324922cf54ed76063c43335
parent0aa0a6ad04502d00ec3b6831cf947253e2a61b71 (diff)
Update
-rw-r--r--zsh/_ww.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/_ww.sh b/zsh/_ww.sh
index b07af85..57bb945 100644
--- a/zsh/_ww.sh
+++ b/zsh/_ww.sh
@@ -3,8 +3,8 @@
3function _ww() { 3function _ww() {
4 compadd -S '' $( 4 compadd -S '' $(
5 cd ~/log && \ 5 cd ~/log && \
6 find -not -path "./logseq/*" -name '*.md' -printf "%f\n" | \ 6 find -name '*.md' | \
7 sed -E '/^[0-9]{4}-[0-9]{2}-[0-9]{2}/d; s/.md$//' 7 sed -E 's#./##; s/.md$//'
8 ) 8 )
9} 9}
10 10