mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-25 06:38:34 +02:00
7 lines
154 B
Lua
7 lines
154 B
Lua
function InsertTodo()
|
|
vim.api.nvim_put({ '// todo: ' }, 'l', true, true)
|
|
end
|
|
|
|
function InsertId()
|
|
vim.api.nvim_put({ '[Id()]' }, 'l', true, true)
|
|
end
|