--[[-- File : ftplugin/tex.lua Author : Jeff Lance Date : 06.08.2023 11:07:22 Last Modified Date: 06.08.2023 11:07:22 Last Modified By : Jeff Lance --]]-- local opts = {} local status_ok, whk = pcall(require, "which-key") if not status_ok then return end whk.register { ["l"] = { name = "LaTeX", m = { "VimtexContextMenu", "Open Context Menu" }, u = { "VimtexCountLetters", "Count Letters" }, w = { "VimtexCountWords", "Count Words" }, d = { "VimtexDocPackage", "Open Doc for package" }, e = { "VimtexErrors", "Look at the errors" }, s = { "VimtexStatus", "Look at the status" }, a = { "VimtexToggleMain", "Toggle Main" }, v = { "VimtexView", "View pdf" }, i = { "VimtexInfo", "Vimtex Info" }, l = { name = "Clean", l = { "VimtexClean", "Clean Project" }, c = { "VimtexClean", "Clean Cache" }, }, c = { name = "Compile", c = { "VimtexCompile", "Compile Project" }, o = { "VimtexCompileOutput", "Compile Project and Show Output", }, s = { "VimtexCompileSS", "Compile project super fast" }, e = { "VimtexCompileSelected", "Compile Selected" }, }, r = { name = "Reload", r = { "VimtexReload", "Reload" }, s = { "VimtexReloadState", "Reload State" }, }, o = { name = "Stop", p = { "VimtexStop", "Stop" }, a = { "VimtexStopAll", "Stop All" }, }, t = { name = "TOC", o = { "VimtexTocOpen", "Open TOC" }, t = { "VimtexTocToggle", "Toggle TOC" }, }, } }