remove unnecessary *'s

This commit is contained in:
2025-01-03 11:14:23 -05:00
parent 82bd91d9de
commit e142e4c91f

View File

@ -13,7 +13,6 @@ auto('FocusGained', {
}) })
auto('TextYankPost', { auto('TextYankPost', {
pattern = '*',
group = bufcheck, group = bufcheck,
desc = 'Highlight on yank.', desc = 'Highlight on yank.',
callback = function() callback = function()
@ -22,7 +21,6 @@ auto('TextYankPost', {
}) })
auto('BufRead', { auto('BufRead', {
pattern = '*',
group = bufcheck, group = bufcheck,
desc = 'Return to the last place the buffer was closed in.', desc = 'Return to the last place the buffer was closed in.',
callback = function() callback = function()
@ -31,14 +29,12 @@ auto('BufRead', {
}) })
auto('BufWritePre', { auto('BufWritePre', {
pattern = '*',
group = fsmod, group = fsmod,
desc = 'remove trailing spaces on file save', desc = 'remove trailing spaces on file save',
command = [[%s/\s\+$//e]] command = [[%s/\s\+$//e]]
}) })
auto('BufWritePre', { auto('BufWritePre', {
pattern = '*',
group = fsmod, group = fsmod,
desc = 'Basically mkdir -p.', desc = 'Basically mkdir -p.',
callback = function(ctx) callback = function(ctx)