Merge pull request #70 from cptx032/master

Fixing trimwhitespace plugin bug
This commit is contained in:
rxi 2020-05-10 15:41:13 +01:00 committed by GitHub
commit 3067443432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,
})