Merge branch 'folke:main' into discard_deps_revisited

This commit is contained in:
abeldekat 2023-09-09 06:22:47 +00:00 committed by GitHub
commit 6582ddb352
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -809,6 +809,7 @@ This makes it easier for users, so they no longer need to specify a `build` comm
## 📦 Other Neovim Plugin Managers in Lua ## 📦 Other Neovim Plugin Managers in Lua
- [pckr.nvim](https://github.com/lewis6991/pckr.nvim)
- [packer.nvim](https://github.com/wbthomason/packer.nvim) - [packer.nvim](https://github.com/wbthomason/packer.nvim)
- [paq-nvim](https://github.com/savq/paq-nvim) - [paq-nvim](https://github.com/savq/paq-nvim)
- [neopm](https://github.com/ii14/neopm) - [neopm](https://github.com/ii14/neopm)

View file

@ -1,4 +1,4 @@
*lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 July 30 *lazy.nvim.txt* For Neovim >= 0.8.0 Last change: 2023 August 26
============================================================================== ==============================================================================
Table of Contents *lazy.nvim-table-of-contents* Table of Contents *lazy.nvim-table-of-contents*
@ -961,6 +961,7 @@ command.
OTHER NEOVIM PLUGIN MANAGERS IN LUA*lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua* OTHER NEOVIM PLUGIN MANAGERS IN LUA*lazy.nvim-lazy.nvim-other-neovim-plugin-managers-in-lua*
- pckr.nvim <https://github.com/lewis6991/pckr.nvim>
- packer.nvim <https://github.com/wbthomason/packer.nvim> - packer.nvim <https://github.com/wbthomason/packer.nvim>
- paq-nvim <https://github.com/savq/paq-nvim> - paq-nvim <https://github.com/savq/paq-nvim>
- neopm <https://github.com/ii14/neopm> - neopm <https://github.com/ii14/neopm>

View file

@ -159,7 +159,7 @@ function M:open_url(path)
end end
function M:setup_patterns() function M:setup_patterns()
local commit_pattern = "%f[%w](" .. string.rep("%w", 7) .. ")%f[%W]" local commit_pattern = "%f[%w](" .. string.rep("[a-f0-9]", 7) .. ")%f[%W]"
self:on_pattern(ViewConfig.keys.hover, { self:on_pattern(ViewConfig.keys.hover, {
[commit_pattern] = function(hash) [commit_pattern] = function(hash)
self:diff({ commit = hash, browser = true }) self:diff({ commit = hash, browser = true })