summaryrefslogtreecommitdiffstats
path: root/pkg/commands/models
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-03-14 14:41:11 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-03-30 21:57:00 +1100
commit9f2d7adb8ea8135b402cda8cbb84a97744ec7357 (patch)
tree974c3118b1dcc810dcbc54ed12b63d744b9959fb /pkg/commands/models
parent07dd9c6bc8e16632a055c0d705800dc1198fb8f0 (diff)
more improvements
Diffstat (limited to 'pkg/commands/models')
-rw-r--r--pkg/commands/models/status_line_node.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/commands/models/status_line_node.go b/pkg/commands/models/status_line_node.go
index 042a0fceb..f2031888b 100644
--- a/pkg/commands/models/status_line_node.go
+++ b/pkg/commands/models/status_line_node.go
@@ -7,7 +7,8 @@ import (
type StatusLineNode struct {
Children []*StatusLineNode
File *File
- Name string
+ Name string // e.g. 'mydir'
+ Path string // e.g. '/path/to/mydir'
Collapsed bool
}