doc: fix s3 column descriptions (#715)

This commit is contained in:
Daniel Kongsgaard 2026-01-12 20:26:43 +01:00 committed by GitHub
parent d278dc40f9
commit fbbb2a9872
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -430,7 +430,7 @@ icon *column-ico
the icon the icon
size *column-size* size *column-size*
Adapters: files, ssh Adapters: files, ssh, s3
Sortable: this column can be used in view_props.sort Sortable: this column can be used in view_props.sort
The size of the file The size of the file
@ -478,7 +478,7 @@ atime *column-atim
{format} `string` Format string (see :help strftime) {format} `string` Format string (see :help strftime)
birthtime *column-birthtime* birthtime *column-birthtime*
Adapters: files Adapters: files, s3
Sortable: this column can be used in view_props.sort Sortable: this column can be used in view_props.sort
The time the file was created The time the file was created

View file

@ -151,7 +151,7 @@ COL_DEFS = [
), ),
], ],
), ),
ColumnDef("size", "files, ssh", False, True, "The size of the file", HL + []), ColumnDef("size", "files, ssh, s3", False, True, "The size of the file", HL + []),
ColumnDef( ColumnDef(
"permissions", "permissions",
"files, ssh", "files, ssh",
@ -171,7 +171,7 @@ COL_DEFS = [
), ),
ColumnDef( ColumnDef(
"birthtime", "birthtime",
"files", "files, s3",
False, False,
True, True,
"The time the file was created", "The time the file was created",