doc: spelling (#2070)
This commit is contained in:
@@ -88,8 +88,8 @@ local function get_links()
|
||||
end
|
||||
|
||||
function M.setup()
|
||||
local higlight_groups = get_hl_groups()
|
||||
for k, d in pairs(higlight_groups) do
|
||||
local highlight_groups = get_hl_groups()
|
||||
for k, d in pairs(highlight_groups) do
|
||||
local gui = d.gui and " gui=" .. d.gui or ""
|
||||
local fg = d.fg and " guifg=" .. d.fg or ""
|
||||
local bg = d.bg and " guibg=" .. d.bg or ""
|
||||
|
||||
@@ -131,7 +131,7 @@ local function node_comparator_name_ignorecase_or_not(a, b, ignorecase)
|
||||
end
|
||||
end
|
||||
|
||||
function M.node_comparator_name_case_sensisive(a, b)
|
||||
function M.node_comparator_name_case_sensitive(a, b)
|
||||
return node_comparator_name_ignorecase_or_not(a, b, false)
|
||||
end
|
||||
|
||||
@@ -194,7 +194,7 @@ function M.setup(opts)
|
||||
elseif M.sort_by == "modification_time" then
|
||||
M.node_comparator = M.node_comparator_modification_time
|
||||
elseif M.sort_by == "case_sensitive" then
|
||||
M.node_comparator = M.node_comparator_name_case_sensisive
|
||||
M.node_comparator = M.node_comparator_name_case_sensitive
|
||||
elseif M.sort_by == "extension" then
|
||||
M.node_comparator = M.node_comparator_extension
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user