We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5db240a commit c873128Copy full SHA for c873128
lua/quarto/runner/init.lua
@@ -84,12 +84,12 @@ local function run(range, multi_lang)
84
end
85
86
otterkeeper.sync_raft(buf)
87
- local oa = otterkeeper._otters_attached[buf]
+ local oa = otterkeeper.rafts[buf]
88
if oa == nil then
89
vim.notify("[Quarto] it seems that the code runner isn't initialized for this buffer.", vim.log.levels.ERROR)
90
return
91
92
- local chunks = otterkeeper._otters_attached[buf].code_chunks
+ local chunks = otterkeeper.rafts[buf].code_chunks
93
94
local filtered = extract_code_cells_in_range(lang, chunks, range)
95
0 commit comments