docs: Add desc to autocmds

This commit is contained in:
punkfairie 2025-03-16 17:30:54 -07:00
parent c561bf48e7
commit 547c139f9c
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -1,10 +1,10 @@
-- Open help window in a vsplit to the right.
vim.api.nvim_create_autocmd('BufWinEnter', {
desc = 'Open help files in vertical split to the right',
group = vim.api.nvim_create_augroup('help_window_right', {}),
pattern = { '*.txt' },
callback = function()
if vim.o.filetype == 'help' then
vim.cmd.wincmd 'L'
vim.cmd.wincmd('L')
end
end,
})