mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 09:40:04 +08:00
9 lines
207 B
Lua
9 lines
207 B
Lua
|
vim.api.nvim_create_user_command('Format', function(opts)
|
||
|
require('format').format(opts.bang, opts.args, opts.line1, opts.line2)
|
||
|
end, {
|
||
|
nargs = '*',
|
||
|
range = '%',
|
||
|
bang = true,
|
||
|
bar = true
|
||
|
})
|