@@ -10,25 +10,22 @@ local required_version = '2.0.0'
10
10
function M .install ()
11
11
local version_info = M .get_version_info ()
12
12
if not version_info .installed then
13
- M .run (' install' )
14
- return true
13
+ return M .run (' install' )
15
14
end
16
15
17
16
-- Parser found but in invalid location
18
17
if not version_info .install_location then
19
- M .run (' install' )
18
+ local result = M .run (' install' )
20
19
M .notify_conflicting_parsers (version_info .conflicting_parsers )
21
- return true
20
+ return result
22
21
end
23
22
24
23
if version_info .outdated then
25
- M .run (' update' )
26
- return true
24
+ return M .run (' update' )
27
25
end
28
26
29
27
if version_info .version_mismatch then
30
- M .reinstall ()
31
- return true
28
+ return M .reinstall ()
32
29
end
33
30
34
31
M .notify_conflicting_parsers (version_info .conflicting_parsers )
@@ -93,7 +90,9 @@ function M.get_version_info()
93
90
end
94
91
95
92
function M .get_parser_locations ()
96
- local installed_org_parsers = vim .api .nvim_get_runtime_file (' parser/org.so' , true )
93
+ local installed_org_parsers = vim .tbl_map (function (item )
94
+ return vim .fn .fnamemodify (item , ' :p' )
95
+ end , vim .api .nvim_get_runtime_file (' parser/org.so' , true ))
97
96
local parser_path = M .get_parser_path ()
98
97
local install_location = nil
99
98
local conflicting_parsers = {}
@@ -229,6 +228,7 @@ function M.get_path(url, type)
229
228
end
230
229
231
230
--- @param type ? ' install' | ' update' | ' reinstall' '
231
+ --- @return OrgPromise<boolean>
232
232
function M .run (type )
233
233
local url = ' https://github.com/nvim-orgmode/tree-sitter-org'
234
234
local compiler = vim .tbl_filter (function (exe )
@@ -241,6 +241,7 @@ function M.run(type)
241
241
242
242
local compiler_args = M .select_compiler_args (compiler )
243
243
local path = nil
244
+ local lock_file = M .get_lock_file ()
244
245
245
246
return M .get_path (url , type )
246
247
:next (function (directory )
@@ -250,17 +251,18 @@ function M.run(type)
250
251
cwd = directory ,
251
252
})
252
253
end )
253
- :next (vim . schedule_wrap ( function (code )
254
+ :next (function (code )
254
255
if code ~= 0 then
255
256
error (' [orgmode] Failed to compile parser' , 0 )
256
257
end
257
258
local source = vim .fs .joinpath (path , ' parser.so' )
258
- local destination = M .get_parser_path ()
259
- local renamed = vim .fn .rename (source , destination )
260
- if renamed ~= 0 then
261
- error (' [orgmode] Failed to move generated tree-sitter parser to runtime folder' , 0 )
259
+ local copied , err = vim .uv .fs_copyfile (source , M .get_parser_path ())
260
+ if not copied then
261
+ error (' [orgmode] Failed to copy generated tree-sitter parser to runtime folder: ' .. err , 0 )
262
262
end
263
- utils .writefile (M .get_lock_file (), vim .json .encode ({ version = required_version })):wait ()
263
+ return utils .writefile (lock_file , vim .json .encode ({ version = required_version }))
264
+ end )
265
+ :next (vim .schedule_wrap (function ()
264
266
local msg = { ' Tree-sitter grammar installed!' }
265
267
266
268
if type == ' update' then
0 commit comments