Skip to content

Commit 810f5bd

Browse files
committed
docs: recommend using dlyongemallo's fork of diffview
1 parent 0f007fc commit 810f5bd

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ With <a href="https://github.com/folke/lazy.nvim">Lazy</a>:
4040
dependencies = {
4141
"MunifTanjim/nui.nvim",
4242
"nvim-lua/plenary.nvim",
43-
"sindrets/diffview.nvim",
43+
"dlyongemallo/diffview.nvim", -- Maintained fork of "sindrets/diffview.nvim".
4444
"stevearc/dressing.nvim", -- Recommended but not required. Better UI for pickers.
4545
"nvim-tree/nvim-web-devicons", -- Recommended but not required. Icons in discussion tree.
4646
},
@@ -59,7 +59,7 @@ And with <a href="https://github.com/lewis6991/pckr.nvim">pckr.nvim</a>:
5959
requires = {
6060
"MunifTanjim/nui.nvim",
6161
"nvim-lua/plenary.nvim",
62-
"sindrets/diffview.nvim",
62+
"dlyongemallo/diffview.nvim", -- Maintained fork of "sindrets/diffview.nvim".
6363
"stevearc/dressing.nvim", -- Recommended but not required. Better UI for pickers.
6464
"nvim-tree/nvim-web-devicons", -- Recommended but not required. Icons in discussion tree.
6565
},
@@ -73,6 +73,8 @@ And with <a href="https://github.com/lewis6991/pckr.nvim">pckr.nvim</a>:
7373

7474
Add `branch = "develop",` to your configuration if you want to use the (possibly unstable) development version of `gitlab.nvim`.
7575

76+
`gitlab.nvim` uses the `diffview.nvim` plugin for showing the diffs in a MR. We recommend using [dlyongemallo's](https://github.com/dlyongemallo/diffview.nvim) fork which is the de-facto maintained version of the plugin with many fixes and improvements (e.g., marking files as viewed).
77+
7678
## Contributing
7779

7880
Contributions to the plugin are welcome. Please read [.github/CONTRIBUTING.md](.github/CONTRIBUTING.md) before you start working on a pull request.

doc/gitlab.nvim.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ With Lazy:
6464
dependencies = {
6565
"MunifTanjim/nui.nvim",
6666
"nvim-lua/plenary.nvim",
67-
"sindrets/diffview.nvim",
67+
"dlyongemallo/diffview.nvim", -- Maintained fork of "sindrets/diffview.nvim".
6868
"stevearc/dressing.nvim", -- Recommended but not required. Better UI for pickers.
6969
"nvim-tree/nvim-web-devicons", -- Recommended but not required. Icons in discussion tree.
7070
},
@@ -81,7 +81,7 @@ And with pckr.nvim:
8181
requires = {
8282
"MunifTanjim/nui.nvim",
8383
"nvim-lua/plenary.nvim",
84-
"sindrets/diffview.nvim",
84+
"dlyongemallo/diffview.nvim", -- Maintained fork of "sindrets/diffview.nvim".
8585
"stevearc/dressing.nvim", -- Recommended but not required. Better UI for pickers.
8686
"nvim-tree/nvim-web-devicons", -- Recommended but not required. Icons in discussion tree.
8787
},

lua-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PLUGINS_FOLDER="tests/plugins"
1010
PLUGINS=(
1111
"https://github.com/MunifTanjim/nui.nvim"
1212
"https://github.com/nvim-lua/plenary.nvim"
13-
"https://github.com/sindrets/diffview.nvim"
13+
"https://github.com/dlyongemallo/diffview.nvim"
1414
)
1515

1616
if ! command -v luarocks >/dev/null 2>&1; then

lua/gitlab/health.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ M.check = function(return_results)
3131
package = "plenary",
3232
},
3333
{
34-
name = "sindrets/diffview.nvim",
34+
name = "dlyongemallo/diffview.nvim",
3535
package = "diffview",
3636
},
3737
}

0 commit comments

Comments
 (0)