Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion lua/example/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ local renderer = require("neo-tree.ui.renderer")
local manager = require("neo-tree.sources.manager")
local events = require("neo-tree.events")

local M = { name = "example" }
local M = {
-- This is the name our source will be referred to as
-- within Neo-tree
name = "example",
-- This is how our source will be displayed in the Source Selector
display_name = "留Example"
}

---Navigate to the given path.
---@param path string Path to navigate to. If empty, will navigate to the cwd.
Expand Down