update docstrings

This commit is contained in:
kyasuda
2025-08-19 15:21:21 -07:00
parent a53991c53d
commit 8f49547f85
3 changed files with 13 additions and 2 deletions

View File

@@ -13,6 +13,10 @@ vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- Create a custom command with the given trigger, command, and description
--- @param trigger string The command trigger
--- @param command string The command to execute
--- @param description string Description of the command
--- @return nil
function create_custom_command(trigger, command, description)
vim.api.nvim_create_user_command(trigger, command, { desc = description })
end