Skip to content
t9md edited this page Mar 1, 2017 · 7 revisions
  • Used to filter items on narrow-editor.
  • You can input query on first line of narrow-editor.
  • Basically query is matched as-is( No regular expression support currently ).
  • Can chain multiple query separating by whilte-space.
    • e.g. foo bar means, select items matches foo and bar.
  • * is treated as wildcard, internally converted to .* regular expression.
    • To search * itself, use * solely separate it by space.
    • Or use double **. ( e.g. To match to string *hello use **hello as query).
  • ! is treated as negate, !foo means 'not matching foo'.
    • If config negateNarrowQueryByEndingExclamation set to true, you can also use foo!.
  • Query case sensitivity is configurable with config caseSensitivityForNarrowQuery.
    • Can override global setting on each provider if you want.
  • See also Query expressiveness.
Clone this wiki locally