Compare commits

...

2 Commits

Author SHA1 Message Date
affbbba82b don't list dirs if they don't exist' 2022-01-08 11:34:49 -07:00
39927b6c7e Added a demo 2022-01-04 15:14:05 -07:00
3 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,8 @@
Code Activator provides fast project navigation in the terminal through both an API and CLI.
![Visual Demo](./docs/demo.gif "Example usage to jump to code-activator's source!")
## Contributing
See our [contributing guide](./docs/CONTRIBUTING.md) and [code of conduct](./docs/CODE_OF_CONDUCT.md).

BIN
docs/demo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 KiB

View File

@ -25,6 +25,7 @@ _CA_LIST() {
{
for base_dir in $CA__DIRS
do
[ ! -d $base_dir ] && continue
{ cd $base_dir; ls -d *; } \
| awk '{print "'$(basename $base_dir)/'"$1;}'
done