Skip to content

Commit

Permalink
fix(nix): don't add parenthesis after functions (#450)
Browse files Browse the repository at this point in the history
Nix is like Bash, functions are called just with spaces to separate
arguments.
  • Loading branch information
ribru17 committed Apr 6, 2024
1 parent dbfc1c3 commit 5793a8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/nvim-autopairs/completion/cmp.lua
Expand Up @@ -50,7 +50,8 @@ M.filetypes = {
haskell = false,
purescript = false,
sh = false,
bash = false
bash = false,
nix = false
}

M.on_confirm_done = function(opts)
Expand Down

0 comments on commit 5793a8c

Please sign in to comment.