this is a super simple vim-like notetaking app i made for myself
built with cython
clone this repo
git clone https://github.com/yourusername/scrappad.git
then install dependencies:
pip install -r requirements.txt
then install the app:
pip install .
note that on some systems (like macos) you might have to use pip3
instead of pip
.
super basic vim keybinds:
:w
--- save
:q
--- quit (:q!
to force quit)
:wq
-- write and quit
i
---- insert mode
default folder for notes is at ~/.config/scrappad
edit setup.py to whatever
run pip install .
to build this project.
- use cython to build
- logging
- make program run faster
- add support for markdown
- add support for exporting notes
- autosave?
- argparse?