1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-06 22:26:33 +02: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 ## fish only, not zsh or bash
if [[ "$(basename $SHELL)" == "fish" ]]; then if [[ "$(basename $SHELL)" == "fish" ]]; then
SkimGrepHighlightFish && exit 0 SkimGrepHighlightFish | xargs realpath && exit 0
else else
SkimGrep && exit 0 SkimGrep | xargs realpath && exit 0
fi fi