mirror of
https://github.com/zoriya/flake.git
synced 2026-06-28 03:58:14 +00:00
18 lines
411 B
Lua
18 lines
411 B
Lua
local function scratch()
|
|
local fts = vim.fn.getcompletion("", "filetype")
|
|
vim.ui.select(fts, {
|
|
prompt = "Scratch ft",
|
|
}, function(ft)
|
|
if ft == nil then
|
|
return
|
|
end
|
|
local buf = vim.api.nvim_create_buf(false, true)
|
|
vim.api.nvim_set_option_value("filetype", ft, { buf = buf })
|
|
vim.api.nvim_set_current_buf(buf)
|
|
end)
|
|
end
|
|
|
|
vim.keymap.set("n", "<leader>s", scratch, { desc = "Scratch" })
|
|
|
|
return {}
|