@@ -77,7 +77,7 @@ What to show. Can be one of:
77
77
78
78
filesystem : Show a file browser. DEFAULT
79
79
buffers : Show a list of currently open buffers.
80
- git_status : Show the ouput of `git status` in a tree layout.
80
+ git_status : Show the output of `git status` in a tree layout.
81
81
82
82
position~
83
83
Where to show it, can be one of:
@@ -128,7 +128,7 @@ automatically change the directory without prompting. This option implies
128
128
DEPRECATED_COMMANDS
129
129
130
130
The following commands from Neotree v1.x will remain until v3.0 for backwards
131
- compatability . You should not use them if you are a new user, and existing users
131
+ compatibility . You should not use them if you are a new user, and existing users
132
132
should change their mapping to the new | :Neotree | command specified above.
133
133
134
134
:NeoTreeFocus -> :Neotree
@@ -461,10 +461,10 @@ CUSTOM MAPPINGS WITH VISUAL MODE
461
461
462
462
If you want to create a mapping that supports visual mode, the way to do that
463
463
is to add a second command where the name is the same as the normal mode
464
- command, but with `_visual` added to the end. Any mapping for this commnd will
464
+ command, but with `_visual` added to the end. Any mapping for this command will
465
465
then work in either normal or visual mode.
466
466
467
- The `_visual` version of the command will be called with a second arguement
467
+ The `_visual` version of the command will be called with a second argument
468
468
which is a list of the nodes that were selected when the command was called.
469
469
470
470
For example, this is how the built-in `delete ` command is defined:
@@ -489,7 +489,7 @@ CUSTOM MAPPINGS WITH ARGUMENTS
489
489
490
490
If you want to include options for your mappings, such as `nowait ` , you can
491
491
set this for all mappings using the `mapping_options` key, or on individual
492
- mappings by specifiying them as a table that consists of the command and any
492
+ mappings by specifying them as a table that consists of the command and any
493
493
options you want to use. If both are specified, the mapping merges with and
494
494
overrides the global `mapping_options`
495
495
@@ -821,7 +821,7 @@ The `hide_by_name` option is a list of file/folder names that should be
821
821
hidden. This is an exact match.
822
822
823
823
The `hide_by_pattern` option uses glob syntax, which is converted to lua
824
- patterns. No gaurantees on how it handles advanced patterns.
824
+ patterns. No guarantees on how it handles advanced patterns.
825
825
826
826
The `always_show` option is a list of file/folder names that will always be
827
827
visible, even if other settings would normally hide it. This section takes
@@ -1128,7 +1128,7 @@ NeoTreeDimText Greyed out text used in various places.
1128
1128
NeoTreeDirectoryIcon Directory icon.
1129
1129
NeoTreeDirectoryName Directory name.
1130
1130
NeoTreeDotfile Used for icons and names when dotfiles are filtered.
1131
- NeoTreeFileIcon File icon, when not overriden by devicons.
1131
+ NeoTreeFileIcon File icon, when not overridden by devicons.
1132
1132
NeoTreeFileName File name, when not overwritten by another status.
1133
1133
NeoTreeFileNameOpened File name when the file is open. Not used yet.
1134
1134
NeoTreeFilterTerm The filter term, as displayed in the root node.
@@ -1244,7 +1244,7 @@ Fired after leaving a neo-tree popup buffer.
1244
1244
Fired before opening a new Neo-tree window. Called with the following arg:
1245
1245
*neo-tree-window-event-args*
1246
1246
The event argument for all window events is a table with the following keys:
1247
- `winid` = the | winid | of the window being opned or closed.
1247
+ `winid` = the | winid | of the window being opened or closed.
1248
1248
`tabnr` = the tab number that the window is in.
1249
1249
`source ` = the name of the source that is in the window, such as "filesystem".
1250
1250
`position` = the position of the window, i.e. "left", "bottom", "right".
@@ -1304,15 +1304,15 @@ You can also define your own with:
1304
1304
The setup function is run the first time the event is subscribed to. For an
1305
1305
autocmd event, this would define the vim autocmd to connect it to fire_event().
1306
1306
1307
- The `seed` function is run at the begining of every event firing. The diagnostics
1307
+ The `seed` function is run at the beginning of every event firing. The diagnostics
1308
1308
event uses this to collect the diagnostic information and pass it to all
1309
1309
subscribers.
1310
1310
1311
1311
The `teardown` function is used when the last subscriber unsubscribes, and cleans
1312
1312
up. This is like Dispose in other languages.
1313
1313
1314
1314
`debounce_frequency` is the minimum number of milliseconds between each invocation
1315
- of the event. The first event is gauranteed to fire, as well as the last one, but
1315
+ of the event. The first event is guaranteed to fire, as well as the last one, but
1316
1316
in between events may be dropped if this is set to a number greater than zero.
1317
1317
1318
1318
`once` means to only fire this event handler once then mark it as `cancelled` .
@@ -1325,7 +1325,7 @@ COMPONENTS AND RENDERERS *neo-tree-renderers*
1325
1325
1326
1326
A renderer is just a list of component configs, to be rendered in order to
1327
1327
create a line in the tree. Each renderer is for a specific node type, such as
1328
- `directory ` or `file ` . To view the avilable built-in components and their
1328
+ `directory ` or `file ` . To view the available built-in components and their
1329
1329
configs for each source, look at the default config by pasting it with
1330
1330
>
1331
1331
:lua require("neo-tree").paste_default_config()
@@ -1335,7 +1335,7 @@ https://github.com/nvim-neo-tree/neo-tree.nvim/blob/v1.x/lua/neo-tree/defaults.l
1335
1335
1336
1336
A default `renderers` config is specified at the root level and will be used
1337
1337
by each source unless another renderer is defined. If you just want to
1338
- reaarange or remove components, you can do so by changing these `renderers`
1338
+ rearrange or remove components, you can do so by changing these `renderers`
1339
1339
configs.
1340
1340
1341
1341
*neo-tree-components*
@@ -1359,7 +1359,7 @@ A component is a function that returns a single text object:
1359
1359
highlight = "Comment"
1360
1360
},
1361
1361
{
1362
- text = "I'm Sepcial !",
1362
+ text = "I'm Special !",
1363
1363
highlight = "SpecialChar"
1364
1364
},
1365
1365
text = "[",
@@ -1392,7 +1392,7 @@ The `"fit_content"` value means that it will be the width of the largest
1392
1392
layer. See `zindex` for details about layers.
1393
1393
1394
1394
If the current position is "current", meaning it is being displayed in a split
1395
- instead of as a sidebar, the avilable width will be calculated as the longest
1395
+ instead of as a sidebar, the available width will be calculated as the longest
1396
1396
node name + indent + 8 characters. This is to prevent right aligned components
1397
1397
from being too far away from the node name.
1398
1398
@@ -1406,7 +1406,7 @@ This is a list of components that will be arranged by this container.
1406
1406
Each component in the content list can use these additional properties:
1407
1407
1408
1408
zindex~
1409
- All components with the same zindex will be renderered together in the same
1409
+ All components with the same zindex will be rendered together in the same
1410
1410
layer, one after the other. Higher zindex value are rendered on top of other
1411
1411
layers, hiding whatever is beneath them. For example, if a component with a
1412
1412
zindex of 10 produces this:
@@ -1423,7 +1423,7 @@ Each component in the content list can use these additional properties:
1423
1423
<
1424
1424
1425
1425
align~
1426
- If align is right, then it will be pushed to the rigth edge of the avilable
1426
+ If align is right, then it will be pushed to the right edge of the available
1427
1427
space. This makes the most sense when the container width is set to a number
1428
1428
or `" 100%" ` . Components that are right aligned will automatically overlap left
1429
1429
aligned components with the same zindex if there is not enough space.
@@ -1473,7 +1473,7 @@ Each component function is called with the following args:
1473
1473
can be made to be configurable. This is useful if you want different behavior
1474
1474
in a directory renderer vs a file renderer. The config is a combination of any
1475
1475
options specified in the default_component_configs
1476
- (| neo-tree-default-component-configs | ), which can be overriden by settings
1476
+ (| neo-tree-default-component-configs | ), which can be overridden by settings
1477
1477
specified within each renderer config.
1478
1478
1479
1479
`node` The NuiNode object for this node. The properties can vary by source, but
0 commit comments