mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-25 14:48:33 +02:00
8 lines
154 B
Lua
8 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
|