function M.toggle_suggestion()

in lua/llm/completion.lua [121:125]


function M.toggle_suggestion()
  M.suggestions_enabled = not M.suggestions_enabled
  local state = M.suggestions_enabled and "on" or "off"
  vim.notify("[LLM] Auto suggestions are " .. state, vim.log.levels.INFO)
end