Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nix): add semicolon after assignments #455

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lua/nvim-autopairs/rules/basic.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
local Rule = require("nvim-autopairs.rule")
local cond = require("nvim-autopairs.conds")
local ts_conds = require('nvim-autopairs.ts-conds')
local utils = require('nvim-autopairs.utils')

local function quote_creator(opt)
Expand Down Expand Up @@ -79,6 +80,15 @@ local function setup(opt)
"astro",
}
):only_cr():use_regex(true),
Rule("= ", ";", "nix")
:with_pair(function(info)
local prev_char = info.line:sub(info.col - 2, info.col - 2)
local rest_of_line = info.line:sub(info.col)
return ts_cond.is_not_ts_node_comment()
and prev_char:match('[%w%s]') ~= nil
and rest_of_line:match('^%s*$') ~= nil
end)
:set_end_pair_length(1),
}
return rules
end
Expand Down