mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +08:00
35 lines
799 B
Lua
35 lines
799 B
Lua
|
local M = {}
|
||
|
|
||
|
local util = require('format.util')
|
||
|
local task = require('format.task')
|
||
|
|
||
|
function M.format(bang, user_input, start_line, end_line)
|
||
|
if not vim.o.modifiable then
|
||
|
return util.msg('buffer is not modifiable!')
|
||
|
end
|
||
|
|
||
|
local filetype = vim.o.filetype
|
||
|
|
||
|
if filetype == '' then
|
||
|
return util.msg('format: skip empty filetype')
|
||
|
end
|
||
|
|
||
|
local ok, default_formatter = pcall(require, 'format.ft.' .. filetype)
|
||
|
|
||
|
if not ok then
|
||
|
return util.msg('no formatter for ' .. filetype)
|
||
|
end
|
||
|
|
||
|
task.run({
|
||
|
bufnr = vim.fn.bufnr(),
|
||
|
stdin = vim.api.nvim_buf_get_lines(0, start_line - 1, end_line - 1, false),
|
||
|
start_line = start_line - 1,
|
||
|
end_line = end_line - 1,
|
||
|
formatter = default_formatter
|
||
|
})
|
||
|
end
|
||
|
|
||
|
function M.setup(opts) end
|
||
|
|
||
|
return M
|