Merge branch 'main' of github.com:NotAShelf/nvf into minor-lang-refactor

This commit is contained in:
NotAShelf 2024-05-07 01:04:47 +03:00
commit 544c98a03b
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
2 changed files with 7 additions and 3 deletions

View File

@ -12,9 +12,10 @@ Release notes for release 0.7
[frothymarrow](https://github.com/frothymarrow):
- Modified type for [](#opt-vim.visuals.fidget-nvim.setupOpts.progress.display.overrides)
from `anything` to a `submodule` for better type checking
from `anything` to a `submodule` for better type checking.
- Fix null `vim.lsp.mappings` generating an error and not being filtered out.
[horriblename](https://github.com/horriblename)
[horriblename](https://github.com/horriblename):
- Fix broken treesitter-context keybinds in visual mode

View File

@ -16,7 +16,10 @@
mappingDefinitions = self.options.vim.lsp.mappings;
mappings = addDescriptionsToMappings cfg.mappings mappingDefinitions;
mkBinding = binding: action: "vim.api.nvim_buf_set_keymap(bufnr, 'n', '${binding.value}', '<cmd>lua ${action}<CR>', {noremap=true, silent=true, desc='${binding.description}'})";
mkBinding = binding: action:
if binding.value != null
then "vim.api.nvim_buf_set_keymap(bufnr, 'n', '${binding.value}', '<cmd>lua ${action}<CR>', {noremap=true, silent=true, desc='${binding.description}'})"
else "";
in {
config = mkIf cfg.enable {
vim = {