diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-12-19 23:45:16 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-12-20 13:18:51 +0900 |
| commit | 5155174cc68b09df85ddeb9ba409646472fca029 (patch) | |
| tree | 94f8f4c1eac690cae031145c9c961ade82c7dad2 /.config/nvim/lua/init/02-commands.lua | |
| parent | b67f8c76c20c8cb07b5f0aa52f53aaaf9f9f7576 (diff) | |
| download | dotfiles-5155174cc68b09df85ddeb9ba409646472fca029.tar.gz dotfiles-5155174cc68b09df85ddeb9ba409646472fca029.tar.zst dotfiles-5155174cc68b09df85ddeb9ba409646472fca029.zip | |
neovim: fix
Diffstat (limited to '.config/nvim/lua/init/02-commands.lua')
| -rw-r--r-- | .config/nvim/lua/init/02-commands.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/lua/init/02-commands.lua b/.config/nvim/lua/init/02-commands.lua index 541e8da..6c82442 100644 --- a/.config/nvim/lua/init/02-commands.lua +++ b/.config/nvim/lua/init/02-commands.lua @@ -34,9 +34,9 @@ C( ) if is_empty_buffer then - vim.cmd(mods .. ' edit ' .. args) + vim.cmd(opts.mods .. ' edit ' .. opts.args) else - vim.cmd(mods .. ' tabedit ' .. args) + vim.cmd(opts.mods .. ' tabedit ' .. opts.args) end end, { |
