plugin linewrapping: added priority

Since the linewrapping plugin modifies some of the DocView line
calculation and positioning functions we need to make sure of loading it
before other plugins. This way we make sure that plugins that also overwrite
and depend on DocView functionality aren't using the original methods without
the linewrapping changes, which leads to wrong line and column calculations.
This commit is contained in:
jgmdev 2022-06-03 04:13:54 -04:00
parent 5da7467a5c
commit de63574b53
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
-- mod-version:3
-- mod-version:3 --priority:10
local core = require "core"
local common = require "core.common"
local DocView = require "core.docview"