1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-02-22 13:42:26 +01:00

NoteFind Prints Absolute path

This commit is contained in:
Ryan Greenup 2020-07-15 01:53:59 +10:00
parent bd3a1cdfd2
commit b33ed3c6b1

View File

@ -33,9 +33,9 @@ SkimAndGrep () {
## fish only, not zsh or bash
if [[ "$(basename $SHELL)" == "fish" ]]; then
SkimGrepHighlightFish && exit 0
SkimGrepHighlightFish | xargs realpath && exit 0
else
SkimGrep && exit 0
SkimGrep | xargs realpath && exit 0
fi