Skip to content

Commit 5c46592

Browse files
committed
Move bufnr retrieval to above nvim_buf_get_lines
1 parent 181e14d commit 5c46592

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lua/orgmode/files/headline.lua

+7-7
Original file line numberDiff line numberDiff line change
@@ -1023,16 +1023,16 @@ function Headline:_handle_promote_demote(recursive, modifier, dryRun)
10231023
return whole_subtree()
10241024
end
10251025

1026-
local start = self:node():start()
1027-
local end_line = first_child_section:start()
1028-
local lines = modifier(start, vim.api.nvim_buf_get_lines(0, start, end_line, false))
1029-
if dryRun then
1030-
return lines
1031-
end
1032-
10331026
local bufnr = self.file:bufnr()
10341027
if bufnr < 0 then
10351028
-- TODO: What do we return here?? Empty lines? All lines?
1029+
return {}
1030+
end
1031+
1032+
local start = self:node():start()
1033+
local end_line = first_child_section:start()
1034+
local lines = modifier(start, vim.api.nvim_buf_get_lines(bufnr, start, end_line, false))
1035+
if dryRun then
10361036
return lines
10371037
end
10381038

0 commit comments

Comments
 (0)