fixing github actions

This commit is contained in:
2026-03-18 23:20:00 -04:00
parent e57209a1f8
commit fe118e0885
6 changed files with 106 additions and 309 deletions

View File

@@ -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",

View File

@@ -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 = {}