Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 21, 2023
1 parent de13b3f commit 17d85f0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions doc/flash.nvim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,26 @@ Show diagnostics at target, without changing cursor position ~
})
<

Match beginning of words only ~

>lua
require("flash").jump({
search = {
mode = function(str)
return "\\<" .. str
end,
},
})
<

Initialize flash with the word under the cursor ~

>lua
require("flash").jump({
pattern = vim.fn.expand("<cword>"),
})
<


ALTERNATIVES *flash.nvim-flash.nvim-alternatives*

Expand Down

0 comments on commit 17d85f0

Please sign in to comment.