dotfiles/.config/nvim/after/ftplugin/jsonc.lua
2024-01-17 09:52:25 +01:00

13 lines
370 B
Lua

vim.opt.conceallevel = 0
-- When creating a new line with o, make sure there is a trailing comma on the current line
vim.keymap.set("n", "o", function()
local line = vim.api.nvim_get_current_line()
local should_add_comma = string.find(line, "[^,{[]$")
if should_add_comma then
return "A,<cr>"
else
return "o"
end
end, { buffer = true, expr = true })