-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
Submodule LuaSnip
updated
26 files
Submodule bufferline.nvim
updated
28 files
+1 −1 | .github/workflows/formatting.yaml | |
+9 −9 | .github/workflows/test.yaml | |
+9 −39 | README.md | |
+0 −51 | doc/bufferline.txt | |
+124 −155 | lua/bufferline.lua | |
+10 −8 | lua/bufferline/buffers.lua | |
+28 −11 | lua/bufferline/commands.lua | |
+33 −46 | lua/bufferline/config.lua | |
+0 −2 | lua/bufferline/constants.lua | |
+0 −1 | lua/bufferline/custom_area.lua | |
+3 −3 | lua/bufferline/diagnostics.lua | |
+2 −3 | lua/bufferline/duplicates.lua | |
+141 −353 | lua/bufferline/groups.lua | |
+17 −45 | lua/bufferline/highlights.lua | |
+10 −15 | lua/bufferline/models.lua | |
+32 −12 | lua/bufferline/numbers.lua | |
+0 −27 | lua/bufferline/pick.lua | |
+1 −1 | lua/bufferline/sorters.lua | |
+2 −0 | lua/bufferline/state.lua | |
+9 −40 | lua/bufferline/tabpages.lua | |
+2 −6 | lua/bufferline/ui.lua | |
+41 −57 | lua/bufferline/utils.lua | |
+13 −31 | tests/bufferline_spec.lua | |
+1 −3 | tests/custom_area_spec.lua | |
+35 −102 | tests/groups_spec.lua | |
+36 −9 | tests/numbers_spec.lua | |
+4 −0 | tests/sorters_spec.lua | |
+4 −12 | tests/utils.lua |
Submodule cutlass.nvim
updated
5 files
+3 −1 | .github/workflows/panvimdoc.yml | |
+1 −0 | .gitignore | |
+1 −1 | README.md | |
+1 −1 | doc/cutlass.nvim.txt | |
+5 −21 | lua/cutlass.lua |
Submodule null-ls.nvim
updated
12 files
Submodule nvim-cmp
updated
4 files
+8 −11 | .github/ISSUE_TEMPLATE/bug_report.yml | |
+1 −0 | lua/cmp/types/cmp.lua | |
+4 −3 | lua/cmp/utils/keymap.lua | |
+4 −0 | plugin/cmp.lua |
Submodule nvim-lspconfig
updated
5 files
Submodule nvim-treesitter
updated
5 files
+3 −3 | lockfile.json | |
+1 −0 | queries/cuda/highlights.scm | |
+3 −1 | queries/php/indents.scm | |
+9 −8 | queries/python/folds.scm | |
+2 −5 | tests/indent/php_spec.lua |
Submodule octo.nvim
updated
6 files
+7 −4 | lua/octo/colors.lua | |
+3 −10 | lua/octo/commands.lua | |
+11 −2 | lua/octo/gh.lua | |
+1 −1 | lua/octo/pickers/telescope/provider.lua | |
+0 −0 | lua/octo/reviews/init.lua | |
+64 −35 | lua/octo/utils.lua |
Submodule plenary.nvim
updated
4 files
+3 −0 | data/plenary/filetypes/builtin.lua | |
+1 −1 | lua/plenary/async/tests.lua | |
+5 −2 | lua/plenary/async/util.lua | |
+2 −0 | lua/plenary/test_harness.lua |
Submodule telescope-fzf-native.nvim
updated
3 files
+5 −1 | .github/workflows/ci.yml | |
+20 −0 | CMakeLists.txt | |
+27 −5 | README.md |
Submodule telescope-rg.nvim
updated
from c5018a to ff3955
Submodule telescope.nvim
updated
10 files
+12 −2 | doc/telescope.txt | |
+11 −0 | lua/telescope/actions/set.lua | |
+1 −1 | lua/telescope/builtin/init.lua | |
+40 −5 | lua/telescope/builtin/internal.lua | |
+4 −0 | lua/telescope/builtin/lsp.lua | |
+14 −0 | lua/telescope/config.lua | |
+8 −13 | lua/telescope/make_entry.lua | |
+3 −0 | lua/telescope/pickers.lua | |
+1 −1 | lua/telescope/pickers/entry_display.lua | |
+8 −4 | lua/telescope/utils.lua |