LordOfTrident / cxxdo

A simple todo editor written in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cxxdo

A simple todo editor written in C++

License Issues GitHub pull requests


Table of contents

Introduction

A simple todo editor that can view todos in a file and check/uncheck them.

Quickstart

$ make
$ ./bin/app FILENAME

See ./bin/app -h for help.

Format

A simple todo example:

[X] Buy apples
[ ] Buy oranges

A dash in front of the todo is acceptable:

- [X] Buy apples
- [ ] Buy oranges

The checked character is case-insensitive (both x and X are valid). If the box isnt checked, the character can either be a space ( ) or a dot (.)

[x] Buy apples
[.] Buy oranges

All lines in a file that are not todos are ignored and their parsing error is logged into stderr

Bugs

If you find any bugs, please create an issue and report them.

Dependencies

Make

Run make all to see all the make rules.

About

A simple todo editor written in C++

License:GNU General Public License v3.0


Languages

Language:C++ 93.0%Language:Makefile 7.0%