@@ -2,6 +2,7 @@ require('user_api.types.user.util')
2
2
3
3
local curr_buf = vim .api .nvim_get_current_buf
4
4
local optset = vim .api .nvim_set_option_value
5
+ local optget = vim .api .nvim_get_option_value
5
6
local in_tbl = vim .tbl_contains
6
7
7
8
local ERROR = vim .log .levels .ERROR
@@ -127,7 +128,7 @@ function M.strip_fields(T, fields)
127
128
local field = Value .fields
128
129
129
130
if not is_tbl (T ) then
130
- error (' (user_api.util.strip_fields): Argument is not a table' )
131
+ error (' (user_api.util.strip_fields): Argument is not a table' , ERROR )
131
132
end
132
133
133
134
if empty (T ) then
@@ -173,11 +174,11 @@ function M.strip_values(T, values, max_instances)
173
174
local is_int = Value .is_int
174
175
local empty = Value .empty
175
176
176
- if not is_tbl (T ) then
177
- error (' (user_api.util.strip_values): Not a table' )
177
+ if not is_tbl ({ T , values }, true ) then
178
+ error (' (user_api.util.strip_values): Not a table' , ERROR )
178
179
end
179
- if not is_tbl ( values ) or empty (values ) then
180
- error (' (user_api.util.strip_values): No values given' )
180
+ if empty (values ) then
181
+ error (' (user_api.util.strip_values): No values given' , ERROR )
181
182
end
182
183
183
184
max_instances = is_int (max_instances ) and max_instances or 0
@@ -187,7 +188,8 @@ function M.strip_values(T, values, max_instances)
187
188
local count = 0
188
189
189
190
for k , v in next , T do
190
- if M .xor (max_instances == 0 , max_instances ~= 0 and max_instances > count ) then
191
+ -- Both arguments can't be true simultaneously
192
+ if M .xor ((max_instances == 0 ), (max_instances ~= 0 and max_instances > count )) then
191
193
if not in_tbl (values , v ) and is_int (k ) then
192
194
table.insert (res , v )
193
195
elseif not in_tbl (values , v ) then
@@ -205,7 +207,7 @@ function M.strip_values(T, values, max_instances)
205
207
return res
206
208
end
207
209
208
- --- @param s string
210
+ --- @param s ? string
209
211
--- @param bufnr ? integer
210
212
--- @return fun ()
211
213
function M .ft_set (s , bufnr )
@@ -214,31 +216,26 @@ function M.ft_set(s, bufnr)
214
216
local is_int = Value .is_int
215
217
local is_str = Value .is_str
216
218
219
+ s = is_str (s ) and s or ' '
217
220
bufnr = is_int (bufnr ) and bufnr or curr_buf ()
218
221
219
- return function ()
220
- if not is_str (s ) then
221
- optset (' ft' , ' ' , { buf = bufnr })
222
- else
223
- optset (' ft' , s , { buf = bufnr })
224
- end
225
- end
222
+ return function () optset (' ft' , s , { buf = bufnr }) end
226
223
end
227
224
228
225
--- @param bufnr ? integer
229
226
--- @return string
230
227
function M .bt_get (bufnr )
231
228
bufnr = require (' user_api.check.value' ).is_int (bufnr ) and bufnr or curr_buf ()
232
229
233
- return vim . api . nvim_get_option_value (' bt' , { buf = bufnr })
230
+ return optget (' bt' , { buf = bufnr })
234
231
end
235
232
236
233
--- @param bufnr ? integer
237
234
--- @return string
238
235
function M .ft_get (bufnr )
239
236
bufnr = require (' user_api.check.value' ).is_int (bufnr ) and bufnr or curr_buf ()
240
237
241
- return vim . api . nvim_get_option_value (' ft' , { buf = bufnr })
238
+ return optget (' ft' , { buf = bufnr })
242
239
end
243
240
244
241
function M .assoc ()
@@ -338,7 +335,7 @@ function M.assoc()
338
335
local buf = curr_buf ()
339
336
340
337
-- Make sure the buffer is modifiable
341
- if not vim . api . nvim_get_option_value (' modifiable' , { buf = buf }) then
338
+ if not optget (' modifiable' , { buf = buf }) then
342
339
return
343
340
end
344
341
@@ -361,6 +358,11 @@ function M.assoc()
361
358
callback = function ()
362
359
local buf = curr_buf ()
363
360
361
+ -- Make sure the buffer is modifiable
362
+ if not optget (' modifiable' , { buf = buf }) then
363
+ return
364
+ end
365
+
364
366
if require (' user_api.check.exists' ).executable (' isort' ) then
365
367
local map_dict = require (' user_api.maps' ).map_dict
366
368
local desc = require (' user_api.maps.kmap' ).desc
@@ -438,12 +440,13 @@ function M.discard_dups(data)
438
440
local is_tbl = Value .is_tbl
439
441
local is_str = Value .is_str
440
442
local empty = Value .empty
443
+ local notify = M .notify .notify
441
444
442
445
--- @type string | table
443
446
local res
444
447
445
448
if not (is_str (data ) or is_tbl (data )) then
446
- M . notify . notify (' Input is neither a string nor a table' , ' error' , {
449
+ notify (' Input is neither a string nor a table' , ' error' , {
447
450
hide_from_history = false ,
448
451
timeout = 750 ,
449
452
title = ' (user_api.util.discard_dups)' ,
@@ -455,7 +458,7 @@ function M.discard_dups(data)
455
458
end
456
459
457
460
if empty (data ) then
458
- M . notify . notify (' Input is empty' , ' error' , {
461
+ notify (' Input is empty' , ' error' , {
459
462
hide_from_history = false ,
460
463
timeout = 750 ,
461
464
title = ' (user_api.util.discard_dups)' ,
0 commit comments