Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanh/terminal_velocity
A fast note-taking app for the UNIX terminal
https://github.com/seanh/terminal_velocity
Last synced: 19 days ago
JSON representation
A fast note-taking app for the UNIX terminal
- Host: GitHub
- URL: https://github.com/seanh/terminal_velocity
- Owner: seanh
- License: gpl-3.0
- Created: 2012-12-27T01:02:36.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-11-10T19:50:51.000Z (about 7 years ago)
- Last Synced: 2024-07-31T17:23:51.936Z (4 months ago)
- Language: Python
- Homepage: http://seanh.github.com/terminal_velocity
- Size: 666 KB
- Stars: 129
- Watchers: 11
- Forks: 64
- Open Issues: 34
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
**This is my unmaintained archived copy of Terminal Velocity**.
Development has moved to Vincent Perricone's fork, you should use this instead: https://github.com/vhp/terminal_velocity
Terminal Velocity (seanh's archived copy)
=========================================`Terminal Velocity` is a fast note-taking app for the UNIX terminal, that
focuses on letting you create or find a note as quickly and easily as possible,
then uses your ``$EDITOR`` to open and edit the note. It is heavily inspired
by the OS X app `Notational Velocity `_.
For screenshots and features, see the
`Terminal Velocity website `_.To install Terminal Velocity, run::
pip install terminal_velocity
Then to launch it just run::
terminal_velocity
To use a different notes directory, run::
terminal_velocity path/to/your/notes/dir
To see all the command-line options, run::
terminal_velocity -h
To quit the app, press ``ctrl-c`` or ``ctrl-x``.
To upgrade Terminal Velocity to the latest version, run::
pip install --upgrade terminal_velocity
To uninstall it, run::
pip uninstall terminal_velocity
To make a bug report or feature request, use `GitHub Issues `_.
To contribute documentation, use `the wiki `_.
To contribute code to Terminal Velocity, see
`CONTRIBUTING `_.Hacking
-------To release a new version of Terminal Velocity:
1. Increment the version number in the
`setup.py file `_,
add an entry te the `changelog `_,
commit both changes to git and push them to github.
For example, see `aae87b `_.2. Upload the new release to `the terminal_velocity package on pypi `_: run ``python setup.py sdist upload -r pypi``.
For more information see https://packaging.python.org/.