Fixing trimwhitespace plugin bug

This commit is contained in:
Willie Lawrence 2020-05-10 11:26:44 -03:00
parent c4be26ccaa
commit a17fe46c05
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ end
command.add("core.docview", {
["trim-whitespace:trim-trailing-whitespace"] = function()
trim_trailing_whitespace(self.active_view.doc)
trim_trailing_whitespace(core.active_view.doc)
end,
})