Skip to content

Commit

Permalink
feat: add user command for quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
khris190 committed May 6, 2024
1 parent 7aff267 commit 934539b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions plugin/cmake-tools.lua
Original file line number Diff line number Diff line change
Expand Up @@ -266,3 +266,12 @@ vim.api.nvim_create_user_command(
desc = "CMake run test",
}
)
--- CMake run tests
vim.api.nvim_create_user_command(
"CMakeQuickStart", -- name
require("cmake-tools.quickstart").quick_start, -- command
{ -- opts
nargs = "*",
desc = "CMake run quickstart",
}
)

0 comments on commit 934539b

Please sign in to comment.