lazy.nvim/lua/lazy
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
..
core chore(main): release 10.3.0 (#948) 2023-07-22 10:23:12 +02:00
manage fix(build): allow `build` command to override plugin's build and option to disable warning 2023-06-30 21:19:33 +02:00
view Make commit pattern more accurate (#973) 2023-08-26 16:47:18 +02:00
docs.lua perf: new file-based cache that ensures correct rtp order (#532) 2023-02-13 12:01:56 +01:00
example.lua docs: updated docs. Fixes #667 2023-03-18 08:57:20 +01:00
health.lua fix typo in health.lua (#933) 2023-07-16 08:50:53 +02:00
help.lua feat(help): allow disabling README magic (#663) 2023-03-17 16:18:02 +01:00
init.lua style(cache): fix comment case typo (#915) 2023-07-06 16:30:54 +02:00
state.lua feat(checker): checker will now save last check time and only check at configured frequency even after restarting Neovim 2023-01-18 08:39:02 +01:00
stats.lua fix(stats): corrected typo in cputime() for Linux (#916) 2023-07-06 16:19:08 +02:00
status.lua feat(ui): added statusline component to show pending updates 2022-12-05 20:49:45 +01:00
types.lua fix(plugin): rename weak => optional. Makes more sense :) 2023-05-22 14:53:36 +02:00
util.lua style: lua annotations 2023-07-20 23:49:02 +02:00