fixing github actions
This commit is contained in:
@@ -220,9 +220,13 @@ local function cmd_llm_reset_stats()
|
||||
end
|
||||
|
||||
local function coder_cmd(args)
|
||||
local subcommand = args.fargs[1] or "toggle"
|
||||
local subcommand = args.fargs[1] or "version"
|
||||
|
||||
local commands = {
|
||||
["version"] = function()
|
||||
local codetyper = require("codetyper")
|
||||
utils.notify("Codetyper.nvim " .. codetyper.version, vim.log.levels.INFO)
|
||||
end,
|
||||
tree = cmd_tree,
|
||||
["tree-view"] = cmd_tree_view,
|
||||
reset = cmd_reset,
|
||||
@@ -287,6 +291,7 @@ function M.setup()
|
||||
nargs = "?",
|
||||
complete = function()
|
||||
return {
|
||||
"version",
|
||||
"tree",
|
||||
"tree-view",
|
||||
"reset",
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
---@mod codetyper Codetyper.nvim - AI-powered coding partner
|
||||
---@brief [[
|
||||
--- Codetyper.nvim is a Neovim plugin that acts as your coding partner.
|
||||
--- It uses LLM APIs (OpenAI, Gemini, Copilot, Ollama) to help you
|
||||
--- write code faster using special `.codetyper/*` files and inline prompt tags.
|
||||
--- It uses LLM APIs (Copilot, Ollama) to help you write code faster
|
||||
--- with inline prompt tags and visual selection transforms.
|
||||
--- Features an event-driven scheduler with confidence scoring and
|
||||
--- completion-aware injection timing.
|
||||
---@brief ]]
|
||||
|
||||
local M = {}
|
||||
|
||||
M.version = "0.7.0-dev"
|
||||
|
||||
---@type CoderConfig
|
||||
M.config = {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user