1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:40:05 +08:00
SpaceVim/bundle/indent-blankline.nvim/lua/indent_blankline/commands.lua

59 lines
1.6 KiB
Lua
Raw Normal View History

local M = {}
M.refresh = function(bang, scroll)
scroll = scroll or false
if bang then
local win = vim.api.nvim_get_current_win()
vim.cmd(string.format([[noautocmd windo lua require("indent_blankline").refresh(%s)]], tostring(scroll)))
if vim.api.nvim_win_is_valid(win) then
vim.api.nvim_set_current_win(win)
end
else
require("indent_blankline").refresh(scroll)
end
end
M.enable = function(bang)
if bang then
vim.g.indent_blankline_enabled = true
local win = vim.api.nvim_get_current_win()
vim.cmd [[noautocmd windo lua require("indent_blankline").refresh(false)]]
vim.api.nvim_set_current_win(win)
else
vim.b.indent_blankline_enabled = true
require("indent_blankline").refresh(false)
end
end
M.disable = function(bang)
if bang then
vim.g.indent_blankline_enabled = false
local buffers = vim.api.nvim_list_bufs()
for _, buffer in pairs(buffers) do
vim.api.nvim_buf_clear_namespace(buffer, vim.g.indent_blankline_namespace, 1, -1)
end
else
vim.b.indent_blankline_enabled = false
vim.b.__indent_blankline_active = false
vim.api.nvim_buf_clear_namespace(0, vim.g.indent_blankline_namespace, 1, -1)
end
end
M.toggle = function(bang)
if bang then
if vim.g.indent_blankline_enabled then
M.disable(bang)
else
M.enable(bang)
end
else
if vim.b.__indent_blankline_active then
M.disable(bang)
else
M.enable(bang)
end
end
end
return M