mirror of
https://github.com/mickael-menu/zk
synced 2024-11-07 15:20:21 +00:00
5.2 KiB
5.2 KiB
Changelog
All notable changes to this project will be documented in this file.
Unreleased
Added
- Pair
--match
with--exact-match
/-e
to search for (case insensitive) exact occurrences in your notes.- This can be useful when looking for terms including special characters, such as
[[name]]
.
- This can be useful when looking for terms including special characters, such as
- Generating links to notes.
- Use the
{{link}}
template variable when formatting notes to print a link to the note, relative to the working directory. - Use the
{{format-link path title}}
template helper to render a custom link. - Customize the link format from the note formats settings. You can for example choose regular Markdown links, Wiki-links or a custom format.
- Use the
Changed
- The local configuration file (
.zk/config.toml
) is not required anymore in a notebook's.zk
directory. --notebook-dir
does not change the working directory anymore, instead it sets manually the current notebook and disable auto-discovery. Use the new--working-dir
/-W
flag to runzk
as if it was started from this path instead of the current working directory.- For convenience,
ZK_NOTEBOOK_DIR
behaves like setting a--working-dir
fallback, instead of--notebook-dir
. This way, paths will be relative to the root of the notebook. - A practical use case is to use
zk list -W .
when outside a notebook. This will list the notes inZK_NOTEBOOK_DIR
but print paths relative to the current directory, making them actionable from your terminal emulator.
- For convenience,
0.3.0
Added
- Global
zk
configuration at~/.config/zk/config.toml
.- Useful to share aliases or default settings across several notebooks.
- This is the same format as a notebook configuration file.
- Shared templates can be stored in
~/.config/zk/templates/
. XDG_CONFIG_HOME
is taken into account.
- Use
--notebook-dir
or setZK_NOTEBOOK_DIR
to runzk
as if it was started from this path instead of the current working directory.- This allows running
zk
without being in a notebook. - By setting
ZK_NOTEBOOK_DIR
in your shell configuration file (e.g.~/.profile
), you are declaring a default global notebook which will be used whenzk
is not in a notebook. - When the notebook directory is set explicitly, any path given as argument will be relative to it instead of the actual working directory.
- This allows running
- Find every note whose title is mentioned in the note you are working on with
--mentioned-by file.md
.- To refer to a note using several names, you can use the YAML frontmatter key
aliases
. For example the note titled "Artificial Intelligence" might have:aliases: [AI, robot]
- To find only unlinked mentions, pair it with
--no-linked-by
, e.g.--mentioned-by file.md --no-linked-by file.md
.
- To refer to a note using several names, you can use the YAML frontmatter key
- Declare named filters in the configuration file to reuse note filtering options used frequently together, for example:
[filter] recents = "--sort created- --created-after 'last two weeks'"
$ zk list recents --limit 10 $ zk edit recents --interactive
Fixed
- #4 Terminal borked when piping content with Vim
0.2.1
Fixed
- Looking for mentions of a note with a title containing double quotes.
- Crash when parsing certain link snippets.
0.2.0
Added
- Support for tags.
- Filter notes by their tags using
--tag "history, europe"
.- To match notes associated with either tags, use a pipe
|
orOR
(all caps), e.g.--tag "inbox OR todo"
. - If you want to exclude notes having a particular tag, prefix it with
-
orNOT
(all caps), e.g.--tag "NOT done"
. - Use glob patterns to match multiple tags, e.g.
--tag "book-*"
.
- To match notes associated with either tags, use a pipe
- Many tag flavors are supported:
#hashtags
,:colon:separated:tags:
(opt-in) and even Bear's#multi-word tags#
(opt-in). If you prefer to use a YAML frontmatter, list your tags with the keytags
orkeywords
.
- Filter notes by their tags using
- Find every mention of a note in your notebook with
--mention file.md
.- This will look for occurrences of the note's title in other notes.
- To refer to a note using several names, you can use the YAML frontmatter key
aliases
. For example the note titled "Artificial Intelligence" might have:aliases: [AI, robot]
- To find only unlinked mentions, pair it with
--no-link-to
, e.g.--mention file.md --no-link-to file.md
.
- Print metadata from the YAML frontmatter in
list
output using{{metadata.<key>}}
, e.g.{{metadata.description}}
. Keys are normalized to lower case. - Use the YAML frontmatter key
date
for the note creation date, when provided. - Access environment variables from note templates with the
env.<key>
template variable, e.g.{{env.PATH}}
.
Changed
- Renamed
--linking-to
filtering option to--link-to
. - Multiple
--extra
variables are now separated by,
instead of;
.