Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'verbose-clean': v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CodesOfRishi committed Dec 18, 2021
2 parents 50df41c + 9fb8593 commit f4e227c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ A `cd` command with improved and extended usability features to quickly navigate
</details>

### Other Features
- Remove invalid paths from log using `--cleanup` option.
- Remove invalid paths from log using `--clean` option.

```bash
cd --cleanup
cd --clean
```

- Use `--version` option to print version information.
Expand Down
4 changes: 2 additions & 2 deletions smartcd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ __smartcd__() {

# no. of unique recently visited directories smartcd to remember
export SMARTCD_HIST_SIZE=${SMARTCD_HIST_SIZE:-"50"}
export SMARTCD_VERSION="v1.5.0"
export SMARTCD_VERSION="v2.0.0"

# options customizations
export SMARTCD_CLEANUP_OPT=${SMARTCD_CLEANUP_OPT:-"--cleanup"} # option for cleanup of log file
export SMARTCD_CLEANUP_OPT=${SMARTCD_CLEANUP_OPT:-"--clean"} # option for cleanup of log file
export SMARTCD_PARENT_DIR_OPT=${SMARTCD_PARENT_DIR_OPT:-".."} # option for searching & traversing to parent-directories
export SMARTCD_HIST_OPT=${SMARTCD_HIST_OPT:-"--"} # option for searching & traversing to recently visited directories
export SMARTCD_GIT_ROOT_OPT=${SMARTCD_GIT_ROOT_OPT:-"."} # option for traversing to root of the git repo
Expand Down

0 comments on commit f4e227c

Please sign in to comment.