Skip to content

Instantly share code, notes, and snippets.

@t17a
Created July 12, 2014 02:32
Show Gist options
  • Save t17a/ce001314c47a40471131 to your computer and use it in GitHub Desktop.
Save t17a/ce001314c47a40471131 to your computer and use it in GitHub Desktop.
function zshaddhistory() { # {{{
# http://mollifier.hatenablog.com/entry/20090728/p1
local line cmd
line=${1%%$'\n'}
cmd=${line%% *}
# Add command to history if it meets the following conditions
[[ ${#line} -ge 5
&& ${cmd} != (l|l[sal])
&& ${cmd} != (c|cd)
&& ${cmd} != (m|man)
&& ${cmd} != (r[mr])
]]
} # }}}
@duqcyxwd
Copy link

duqcyxwd commented Apr 8, 2021

Thanks for sharing, this is very useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment