Skip to content

Commit aa99717

Browse files
authored
doc: spelling (#2070)
1 parent a50723e commit aa99717

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ Development is focused on:
118118

119119
nvim-tree exposes a public API. This is non breaking, with additions made as necessary. See [:help nvim-tree-api](doc/nvim-tree-lua.txt)
120120

121-
See wiki [Recipes](https://github.com/nvim-tree/nvim-tree.lua/wiki/Recipes) and [Tips](https://github.com/nvim-tree/nvim-tree.lua/wiki/Tips) for ideas and insipration.
121+
See wiki [Recipes](https://github.com/nvim-tree/nvim-tree.lua/wiki/Recipes) and [Tips](https://github.com/nvim-tree/nvim-tree.lua/wiki/Tips) for ideas and inspiration.
122122

123-
Please raise a [feature request](https://github.com/nvim-tree/nvim-tree.lua/issues/new?assignees=&labels=feature+request&template=feature_request.md&title=) if the API is insufficent for your needs. [Contributions](#Contributing) are always welcome.
123+
Please raise a [feature request](https://github.com/nvim-tree/nvim-tree.lua/issues/new?assignees=&labels=feature+request&template=feature_request.md&title=) if the API is insufficient for your needs. [Contributions](#Contributing) are always welcome.
124124

125125
You may also subscribe to events that nvim-tree will dispatch in a variety of situations, see [:help nvim-tree-events](doc/nvim-tree-lua.txt)
126126

doc/nvim-tree-lua.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1551,7 +1551,7 @@ Mouse support is defined in |KeyBindings|
15511551

15521552
Single left mouse mappings can be achieved via `<LeftRelease>`.
15531553

1554-
Single right / middle mouse mappings will requre changes to |mousemodel| or |mouse|.
1554+
Single right / middle mouse mappings will require changes to |mousemodel| or |mouse|.
15551555

15561556
==============================================================================
15571557
6.1 DEFAULT MAPPINGS *nvim-tree-mappings-default*

lua/nvim-tree/colors.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ local function get_links()
8888
end
8989

9090
function M.setup()
91-
local higlight_groups = get_hl_groups()
92-
for k, d in pairs(higlight_groups) do
91+
local highlight_groups = get_hl_groups()
92+
for k, d in pairs(highlight_groups) do
9393
local gui = d.gui and " gui=" .. d.gui or ""
9494
local fg = d.fg and " guifg=" .. d.fg or ""
9595
local bg = d.bg and " guibg=" .. d.bg or ""

lua/nvim-tree/explorer/sorters.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ local function node_comparator_name_ignorecase_or_not(a, b, ignorecase)
131131
end
132132
end
133133

134-
function M.node_comparator_name_case_sensisive(a, b)
134+
function M.node_comparator_name_case_sensitive(a, b)
135135
return node_comparator_name_ignorecase_or_not(a, b, false)
136136
end
137137

@@ -194,7 +194,7 @@ function M.setup(opts)
194194
elseif M.sort_by == "modification_time" then
195195
M.node_comparator = M.node_comparator_modification_time
196196
elseif M.sort_by == "case_sensitive" then
197-
M.node_comparator = M.node_comparator_name_case_sensisive
197+
M.node_comparator = M.node_comparator_name_case_sensitive
198198
elseif M.sort_by == "extension" then
199199
M.node_comparator = M.node_comparator_extension
200200
else

0 commit comments

Comments
 (0)