diff options
author | tv <tv@krebsco.de> | 2019-02-05 11:54:03 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-02-08 05:19:48 +0100 |
commit | c1bd2a0851dc163a77699b00759f8ae4aa38a65d (patch) | |
tree | 4ffbd9ee5d6d426e7db42856c65953f14e324714 /tv/5pkgs | |
parent | 6cfbc67cb236671af6781bd6a5b628d5300f67ab (diff) |
tv bash-fzf-history: show timestamp
Diffstat (limited to 'tv/5pkgs')
-rw-r--r-- | tv/5pkgs/simple/bash-fzf-history.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tv/5pkgs/simple/bash-fzf-history.nix b/tv/5pkgs/simple/bash-fzf-history.nix index 8b3fe9e58..7b92ea0cd 100644 --- a/tv/5pkgs/simple/bash-fzf-history.nix +++ b/tv/5pkgs/simple/bash-fzf-history.nix @@ -35,8 +35,9 @@ with import <stockholm/lib>; __fzf_history__() ( IFS=$'\n' result=( $( - HISTTIMEFORMAT= history | + HISTTIMEFORMAT=$'\e[38;5;244m%Y-%m-%dT%H:%M:%S\e[m ' history | FZF_DEFAULT_OPTS="${toString [ + /* sh */ "--ansi" /* sh */ "--tac" /* sh */ "--sync" /* sh */ "-n2..,.." @@ -51,13 +52,15 @@ with import <stockholm/lib>; /^ *[0-9]/{ s/^ *// s/ \+/\n/;# index + s/ \+/\n/;# date } ' ) ) if test -n "$result"; then key=''${result[0]} index=''${result[1]} - command=''${result[2]} + date=''${result[2]} + command=''${result[3]} echo "$command${mark-prefix}$key" else |