Browse Source

[history] Use fc -l instead of history

`history` is equivalent to `fc -l`, and `fc` is the actual Zsh builtin.

Add the `-n` flag to suppress event numbers when listing.
Eric Nielsen 5 years ago
parent
commit
81a52a5d7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/history/init.zsh

+ 1 - 1
modules/history/init.zsh

@@ -37,4 +37,4 @@ setopt HIST_VERIFY
 
 
 # Lists the ten most used commands.
-alias history-stat="history 0 | awk '{print \$2}' | sort | uniq -c | sort -n -r | head"
+alias history-stat="fc -ln 0 | awk '{print \$1}' | sort | uniq -c | sort -nr | head"