Format with stylua
This commit is contained in:
@@ -1,24 +1,48 @@
|
||||
local config = require('symbols-outline.config')
|
||||
local config = require 'symbols-outline.config'
|
||||
|
||||
local M = {}
|
||||
|
||||
M.kinds = {
|
||||
"File", "Module", "Namespace", "Package", "Class", "Method", "Property",
|
||||
"Field", "Constructor", "Enum", "Interface", "Function", "Variable",
|
||||
"Constant", "String", "Number", "Boolean", "Array", "Object", "Key", "Null",
|
||||
"EnumMember", "Struct", "Event", "Operator", "TypeParameter"
|
||||
'File',
|
||||
'Module',
|
||||
'Namespace',
|
||||
'Package',
|
||||
'Class',
|
||||
'Method',
|
||||
'Property',
|
||||
'Field',
|
||||
'Constructor',
|
||||
'Enum',
|
||||
'Interface',
|
||||
'Function',
|
||||
'Variable',
|
||||
'Constant',
|
||||
'String',
|
||||
'Number',
|
||||
'Boolean',
|
||||
'Array',
|
||||
'Object',
|
||||
'Key',
|
||||
'Null',
|
||||
'EnumMember',
|
||||
'Struct',
|
||||
'Event',
|
||||
'Operator',
|
||||
'TypeParameter',
|
||||
}
|
||||
|
||||
function M.icon_from_kind(kind)
|
||||
local symbols = config.options.symbols
|
||||
local symbols = config.options.symbols
|
||||
|
||||
if type(kind) == 'string' then
|
||||
return symbols[kind].icon
|
||||
end
|
||||
if type(kind) == 'string' then
|
||||
return symbols[kind].icon
|
||||
end
|
||||
|
||||
-- If the kind is higher than the available ones then default to 'Object'
|
||||
if kind > #M.kinds then kind = 19 end
|
||||
return symbols[M.kinds[kind]].icon
|
||||
-- If the kind is higher than the available ones then default to 'Object'
|
||||
if kind > #M.kinds then
|
||||
kind = 19
|
||||
end
|
||||
return symbols[M.kinds[kind]].icon
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
Reference in New Issue
Block a user