From b19cc799aa924ee10ae2cf800a34e73265235a9b Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 7 Jul 2022 07:59:00 -0500 Subject: [PATCH] make history.txt and history.sqlite3 tables have same command column (#5980) --- crates/nu-command/src/misc/history.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/misc/history.rs b/crates/nu-command/src/misc/history.rs index 41c303af0..d04ed4e96 100644 --- a/crates/nu-command/src/misc/history.rs +++ b/crates/nu-command/src/misc/history.rs @@ -116,7 +116,7 @@ impl Command for History { cols: vec![ "item_id".into(), "start_timestamp".into(), - "command_line".to_string(), + "command".to_string(), "session_id".into(), "hostname".into(), "cwd".into(),