Skip to content

Commit

Permalink
terminal/editors/neovim: keymap fix fold notify
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jul 12, 2024
1 parent 53543d8 commit d84e2f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
local curr_foldcolumn = vim.wo.foldcolumn
if curr_foldcolumn ~= "0" then vim.g.last_active_foldcolumn = curr_foldcolumn end
vim.wo.foldcolumn = curr_foldcolumn == "0" and (vim.g.last_active_foldcolumn or "1") or "0"
vim.notify(string.format("Fold Column %s", bool2str(vim.wo.wrap), "info"))
vim.notify(string.format("Fold Column %s", bool2str(vim.wo.foldcolumn), "info"))
end'';
options = {
desc = "Fold Column toggle";
Expand Down

0 comments on commit d84e2f6

Please sign in to comment.