blob: 9372c55dbbe5e3df06416ebfc5ee136e0fcb5f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local command = require "core.command"
local config = require "core.config"
command.add(nil, {
["draw-whitespace:toggle"] = function()
config.draw_whitespace = not config.draw_whitespace
end,
["draw-whitespace:disable"] = function()
config.draw_whitespace = false
end,
["draw-whitespace:enable"] = function()
config.draw_whitespace = true
end,
})
|