mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07:00
Compare commits
2 Commits
0905c34291
...
89c36f3b49
Author | SHA1 | Date | |
---|---|---|---|
|
89c36f3b49 | ||
|
1724a6e259 |
@ -151,7 +151,7 @@ function properties.trim_trailing_whitespace(bufnr, val)
|
||||
)
|
||||
if val == 'true' then
|
||||
vim.api.nvim_create_autocmd('BufWritePre', {
|
||||
group = 'editorconfig',
|
||||
group = 'nvim_editorconfig',
|
||||
buffer = bufnr,
|
||||
callback = function()
|
||||
local view = vim.fn.winsaveview()
|
||||
@ -163,7 +163,7 @@ function properties.trim_trailing_whitespace(bufnr, val)
|
||||
else
|
||||
vim.api.nvim_clear_autocmds({
|
||||
event = 'BufWritePre',
|
||||
group = 'editorconfig',
|
||||
group = 'nvim_editorconfig',
|
||||
buffer = bufnr,
|
||||
})
|
||||
end
|
||||
@ -180,7 +180,7 @@ function properties.insert_final_newline(bufnr, val)
|
||||
local endofline = val == 'true'
|
||||
if vim.bo[bufnr].endofline ~= endofline then
|
||||
vim.api.nvim_create_autocmd('BufWritePre', {
|
||||
group = 'editorconfig',
|
||||
group = 'nvim_editorconfig',
|
||||
buffer = bufnr,
|
||||
once = true,
|
||||
callback = function()
|
||||
|
@ -1,4 +1,4 @@
|
||||
local group = vim.api.nvim_create_augroup('editorconfig', {})
|
||||
local group = vim.api.nvim_create_augroup('nvim_editorconfig', {})
|
||||
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead', 'BufFilePost' }, {
|
||||
group = group,
|
||||
callback = function(args)
|
||||
|
Loading…
Reference in New Issue
Block a user