├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── grammars └── todotxt.cson ├── lib ├── language-todotxt.js └── todotxt-autocomplete-provider.js ├── package.json └── spec ├── add-command-spec.js ├── autocomplete-spec.js ├── done-command-spec.js ├── fixtures ├── done.txt ├── other.txt └── todo.txt ├── grammars-todotxt-spec.js └── priority-command-spec.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/appveyor.yml -------------------------------------------------------------------------------- /grammars/todotxt.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/grammars/todotxt.cson -------------------------------------------------------------------------------- /lib/language-todotxt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/lib/language-todotxt.js -------------------------------------------------------------------------------- /lib/todotxt-autocomplete-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/lib/todotxt-autocomplete-provider.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/package.json -------------------------------------------------------------------------------- /spec/add-command-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/add-command-spec.js -------------------------------------------------------------------------------- /spec/autocomplete-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/autocomplete-spec.js -------------------------------------------------------------------------------- /spec/done-command-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/done-command-spec.js -------------------------------------------------------------------------------- /spec/fixtures/done.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/fixtures/done.txt -------------------------------------------------------------------------------- /spec/fixtures/other.txt: -------------------------------------------------------------------------------- 1 | This is just a text file. 2 | -------------------------------------------------------------------------------- /spec/fixtures/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/fixtures/todo.txt -------------------------------------------------------------------------------- /spec/grammars-todotxt-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/grammars-todotxt-spec.js -------------------------------------------------------------------------------- /spec/priority-command-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todotxt/language-todotxt/HEAD/spec/priority-command-spec.js --------------------------------------------------------------------------------