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