Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronbieber/vim-quicktask
Quicktask is a lightweight Vim task management plugin.
https://github.com/aaronbieber/vim-quicktask
Last synced: 2 days ago
JSON representation
Quicktask is a lightweight Vim task management plugin.
- Host: GitHub
- URL: https://github.com/aaronbieber/vim-quicktask
- Owner: aaronbieber
- License: gpl-3.0
- Created: 2012-01-18T14:15:11.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T21:23:21.000Z (7 months ago)
- Last Synced: 2024-08-01T16:44:13.736Z (3 months ago)
- Language: Vim Script
- Homepage:
- Size: 249 KB
- Stars: 211
- Watchers: 10
- Forks: 21
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- my-awesome-github-stars - aaronbieber/vim-quicktask - Quicktask is a lightweight Vim task management plugin. (Vim Script)
README
# Introduction
Quicktask is a lightweight but feature-rich task management plugin designed to
easily and effectively track a list of tasks, their added and completed dates,
time spent, notes, and so forth. Inspired by the todolist Vim syntax scheme
created by Eric Talevich, Quicktask marries sensible and legible text coloration
with keyboard shortcuts to keep you typing tasks rather than metadata.![Quicktask screenshot](doc/quicktask_screen.png)
# Installation
Quicktask is designed to be deployed as a Pathogen (or Vundle, etc.)
bundle. Typically you would simply add the Git repository as a sub-module of
your Vim configuration, or clone it into your bundles folder.If you do not use Git to manage your Vim configuration, you can simply clone the
repository into your `bundles` folder:```
$ cd ~/.vim
$ git clone https://github.com/aaronbieber/vim-quicktask.git bundles/vim-quicktask
```If you *do* use Git to manage your Vim configuration and you want to add
Quicktask as a submodule, you would instead run these commands:```
$ cd ~/.vim
$ git submodule add https://github.com/aaronbieber/vim-quicktask.git bundles/vim-quicktask
$ git submodule init
$ git submodule update
```If you are using Windows, it's recommended that you use Cygwin. In Cygwin the
process is basically the same except that you would `cd` into your Vim runtime
directory rather than `~/.vim`.# Help!
If you are using Pathogen, just run `:Helptags` after installing the plugin
(with a capital "H"). If you are not using Pathogen, you need to run the regular
`helptags` command on the `doc` folder of the plugin. Normally it would be
something like:```
:helptags ~/.vim/bundle/quicktask/doc
```Once help tags have been generated, you can simply run `:h quicktask` to open the full manual.
# License
Quicktask is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.Quicktask is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.You should have received a copy of the GNU General Public License along with
Quicktask. If not, see .