diff options
Diffstat (limited to 'plugins/ghmarkdown.lua')
-rw-r--r-- | plugins/ghmarkdown.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/ghmarkdown.lua b/plugins/ghmarkdown.lua index 244b144..c7fabdd 100644 --- a/plugins/ghmarkdown.lua +++ b/plugins/ghmarkdown.lua @@ -40,10 +40,8 @@ local html = [[ ]] -command.add("core.docview", { - ["ghmarkdown:show-preview"] = function() - local dv = core.active_view - +command.add("core.docview!", { + ["ghmarkdown:show-preview"] = function(dv) local content = dv.doc:get_text(1, 1, math.huge, math.huge) local esc = { ['"'] = '\\"', ["\n"] = '\\n' } local text = html:gsub("${(.-)}", { |