Skip to content

Instantly share code, notes, and snippets.

@kminiatures
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kminiatures/4f8ed173dbc605b70413 to your computer and use it in GitHub Desktop.
Save kminiatures/4f8ed173dbc605b70413 to your computer and use it in GitHub Desktop.
incremental search for history using peco.
function peco-hist() {
time_column=`echo $HISTTIMEFORMAT | awk '{printf("%s",NF)}'`
column=`expr $time_column + 3`
cmd=`history | tac | peco | sed -e 38;5;208m's/^ //' | sed -e 's/ +/ /g' | cut -d " " -f $column-`
history -s "$cmd"
eval $cmd
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment