-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add mode, user and group info parameters #1799
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -287,7 +287,7 @@ func infotimefmt(t time.Time) string { | |||||
return t.Format(gOpts.infotimefmtold) | ||||||
} | ||||||
|
||||||
func fileInfo(f *file, d *dir) string { | ||||||
func fileInfo(f *file, d *dir, userWidth int, groupWidth int) string { | ||||||
var info string | ||||||
|
||||||
for _, s := range getInfo(d.path) { | ||||||
|
@@ -320,6 +320,12 @@ func fileInfo(f *file, d *dir) string { | |||||
info = fmt.Sprintf("%s %*s", info, max(len(gOpts.infotimefmtnew), len(gOpts.infotimefmtold)), infotimefmt(f.accessTime)) | ||||||
case "ctime": | ||||||
info = fmt.Sprintf("%s %*s", info, max(len(gOpts.infotimefmtnew), len(gOpts.infotimefmtold)), infotimefmt(f.changeTime)) | ||||||
case "mode": | ||||||
info = fmt.Sprintf("%s %s", info, f.FileInfo.Mode().String()) | ||||||
case "user": | ||||||
info = fmt.Sprintf("%s %-*s", info, userWidth, userName(f.FileInfo)) | ||||||
case "group": | ||||||
info = fmt.Sprintf("%s %-*s", info, groupWidth, groupName(f.FileInfo)) | ||||||
default: | ||||||
log.Printf("unknown info type: %s", s) | ||||||
} | ||||||
|
@@ -402,6 +408,23 @@ func (win *win) printDir(ui *ui, dir *dir, context *dirContext, dirStyle *dirSty | |||||
} | ||||||
} | ||||||
|
||||||
var userWidth int | ||||||
var groupWidth int | ||||||
|
||||||
// Only fetch user/group widths if configured to display them | ||||||
for _, s := range getInfo(dir.path) { | ||||||
switch s { | ||||||
case "user": | ||||||
userWidth = getUserWidth(dir, beg, end) | ||||||
case "group": | ||||||
groupWidth = getGroupWidth(dir, beg, end) | ||||||
} | ||||||
|
||||||
if userWidth > 0 && groupWidth > 0 { | ||||||
break | ||||||
} | ||||||
} | ||||||
|
||||||
for i, f := range dir.files[beg:end] { | ||||||
st := dirStyle.colors.get(f) | ||||||
|
||||||
|
@@ -461,7 +484,7 @@ func (win *win) printDir(ui *ui, dir *dir, context *dirContext, dirStyle *dirSty | |||||
// subtract space for tag and icon | ||||||
maxFilenameWidth := maxWidth - 1 - runeSliceWidth(icon) | ||||||
|
||||||
info := fileInfo(f, dir) | ||||||
info := fileInfo(f, dir, userWidth, groupWidth) | ||||||
showInfo := len(info) > 0 && 2*len(info) < maxWidth | ||||||
if showInfo { | ||||||
maxFilenameWidth -= len(info) | ||||||
|
@@ -519,6 +542,26 @@ func (win *win) printDir(ui *ui, dir *dir, context *dirContext, dirStyle *dirSty | |||||
} | ||||||
} | ||||||
|
||||||
func getGroupWidth(dir *dir, beg int, end int) int { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You mixed up the function names:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops! Nice catch. |
||||||
maxw := 0 | ||||||
|
||||||
for _, f := range dir.files[beg:end] { | ||||||
maxw = max(len(userName(f.FileInfo)), maxw) | ||||||
} | ||||||
|
||||||
return maxw | ||||||
} | ||||||
|
||||||
func getUserWidth(dir *dir, beg int, end int) int { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here:
Suggested change
|
||||||
maxw := 0 | ||||||
|
||||||
for _, f := range dir.files[beg:end] { | ||||||
maxw = max(len(groupName(f.FileInfo)), maxw) | ||||||
} | ||||||
|
||||||
return maxw | ||||||
} | ||||||
|
||||||
func getWidths(wtot int) []int { | ||||||
rsum := 0 | ||||||
for _, r := range gOpts.ratios { | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just wondering, do you think instead of using
mode
, something likeperm
orpermissions
is more intuitive as the name here? Might be a good idea to check what other file managers are using.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I agree, I will change it to perm.