#parent/child/subchild
.
tag:#parent
will now match #parent/child
.line:(...)
will perform the subquery on a line-by-line basis, rather than a file-by-file basis. For example, line:(foo bar)
will only match foo
and bar
if they're on the same line.block:(...)
will perform the subquery on a block-by-block basis. This is expensive computationally as it requires parsing each file, which means this is likely slower than other modes.section:(...)
will perform the subquery on a section-by-section basis. A section starts from a heading and ends before the next heading.Cmd+Shift+V
can now paste as plaintext on macOS, in addition to the previous Cmd+Shift+Option+V
(seriously, who came up with this default hotkey?).%20
now decode properly when navigating using the editor.Setting
and BaseComponent
now have a setDisabled
function that will disable its control. Disabling a setting will disable all of its components.Scope.registerKey
is now deprecated. It is replaced by Scope.register
.