Skip to content

Commit

Permalink
Update plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Shatur committed May 31, 2024
1 parent da1eb41 commit d64eacd
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion pack/plugins/start/cmp-git
2 changes: 1 addition & 1 deletion pack/plugins/start/diffview.nvim
2 changes: 1 addition & 1 deletion pack/plugins/start/leap.nvim
2 changes: 1 addition & 1 deletion pack/plugins/start/neogit
Submodule neogit updated 52 files
+10 −3 .github/workflows/lint.yml
+30 −15 .github/workflows/test.yml
+1 −0 .gitignore
+17 −0 .rubocop.yml
+1 −0 .ruby-version
+19 −0 Gemfile
+152 −0 Gemfile.lock
+1 −1 Makefile
+5 −0 README.md
+2 −2 lua/neogit.lua
+0 −4 lua/neogit/buffers/commit_view/init.lua
+31 −18 lua/neogit/buffers/status/actions.lua
+23 −5 lua/neogit/buffers/status/init.lua
+9 −0 lua/neogit/config.lua
+1 −0 lua/neogit/lib/git/branch.lua
+6 −4 lua/neogit/lib/git/cli.lua
+2 −1 lua/neogit/lib/git/index.lua
+1 −2 lua/neogit/lib/git/merge.lua
+18 −11 lua/neogit/lib/git/rebase.lua
+1 −1 lua/neogit/lib/git/remote.lua
+14 −4 lua/neogit/lib/git/repository.lua
+1 −1 lua/neogit/lib/state.lua
+2 −2 lua/neogit/lib/util.lua
+6 −1 lua/neogit/popups/branch/actions.lua
+1 −1 lua/neogit/popups/ignore/actions.lua
+14 −5 lua/neogit/popups/pull/actions.lua
+6 −2 lua/neogit/popups/worktree/actions.lua
+4 −0 lua/neogit/process.lua
+154 −0 spec/popups/branch_popup_spec.rb
+47 −0 spec/spec_helper.rb
+14 −0 spec/support/context/git.rb
+8 −0 spec/support/context/nvim.rb
+23 −0 spec/support/dependencies.rb
+21 −0 spec/support/helpers.rb
+0 −0 spec/support/init.lua
+98 −0 spec/support/neovim_client.rb
+1 −15 tests/init.lua
+7 −6 tests/specs/neogit/lib/git/branch_spec.lua
+2 −2 tests/specs/neogit/lib/git/cli_spec.lua
+78 −40 tests/specs/neogit/lib/git/log_spec.lua
+17 −16 tests/specs/neogit/lib/git/status_spec.lua
+6 −2 tests/specs/neogit/lib/record_spec.lua
+0 −356 tests/specs/neogit/popups/branch_spec.lua
+0 −104 tests/specs/neogit/popups/ignore_spec.lua
+0 −254 tests/specs/neogit/popups/log_spec.lua
+0 −176 tests/specs/neogit/popups/rebase_spec.lua
+0 −42 tests/specs/neogit/popups/remote_spec.lua
+0 −66 tests/specs/neogit/popups/stash_spec.lua
+0 −182 tests/specs/neogit/popups/worktree_spec.lua
+0 −461 tests/specs/neogit/status_spec.lua
+3 −3 tests/util/git_harness.lua
+22 −0 tests/util/util.lua
2 changes: 1 addition & 1 deletion pack/plugins/start/noice.nvim
2 changes: 1 addition & 1 deletion pack/plugins/start/nvim-dap-ui
2 changes: 1 addition & 1 deletion pack/plugins/start/nvim-treesitter
2 changes: 1 addition & 1 deletion pack/plugins/start/substitute.nvim

0 comments on commit d64eacd

Please sign in to comment.