We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 500862c + 1acdba7 commit e2ffa39Copy full SHA for e2ffa39
lua/example/init.lua
@@ -6,7 +6,13 @@ local renderer = require("neo-tree.ui.renderer")
6
local manager = require("neo-tree.sources.manager")
7
local events = require("neo-tree.events")
8
9
-local M = { name = "example" }
+local M = {
10
+ -- This is the name our source will be referred to as
11
+ -- within Neo-tree
12
+ name = "example",
13
+ -- This is how our source will be displayed in the Source Selector
14
+ display_name = "留Example"
15
+}
16
17
---Navigate to the given path.
18
---@param path string Path to navigate to. If empty, will navigate to the cwd.
0 commit comments