Skip to content

Commit

Permalink
feat: alias -e cli arg to --exact,--normal,-n,--norm (similar to fzf …
Browse files Browse the repository at this point in the history
…-e,--exact)
  • Loading branch information
talmobi committed Sep 25, 2024
1 parent 2374787 commit 7bc25fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if ( argv.h || argv.help ) {
process.exit()
}

const normalMode = ( argv.n || argv.normal || argv.norm || argv.exact)
const normalMode = ( argv.n || argv.normal || argv.norm || argv.e || argv.exact)

return run()

Expand Down

0 comments on commit 7bc25fb

Please sign in to comment.