First day of development changes
This commit is contained in:
@@ -20,17 +20,17 @@ vim.api.nvim_create_autocmd('FocusLost', {
|
||||
command = 'silent! wa', -- Save all files when moving away from the window
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd('InsertLeave', {
|
||||
group = autosave_group,
|
||||
pattern = '*',
|
||||
command = 'silent! wa', -- Save all files when leaving insert mode
|
||||
})
|
||||
-- vim.api.nvim_create_autocmd('InsertLeave', {
|
||||
-- group = autosave_group,
|
||||
-- pattern = '*',
|
||||
-- command = 'silent! wa', -- Save all files when leaving insert mode
|
||||
-- })
|
||||
|
||||
vim.api.nvim_create_autocmd('TextChanged', {
|
||||
group = autosave_group,
|
||||
pattern = '*',
|
||||
command = 'silent! wa', -- Save all files when text is changed
|
||||
})
|
||||
-- vim.api.nvim_create_autocmd('TextChanged', {
|
||||
-- group = autosave_group,
|
||||
-- pattern = '*',
|
||||
-- command = 'silent! wa', -- Save all files when text is changed
|
||||
-- })
|
||||
|
||||
vim.api.nvim_create_autocmd("User", {
|
||||
pattern = "OilActionsPost",
|
||||
|
||||
Reference in New Issue
Block a user