about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/vim/plugins/patches/openscad.nvim/program_paths.patch
blob: c6b63682b2a0128fd3abca02860e5e0633707a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
diff --git a/autoload/health/openscad_nvim.vim b/autoload/health/openscad_nvim.vim
index 9022d55..30ef53f 100644
--- a/autoload/health/openscad_nvim.vim
+++ b/autoload/health/openscad_nvim.vim
@@ -7,7 +7,7 @@ function! s:check_nvim_version_minimum() abort
 endfunction
 
 function! s:check_zathura_installed() abort
-	if !executable('zathura')
+	if !executable('@zathura@')
 		call health#report_error('has(zathura)','install zathura')
 	else
 		call health#report_ok("zathura is installed")
@@ -15,7 +15,7 @@ function! s:check_zathura_installed() abort
 endfunction
 
 function! s:check_htop_installed() abort
-	if !executable('htop')
+	if !executable('@htop@')
 		call health#report_error('has(htop)','install htop')
 	else
 		call health#report_ok("htop is installed")
diff --git a/lua/openscad.lua b/lua/openscad.lua
index 7dff2fb..4382003 100644
--- a/lua/openscad.lua
+++ b/lua/openscad.lua
@@ -101,7 +101,7 @@ end
 
 function M.manual()
     local path = U.openscad_nvim_root_dir .. U.path_sep .. "help_source" .. U.path_sep .. "openscad-manual.pdf"
-    api.nvim_command('silent !zathura --fork '  .. path)
+    api.nvim_command('silent !@zathura@ --fork '  .. path)
 end
 
 function M.help()
@@ -125,7 +125,7 @@ function M.exec_openscad()
 		jobCommand = '/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD ' .. vim.fn.expand('%:p')
 	else
 		-- TODO: What about Windows?
-		jobCommand = 'openscad ' .. vim.fn.expand('%:p')
+		jobCommand = '@oepnscad@ ' .. vim.fn.expand('%:p')
 	end
 
 	vim.fn.jobstart(jobCommand)