zsh: sort history-analysis results by frequency descending
Alan Pearce alan@alanpearce.eu
Sun, 23 Apr 2023 15:54:24 +0200
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -110,8 +110,8 @@ http = "xh"; https = "xh --default-scheme https"; history = "fc -l $(( $LINES - 2 ))"; - hist-freq-lines = "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less"; - hist-freq-commands = "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -g | tail -n10 | less"; + hist-freq-lines = "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -gr | head -n100 | less"; + hist-freq-commands = "fc -l -10000 | cut -d' ' -f4 | sort | uniq -c | sort -gr | head -n10 | less"; wprop = "xprop | egrep '^WM_(CLASS|NAME|WINDOW_ROLE|TYPE)'"; # Enable the following commands to support aliases. @@ -219,7 +219,7 @@ typeset -T GHQ_ROOT ghq_root export GHQ_ROOT="${config.home.homeDirectory}/projects" function hist-freq-subcommands () { - fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less + fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -gr | head -n100 | less } source ${pkgs.fzf}/share/fzf/key-bindings.zsh