We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I received this error message on every command:
zshaddhistory:4: failed to compile regex: empty (sub)expression
The text was updated successfully, but these errors were encountered:
That's odd - do you have any settings set to do with regex in your zshrc?
Have you changed the value of _BORING_COMMANDS?
You can remove the check for boring commands if you like, just knock out this bit:
for boring in "${_BORING_COMMANDS[@]}"; do if [[ "$cmd" =~ $boring ]]; then return 0 fi done
The effect will be that you get calls to ls in your history, which are not great reading.
Tom
Sorry, something went wrong.
No branches or pull requests
I received this error message on every command:
zshaddhistory:4: failed to compile regex: empty (sub)expression
The text was updated successfully, but these errors were encountered: