Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 557 Bytes

searching-for-notes-that-match-a-query.md

File metadata and controls

16 lines (11 loc) · 557 Bytes

Searching for Notes that Match a Query

Searching for a Match in a Note Title

$ zk list -m $TITLE_QUERY # -m, --match=$TITLE_QUERY,...            Terms to search for in the notes.

Searching for a Match in a Note Title or Note Contents

To include note contents in our search, we'll need to perform our search in interactive mode using junegunn/fzf. fzf is a general-purpose command-line fuzzy finder.

$ zk list -i # -i, --interactive                Select notes interactively with fzf.