lazy.nvim/lua/lazy/view
Darkhan 4eb3e932e5
Make commit pattern more accurate (#973)
Sometimes when hovering over updated plugins and triggering `diff`
with `d` key, I get an empty `diff` view. I traced the problem to a very
generic `commit_pattern` which currently matches any alphanumeric sequence
of 7 characters surrounded by "word boundary" / frontier patterns.
I adjusted the regex to match only `[a-z0-9] * 7` which should make this
issue appear less. I am keeping the older frontier sets `%f[%w]` and `%f[%W]`
because if I switch to `%f[a-f0-9]` and `%f[^0-9a-f]` I will be matching
strings like `zzz1234567xxx`.
2023-08-26 16:47:18 +02:00
..
colors.lua feat(ui): show the loaded icon for local plugins in a different color 2023-05-13 13:24:38 +02:00
commands.lua feat(commands): added highly experimental `Lazy reload ...` command. See #445 2023-05-27 15:19:55 +02:00
config.lua feat(commands): added highly experimental `Lazy reload ...` command. See #445 2023-05-27 15:19:55 +02:00
diff.lua fix(diffview): fixed parameter for showing single commit with DiffView. Fixes #304 2023-01-09 08:05:32 +01:00
float.lua fix(ui): set wo options with local. don't use `vim.wo`. See #829 2023-06-12 08:28:14 +02:00
init.lua Make commit pattern more accurate (#973) 2023-08-26 16:47:18 +02:00
render.lua feat(view): add option `ui.pills`. Set to `false` to disable the top buttons in the lazy window (#938) 2023-07-20 23:48:50 +02:00
sections.lua feat(ui): added section with disabled plugins 2023-01-03 10:43:10 +01:00
text.lua fix(ui): make progress bar work again 2023-05-27 16:11:01 +02:00