mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
Merge branch 'folke:main' into discard_deps_revisited
This commit is contained in:
commit
6582ddb352
3 changed files with 4 additions and 2 deletions
|
@ -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)
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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 })
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue