Skip to content

Commit 61c1ce5

Browse files
committed
fix(api): Improve performance, annotations accomodated.
Signed-off-by: Guennadi Maximov C <[email protected]>
1 parent 59117ac commit 61c1ce5

File tree

2 files changed

+23
-20
lines changed

2 files changed

+23
-20
lines changed

lua/user_api/types/user/util.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ require('user_api.types.user.autocmd')
7070
---@field xor fun(x: boolean, y: boolean): boolean
7171
---@field strip_fields fun(T: table<string|integer, any>, values: string|string[]): table
7272
---@field strip_values fun(T: table<string|integer, any>, values: any[], max_instances: integer?): table
73-
---@field ft_set fun(s: string, bufnr: integer?): fun()
73+
---@field ft_set fun(s: string?, bufnr: integer?): fun()
7474
---@field bt_get fun(bufnr: integer?): string
7575
---@field ft_get fun(bufnr: integer?): string
7676
---@field assoc fun()

lua/user_api/util/init.lua

+22-19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ require('user_api.types.user.util')
22

33
local curr_buf = vim.api.nvim_get_current_buf
44
local optset = vim.api.nvim_set_option_value
5+
local optget = vim.api.nvim_get_option_value
56
local in_tbl = vim.tbl_contains
67

78
local ERROR = vim.log.levels.ERROR
@@ -127,7 +128,7 @@ function M.strip_fields(T, fields)
127128
local field = Value.fields
128129

129130
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)
131132
end
132133

133134
if empty(T) then
@@ -173,11 +174,11 @@ function M.strip_values(T, values, max_instances)
173174
local is_int = Value.is_int
174175
local empty = Value.empty
175176

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)
178179
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)
181182
end
182183

183184
max_instances = is_int(max_instances) and max_instances or 0
@@ -187,7 +188,8 @@ function M.strip_values(T, values, max_instances)
187188
local count = 0
188189

189190
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
191193
if not in_tbl(values, v) and is_int(k) then
192194
table.insert(res, v)
193195
elseif not in_tbl(values, v) then
@@ -205,7 +207,7 @@ function M.strip_values(T, values, max_instances)
205207
return res
206208
end
207209

208-
---@param s string
210+
---@param s? string
209211
---@param bufnr? integer
210212
---@return fun()
211213
function M.ft_set(s, bufnr)
@@ -214,31 +216,26 @@ function M.ft_set(s, bufnr)
214216
local is_int = Value.is_int
215217
local is_str = Value.is_str
216218

219+
s = is_str(s) and s or ''
217220
bufnr = is_int(bufnr) and bufnr or curr_buf()
218221

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
226223
end
227224

228225
---@param bufnr? integer
229226
---@return string
230227
function M.bt_get(bufnr)
231228
bufnr = require('user_api.check.value').is_int(bufnr) and bufnr or curr_buf()
232229

233-
return vim.api.nvim_get_option_value('bt', { buf = bufnr })
230+
return optget('bt', { buf = bufnr })
234231
end
235232

236233
---@param bufnr? integer
237234
---@return string
238235
function M.ft_get(bufnr)
239236
bufnr = require('user_api.check.value').is_int(bufnr) and bufnr or curr_buf()
240237

241-
return vim.api.nvim_get_option_value('ft', { buf = bufnr })
238+
return optget('ft', { buf = bufnr })
242239
end
243240

244241
function M.assoc()
@@ -338,7 +335,7 @@ function M.assoc()
338335
local buf = curr_buf()
339336

340337
-- 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
342339
return
343340
end
344341

@@ -361,6 +358,11 @@ function M.assoc()
361358
callback = function()
362359
local buf = curr_buf()
363360

361+
-- Make sure the buffer is modifiable
362+
if not optget('modifiable', { buf = buf }) then
363+
return
364+
end
365+
364366
if require('user_api.check.exists').executable('isort') then
365367
local map_dict = require('user_api.maps').map_dict
366368
local desc = require('user_api.maps.kmap').desc
@@ -438,12 +440,13 @@ function M.discard_dups(data)
438440
local is_tbl = Value.is_tbl
439441
local is_str = Value.is_str
440442
local empty = Value.empty
443+
local notify = M.notify.notify
441444

442445
---@type string|table
443446
local res
444447

445448
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', {
447450
hide_from_history = false,
448451
timeout = 750,
449452
title = '(user_api.util.discard_dups)',
@@ -455,7 +458,7 @@ function M.discard_dups(data)
455458
end
456459

457460
if empty(data) then
458-
M.notify.notify('Input is empty', 'error', {
461+
notify('Input is empty', 'error', {
459462
hide_from_history = false,
460463
timeout = 750,
461464
title = '(user_api.util.discard_dups)',

0 commit comments

Comments
 (0)