aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-01-26 11:16:42 -0800
committerGitHub <noreply@github.com>2026-01-26 11:16:42 -0800
commitd4dc1ab3d4e5746066173ae3b66931d7605fde79 (patch)
tree61341e481869da3fcf1397fc91823a1d66f3c8e5 /crates/atuin-client/src
parentfeat: add more vim movement bindings for navigation (#3041) (diff)
parentfix(ui): align cursor with the expand column (usually the command) (diff)
downloadatuin-d4dc1ab3d4e5746066173ae3b66931d7605fde79.zip
Align cursor with the expand column (usually the command) (#3095)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing This pr improves the following: <img width="842" height="444" alt="before" src="https://github.com/user-attachments/assets/aa6414f6-5d24-4053-97d2-093e2bc1bbe3" /> <img width="1512" height="440" alt="before2" src="https://github.com/user-attachments/assets/cdc14909-02a3-4484-8306-0bca5648406d" /> into: <img width="1034" height="444" alt="after" src="https://github.com/user-attachments/assets/fbcd7bcd-dc03-448a-93b5-0537faaa490e" /> <img width="1160" height="436" alt="after2" src="https://github.com/user-attachments/assets/728c125f-6c0a-4b67-ab25-e1b58430f195" />
Diffstat (limited to 'crates/atuin-client/src')
-rw-r--r--crates/atuin-client/src/settings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/settings.rs b/crates/atuin-client/src/settings.rs
index bfe9278d..916172ba 100644
--- a/crates/atuin-client/src/settings.rs
+++ b/crates/atuin-client/src/settings.rs
@@ -479,7 +479,7 @@ impl UiColumnType {
pub fn default_width(&self) -> u16 {
match self {
UiColumnType::Duration => 5,
- UiColumnType::Time => 8, // "59m ago" with padding
+ UiColumnType::Time => 9, // "459ms ago" with padding
UiColumnType::Datetime => 16, // "2025-01-22 14:35"
UiColumnType::Directory => 20,
UiColumnType::Host => 15,