Fixed doc, and fixed plugin load.
This commit is contained in:
parent
c461cfae93
commit
152fd6c66c
|
@ -342,11 +342,11 @@ local style = require "core.style"
|
||||||
|
|
||||||
-- enable or disable plugin loading setting config entries:
|
-- enable or disable plugin loading setting config entries:
|
||||||
|
|
||||||
-- enable trimwhitespace, otherwise it is disable by default:
|
-- enable plugins.trimwhitespace, otherwise it is disable by default:
|
||||||
-- config.trimwhitespace = true
|
-- config.plugins.trimwhitespace = true
|
||||||
--
|
--
|
||||||
-- disable detectindent, otherwise it is enabled by default
|
-- disable detectindent, otherwise it is enabled by default
|
||||||
-- config.detectindent = false
|
-- config.plugins.detectindent = false
|
||||||
]])
|
]])
|
||||||
init_file:close()
|
init_file:close()
|
||||||
end
|
end
|
||||||
|
@ -693,7 +693,7 @@ function core.load_plugins()
|
||||||
local list = refused_list[plugin_dir:find(USERDIR) == 1 and 'userdir' or 'datadir'].plugins
|
local list = refused_list[plugin_dir:find(USERDIR) == 1 and 'userdir' or 'datadir'].plugins
|
||||||
table.insert(list, filename)
|
table.insert(list, filename)
|
||||||
end
|
end
|
||||||
if version_match and core.plugins[basename] ~= false then
|
if version_match and config.plugins[basename] ~= false then
|
||||||
local ok = core.try(require, "plugins." .. basename)
|
local ok = core.try(require, "plugins." .. basename)
|
||||||
if ok then core.log_quiet("Loaded plugin %q from %s", basename, plugin_dir) end
|
if ok then core.log_quiet("Loaded plugin %q from %s", basename, plugin_dir) end
|
||||||
if not ok then
|
if not ok then
|
||||||
|
|
Loading…
Reference in New Issue