All Projects → mrodalgaard → Atom Todo Show

mrodalgaard / Atom Todo Show

Licence: mit
Atom package that shows a list of todos from your project.

Programming Languages

coffeescript
4710 projects

Projects that are alternatives of or similar to Atom Todo Show

Todo.txt Cli
☑️ A simple and extensible shell script for managing your todo.txt file.
Stars: ✭ 4,725 (+2440.32%)
Mutual labels:  todo, todolist
Todo
简洁清爽的Todo清单工具❤️ (MVP+okhttp3+retrofit+gson)
Stars: ✭ 93 (-50%)
Mutual labels:  todo, todolist
Todo app
todo app in react
Stars: ✭ 18 (-90.32%)
Mutual labels:  todo, todolist
Qtodotxt
Cross Platform todo.txt GUI
Stars: ✭ 358 (+92.47%)
Mutual labels:  todo, todolist
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (+649.46%)
Mutual labels:  todo, todolist
Mirakel Android
Easy task management for professionals
Stars: ✭ 382 (+105.38%)
Mutual labels:  todo, todolist
Realmtasks
Simple Todo iOS app with Realm DB and Swift
Stars: ✭ 83 (-55.38%)
Mutual labels:  todo, todolist
meemo
Run a lightweight Meemo server with database on Docker with docker-compose
Stars: ✭ 18 (-90.32%)
Mutual labels:  todo, todolist
Todoit
The JavaScript framework for hassle-free TODO application development.
Stars: ✭ 102 (-45.16%)
Mutual labels:  todo, todolist
Py Todo
📋 Lightweight reminder / todo-list in cli
Stars: ✭ 102 (-45.16%)
Mutual labels:  todo, todolist
todoscreensaver
A screensaver that reads a text file from somewhere on your PC.
Stars: ✭ 20 (-89.25%)
Mutual labels:  todo, todolist
Coddx Alpha
Coddx - a collection of tools that help developers program efficiently. One of the features is generating multiple files from templates quickly.
Stars: ✭ 132 (-29.03%)
Mutual labels:  todo, todolist
mark
mark is an markdown editor app for mac
Stars: ✭ 47 (-74.73%)
Mutual labels:  todo, todolist
Backlog
Simple desktop app for storing lists of items (todo, tasks, backlog items)
Stars: ✭ 407 (+118.82%)
Mutual labels:  todo, todolist
to-do-list-acf-to-rest-api
To do list using the plugin WordPress REST API
Stars: ✭ 24 (-87.1%)
Mutual labels:  todo, todolist
Go Todo
微信小程序 todo后端,采用GoFrame框架搭建,包含微信认证、token管理、发送微信模板消息等
Stars: ✭ 60 (-67.74%)
Mutual labels:  todo, todolist
ttdl
TTDL - Terminal Todo List Manager
Stars: ✭ 91 (-51.08%)
Mutual labels:  todo, todolist
td
a non-offensive, per project ToDo manager.
Stars: ✭ 48 (-74.19%)
Mutual labels:  todo, todolist
Flutter todo
Yet another Todo app, now using Flutter (with ScopedModel)
Stars: ✭ 94 (-49.46%)
Mutual labels:  todo, todolist
Td Cli
A todo command line todo manager ✔️
Stars: ✭ 119 (-36.02%)
Mutual labels:  todo, todolist

Todo Show Package Build Status

DEPRECATED: This package will no longer be maintained by me since I have switched permanently to VSCode.

Finds all TODO, FIXME, CHANGED, XXX, IDEA, HACK, NOTE, REVIEW, NB, BUG, QUESTION, COMBAK, TEMP comments in your project and shows them in a nice overview list.

Attention: This package searches for todos. For todo word highlighting see language-todo.

Open todo list using command palette Todo Show: Find In Workspace, Todo Show: Find In Project or Todo Show: Find In Open Files. Keyboard shortcuts CTRL + SHIFT + T on Mac OSX or ALT + SHIFT + T on Windows and Linux.

Install with apm install todo-show or use Install Packages from Atom Settings.

todo-show-package

Search Scopes

Five different scopes are available to narrow down your search for todos. Change scope using the button at the top of the todo view or use the corresponding command.

  • Workspace: Searches all open projects.
  • Project: Searches active project (a project is marked as active when you open a file it contains).
  • Open Files: Searches currently open files.
  • Active File: Searches last active file only.
  • Custom: Tree view has a context menu to search for todos in the selected folder or file.

Configuration

Name Default Description
autoRefresh true Automatic refresh of todo list after saving
findTheseTodos ['FIXME', 'TODO', 'CHANGED', 'XXX', 'IDEA', 'HACK', 'NOTE', 'REVIEW', 'NB', 'BUG', 'QUESTION', 'COMBAK', 'TEMP'] An array of todo types used by the search regex
findUsingRegex See 'Regular Expression Search' section Regex string used to find all your todos. ${TODOS} is replaced with FindTheseTodos from above
ignoreThesePaths ['node_modules', 'vendor', 'bower_components', '*.pdf'] An array of files / folders to exclude (syntax according to scandal used internally by Atom).
globally: Ignored Names from atom core settings.
locally: Ignores anything in your .gitignore file, if the current project is a valid git repository and atom core setting Exclude VCS Ignored Paths is checked.
showInTable ['Text', 'Type', 'Path'] An array of properties to show for each todo in table
sortBy 'Text' Sort table by this todo property
sortAscending true Sort table in ascending or descending order
exportAs 'List' Choose which format to use for exported markdown
statusBarIndicator false Show todo count in status bar (this is only shown and updated when the 'Todo Show' tab is open)

Regular Expression Search

The regexes in findTheseRegexes are used for searching the workspace for todo matches. They are configurable to match the users specific needs.

Default regex string: '/\\b(${TODOS})[:;.,]?\\d*($|\\s.*$|\\(.*$)/g'

  • \b start at word boundary
  • ${TODOS} todo type match (is replaced with findTheseTodos)
  • [:;.,]? optional separator after type
  • \d* optional digits for supporting imdone sorting
  • $ to end todos without additional text (newline)
  • Or \s.*$ to match the todo text with a non-optional space in front
  • Or an immediate parentheses, \(.*$, to support Google style guide IDs
  • Because Atom config only accepts strings all \ characters are also escaped

To extend the default todo types and search regex, the existing config needs to be copied into your config.cson.

Other Features

  • Configurable Columns: You can define which columns you want to see in your todo list: Text, Type, Path, Tags, Range, Line, Regex, File, Id, Project
  • Sortable Columns: All columns in the todo list can be sorted ascending or descending.
  • TODO tags: Todos can be tagged using hashtags (e.g. TODO: do this #object #profile), which are presented in the "Tags" column.
  • Live search: You can search within your todo list. Note: This feature is temporarily disabled due to a bug, see https://github.com/mrodalgaard/atom-todo-show/issues/198

Credits

Originally created by Jamis Charles

Now maintained by Martin Rodalgaard

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].