vimPlugins: update on 2026-04-15 (#510357)

This commit is contained in:
Austin Horstman
2026-04-16 14:50:31 +00:00
committed by GitHub
3 changed files with 379 additions and 395 deletions
File diff suppressed because it is too large Load Diff
@@ -328,6 +328,10 @@ assertNoAdditions {
dependencies = [ self.plenary-nvim ];
};
blink-cmp-latex = super.blink-cmp-latex.overrideAttrs {
dependencies = [ self.blink-cmp ];
};
blink-cmp-nixpkgs-maintainers = super.blink-cmp-nixpkgs-maintainers.overrideAttrs {
dependencies = [ self.blink-cmp ];
};
@@ -2973,7 +2977,6 @@ assertNoAdditions {
openscad-nvim = super.openscad-nvim.overrideAttrs {
buildInputs = [
zathura
htop
openscad
];
@@ -2985,7 +2988,6 @@ assertNoAdditions {
];
patches = [
(replaceVars ./patches/openscad.nvim/program_paths.patch {
htop = lib.getExe htop;
openscad = lib.getExe openscad;
})
];
@@ -1,26 +1,8 @@
diff --git a/autoload/health/openscad_nvim.vim b/autoload/health/openscad_nvim.vim
index d6d4b4c..9853877 100644
--- a/autoload/health/openscad_nvim.vim
+++ b/autoload/health/openscad_nvim.vim
@@ -15,7 +15,7 @@ function! s:check_zathura_installed() abort
endfunction
function! s:check_htop_installed() abort
- if !executable('htop')
+ if !executable('@htop@')
call v:lua.vim.health.error('has(htop)','install htop')
else
call v:lua.vim.health.ok("htop is installed")
diff --git a/lua/openscad.lua b/lua/openscad.lua
index 0a26d08..1264989 100644
index f889463..dde5b97 100644
--- a/lua/openscad.lua
+++ b/lua/openscad.lua
@@ -126,7 +126,7 @@ function M.exec_openscad()
jobCommand = '/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD ' .. filename
else
-- TODO: What about Windows?
- jobCommand = 'openscad ' .. filename
+ jobCommand = '@openscad@ ' .. filename
end
vim.fn.jobstart(jobCommand)
@@ -147 +147 @@ function M.exec_openscad()
- or 'openscad'
+ or '@openscad@'
--