We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e234f4 commit cedf795Copy full SHA for cedf795
lua/lspconfig/configs/texlab.lua
@@ -81,7 +81,7 @@ local function command_factory(cmd)
81
if err then
82
vim.notify(('Failed to clean %s files: %s'):format(cmd, err.message), vim.log.levels.ERROR)
83
else
84
- vim.notify(('cmmand %s execute successfully'):format(cmd), vim.log.levels.INFO)
+ vim.notify(('command %s executed successfully'):format(cmd), vim.log.levels.INFO)
85
end
86
end)
87
@@ -90,7 +90,7 @@ local function command_factory(cmd)
90
command = cmd_tbl[cmd],
91
arguments = { { uri = vim.uri_from_bufnr(bufnr) } },
92
}
93
- vim.notify(('command %s execute successfully'):format(cmd_tbl[cmd]))
+ vim.notify(('command %s executed successfully'):format(cmd_tbl[cmd]))
94
95
96
0 commit comments