mirror of
https://github.com/edu4rdshl/based.fish.git
synced 2026-07-17 23:24:46 +00:00
There are cases where you want to exclude some paths from being indexed. E.g: `..`, `/tmp/*`, and others.
8 lines
248 B
Fish
8 lines
248 B
Fish
function __based_reset_state
|
|
echo "Resetting Based state..."
|
|
# Unset all variables related to Based state
|
|
set -e BASED_NO_CONFIRMATION
|
|
set -e BASED_NO_FUZZY
|
|
set -e BASED_EXCLUDED_PATHS
|
|
echo "Based state has been reset."
|
|
end
|