diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-07 14:13:36 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-07 14:13:36 +0200 |
| commit | 73506be5f8b267eda4df06f44e0942ec6ef64a14 (patch) | |
| tree | ddbaddd6a7a476147608d460861a708ce67cac0c /.config | |
| parent | dc3b2f37b4d860590cc2b6c6ae61ed8d0ef1ed1f (diff) | |
| download | dotfiles-73506be5f8b267eda4df06f44e0942ec6ef64a14.tar.gz dotfiles-73506be5f8b267eda4df06f44e0942ec6ef64a14.zip | |
misc(nvim): remove unused parameter
Diffstat (limited to '.config')
| -rw-r--r-- | .config/nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index eeef2e9..3b81fa3 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -69,7 +69,7 @@ vim.api.nvim_create_autocmd({ "FileChangedShell" }, { desc = "Prompt user to reload buffer when modified outside of nvim", group = vim.g.dotfiles.augroup, pattern = "*", - callback = function(opts) + callback = function() if vim.v.fcs_reason == "conflict" or vim.v.fcs_reason == "changed" then vim.v.fcs_choice = "ask" end |
