mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 03:23:05 +00:00
follow symlinks for cheatsheet directories
This commit is contained in:
parent
bcf3f3576a
commit
e8a70265f5
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
cheat::find() {
|
cheat::find() {
|
||||||
for path in $(echo "$NAVI_PATH" | tr ':' '\n'); do
|
for path in $(echo "$NAVI_PATH" | tr ':' '\n'); do
|
||||||
find "$path" -iname '*.cheat'
|
find -L "$path" -iname '*.cheat'
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue