note-keeper icon indicating copy to clipboard operation
note-keeper copied to clipboard

:notebook: A tiny bash tool for taking and organizing notes.

Results 10 note-keeper issues
Sort by recently updated
recently updated
newest added

Currently using `-h/--help` to print out a usage guide prints the flags in a somewhat random order (basically, based on when they were implemented). This should be sorted and potentially...

enhancement :sparkles:
good first issue :+1:

Add `-v/--version` flag to print notekeeper version.

good first issue :+1:
feature request :wrench:

Currently a mix of variable naming schemes: - ENV_VAR style naming from the early days. - camelCase - snake_case Google's [shell style guide](https://google.github.io/styleguide/shellguide.html#naming-conventions) is probably a good place to start.

Add support for [`fd`](https://github.com/sharkdp/fd#installation). `fd` is a faster alternative to `find` - but doesn't share 100% compatibility. Add support for this tool via `noterc` config file.

feature request :wrench:

As more features are added/things are changed, need to add some unit tests to avoid regression bugs.

Maybe with -s | --secret.

feature request :wrench:

This could use a symlink in the top level directory to $(date), or the most recently edited/created note file.

feature request :wrench:

`$ note push` or something similar to push notes to a remote git repo. EG -> ``` gitPushDate=$(date +%Y-%m-%d) echo "$gitPushDate" git add ~/notes/* git commit -m 'Automatically adding notes...

feature request :wrench:

Would be great to have the ability to add tags (and maybe more information) via markdown metadata? Similar to how [Jekyll](https://github.com/jekyll/jekyll) or [Notable](https://github.com/notable/notable) do tags. EG: ```md --- tags: feature,...

feature request :wrench:

Expected behavior: When a new note with custom name is created, the note filename is created without .md extension Nor example if I type: notekeeper -n mynote, the file in...