- 10 Feb, 2016 1 commit
-
-
Jacek Sowiński authored
User can now specify key-shortcuts in main topydo config file under 'column_keymap' section in form of: `<SHORTCUT> = <ACTION>` Two main types of action are supported: - built-in (one of: 'home', 'end', 'up', 'down', 'postpone', 'postpone_s' and 'pri') - topydo commands (aliases included). Prefixed with 'cmd'. Commands to call on selected todo item should contain '{}' placeholder to mark its place in final command call in similiar fashion as in aliases definitions. postpone, postpone_s and pri shortcuts are sort of prefixes for arguments for respective topydo commands triggered on selected todo item: - `postpone<COUNT><PERIOD>` will translate to `cmd postpone {} <COUNT><PERIOD>`. postpone_s will do the same but with '-s' flag added. - `pri<PRIORITY>` will translate to `cmd pri {} <PRIORITY>` Default config as an example: ```ini [column_keymap] gg = home G = end j = down k = up d = cmd del {} e = cmd edit {} u = cmd revert x = cmd do {} pp = postpone ps = postpone_s pr = pri ``` - pp23d will postpone selected item by 23 days - ps1m will postpone selected item (threshold date included) by 1 month - prz will set priority of selected item to (Z)
-
- 22 Jan, 2016 4 commits
-
-
Bram Schoenmakers authored
Initialize it on startup and use that color map, instead of instantiating it for every todo widget.
-
Bram Schoenmakers authored
There is no need to instantiate the parser for each widget since the expression remains the same. Should save some CPU cycles for each screen update, in my case having over 600 todo widgets activated.
-
Bram Schoenmakers authored
This addresses some slugginess that I encounter in the column UI. For example, when doing an `ls` on the commandline, formerly it would execute: * Perform backups; * Write the todo file (+ archive if applicable); * Refresh all the columns; All in all this takes quite a while. CLIApplicationBase::_post_execute will now reset the dirty flag of the todo list. Then writing stuff and refreshing columns will only occur when the todo list is dirty. Updating columns can still be made smarter. When an action is executed on a specific todo item, only update those columns that contain that item, or are related to it through dependencies.
-
Bram Schoenmakers authored
-
- 14 Jan, 2016 2 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Applying a filter is a primary thing to do for defining a column, therefore put it on top.
-
- 11 Jan, 2016 2 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
- 08 Jan, 2016 7 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
The console widget is slightly smaller than the terminal size, so the column UI should help get_terminal_size a bit to determine the correct size.
-
Bram Schoenmakers authored
Don't concatenate column layout configs
-
-
Bram Schoenmakers authored
-
Jacek Sowiński authored
Use only one layout file. Following precedence is applied: 1. Local (i.e. $PWD/topydo_columns.ini or $PWD/topydo_columns.conf or $PWD/.topydo_columns) 2. User's home (i.e. $HOME/.topydo_columns or $HOME/.config/topydo/columns) 3. System-wide (i.e. /etc/topydo_columns.conf)
-
- 07 Jan, 2016 5 commits
-
-
Bram Schoenmakers authored
Add history to command-line widget
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
'A' appends a new column. 'I' inserts a new column before the current column. 'N' was dropped.
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
This reverts commit 3513603a. TodoListWidget actually uses this variable to associate the widget with the Todo item. Thanks to @mruwek for the heads up.
-
- 06 Jan, 2016 6 commits
-
-
Jacek Sowiński authored
Main concept and great part of implementation derived from [pazz/alot][1]. [1]: https://github.com/pazz/alot/blob/0.3.7/alot/widgets/globals.py#L76
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Gets rid of creation date and hidden tags that consume precious space.
-
Bram Schoenmakers authored
Temporarily disable color output in column-ui's console
-
- 05 Jan, 2016 1 commit
-
-
Jacek Sowiński authored
We don't want raw ANSI codes there. We'll enable it back again after providing proper coloring solution.
-
- 04 Jan, 2016 1 commit
-
-
Bram Schoenmakers authored
-
- 02 Jan, 2016 2 commits
-
-
Bram Schoenmakers authored
New key-shortcuts for column-ui
-
Jacek Sowiński authored
Thanks to @bram85 for the idea.
-
- 01 Jan, 2016 3 commits
-
-
Bram Schoenmakers authored
Fix crashes when last item in column disappeared
-
Jacek Sowiński authored
Almost identical to `p`: - `ps3d` will call `topydo postpone -s TODO 3d` - `psy` will call `topydo postpone -s TODO 1y`
-
Jacek Sowiński authored
_command_on_selected: accepts string containing command (with potential arguments) to execute and replace field (for further substitution with todo id) as an argument.
-
- 31 Dec, 2015 6 commits
-
-
Jacek Sowiński authored
There was uncaught IndexError when dealing with focus.
-
Jacek Sowiński authored
Actually it's a two letter shortcut. Second letter stands obviously for priority. Example: - 'rc' will trigger `topydo pri TODO_ITEM C`
-
Jacek Sowiński authored
-
Jacek Sowiński authored
-
Jacek Sowiński authored
-
Jacek Sowiński authored
Shortcut calls postpone command and accepts similiar format as original `topydo postpone`. Examples: - pressing 'pd' or 'p1d' will postpone selected task by one day. - 'p3y' will postpone task by 3 years. - 'p12w' will postpone task by 12 (twelve) weeks.
-