diff --git a/docs/en/src/column-renderer.md b/docs/en/src/column-renderer.md index 0e76e98..3d14f19 100644 --- a/docs/en/src/column-renderer.md +++ b/docs/en/src/column-renderer.md @@ -133,7 +133,7 @@ The [permissions][30] applied to the node. Type: nullable integer -Created time in nanosecond since UNIX epoch. +Creation time in nanosecond since UNIX epoch. ### last_modified diff --git a/docs/en/src/lua-function-calls.md b/docs/en/src/lua-function-calls.md index ba0f52a..5739878 100644 --- a/docs/en/src/lua-function-calls.md +++ b/docs/en/src/lua-function-calls.md @@ -182,6 +182,18 @@ Type: [Permission][60] The [permissions][60] applied to the node. +### created + +Type: nullable integer + +Creation time in nanosecond since UNIX epoch. + +### last_modified + +Type: nullable integer + +Last modification time in nanosecond since UNIX epoch. + ### canonical Type: nullable [Resolved Node Metadata][61] @@ -215,6 +227,8 @@ A node contains the following fields: - [size][55] - [human_size][56] - [permissions][57] +- [created][71] +- [last_modified][72] - [canonical][58] - [symlink][59] @@ -352,3 +366,5 @@ xplr.config.modes.builtin.default.key_bindings.on_key.space = { [68]: #loc [69]: #paths [70]: #history-1 +[71]: #created +[72]: #last_modified diff --git a/docs/en/src/sorting.md b/docs/en/src/sorting.md index 348b82e..36442e8 100644 --- a/docs/en/src/sorting.md +++ b/docs/en/src/sorting.md @@ -39,6 +39,8 @@ A sorter can be one of the following: - "ByIsReadonly" - "ByMimeEssence" - "BySize" +- "ByCreated" +- "ByLastModified" - "ByCanonicalAbsolutePath" - "ByICanonicalAbsolutePath" - "ByCanonicalExtension" @@ -47,6 +49,8 @@ A sorter can be one of the following: - "ByCanonicalIsReadonly" - "ByCanonicalMimeEssence" - "ByCanonicalSize" +- "ByCanonicalCreated" +- "ByCanonicalLastModified" - "BySymlinkAbsolutePath" - "ByISymlinkAbsolutePath" - "BySymlinkExtension" @@ -55,6 +59,8 @@ A sorter can be one of the following: - "BySymlinkIsReadonly" - "BySymlinkMimeEssence" - "BySymlinkSize" +- "BySymlinkSize" +- "BySymlinkCreated" TODO: document each