Fix the order of notes
This commit is contained in:
parent
bee2b54c31
commit
a134bdbc52
1 changed files with 1 additions and 1 deletions
2
q-notes
2
q-notes
|
@ -10,7 +10,7 @@ elif [[ "$1" == "--hint" ]]; then
|
|||
shift
|
||||
elif [[ "$1" == "--complete" ]]; then
|
||||
shift
|
||||
notes.sh -l | awk '{printf("%s n", $1); for (i=2; i<=NF; i++) printf(" %s", $i); print("");}'
|
||||
notes.sh -l | tac | awk '{printf("%s n", $1); for (i=2; i<=NF; i++) printf(" %s", $i); print("");}'
|
||||
elif [[ "$1" == "--preview" ]]; then
|
||||
shift
|
||||
notes.sh -p "$1"
|
||||
|
|
Loading…
Reference in a new issue