Skip to content

Commit

Permalink
feat(config): show labels for current jump target by default
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 21, 2023
1 parent 6cd4414 commit 0dcc00e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Install the plugin with your preferred package manager:
label = {
-- add a label for the first match in the current window.
-- you can always jump to the first match with `<CR>`
current = false,
current = true,
-- show the label after the match
after = true, ---@type boolean|number[]
-- show the label before the match
Expand Down
2 changes: 1 addition & 1 deletion lua/flash/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ local defaults = {
uppercase = true,
-- add a label for the first match in the current window.
-- you can always jump to the first match with `<CR>`
current = false,
current = true,
-- show the label after the match
after = true, ---@type boolean|number[]
-- show the label before the match
Expand Down

0 comments on commit 0dcc00e

Please sign in to comment.