File tree 2 files changed +15
-8
lines changed
2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,7 @@ local M = {}
8
8
M .group = api .nvim_create_augroup (' Guard' , { clear = true })
9
9
10
10
function M .try_attach_to_buf (buf )
11
- if
12
- # api .nvim_get_autocmds ({
13
- group = M .group ,
14
- event = ' BufWritePre' ,
15
- buffer = buf ,
16
- }) > 0
17
- then
18
- -- already attached
11
+ if not util .check_should_attach (buf ) then
19
12
return
20
13
end
21
14
au (' BufWritePre' , {
Original file line number Diff line number Diff line change 83
83
--- @param filename string
84
84
--- @return string | false
85
85
local function exists (filename )
86
+ --- @diagnostic disable-next-line : undefined-field
86
87
local stat = vim .uv .fs_stat (filename )
87
88
return stat and stat .type or false
88
89
end
132
133
--- @return string , string ?
133
134
function M .buf_get_info (buf )
134
135
local fname = vim .fn .fnameescape (api .nvim_buf_get_name (buf ))
136
+ --- @diagnostic disable-next-line : undefined-field
135
137
return fname , M .get_lsp_root () or vim .uv .cwd ()
136
138
end
137
139
@@ -215,4 +217,16 @@ function M.eval(xs)
215
217
end , xs )
216
218
end
217
219
220
+ --- @param buf number
221
+ --- @return boolean
222
+ function M .check_should_attach (buf )
223
+ local bo = vim .bo [buf ]
224
+ -- check if it's already attached or has no underlying file
225
+ return # api .nvim_get_autocmds ({
226
+ group = M .group ,
227
+ event = ' BufWritePre' ,
228
+ buffer = buf ,
229
+ }) == 0 and bo .buftype ~= ' nofile'
230
+ end
231
+
218
232
return M
You can’t perform that action at this time.
0 commit comments