- 08 Jan, 2016 5 commits
-
-
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.
-
- 30 Dec, 2015 10 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Introduce config file for column layout
-
Bram Schoenmakers authored
-
Jacek Sowiński authored
Column-ui will look for columns configuration in: 1. system-wide configuration: /etc/topydo_columns.conf 2. user dir: ~/.topydo_columns ~/.config/topydo/columns 3. current dir: .topydo_columns topydo_columns.conf topydo_columns.ini Each column should have its own INI style config section: [FooBar] title = Foo filterexpr = Bar sortexpr = desc:prio show_all = 1 If any column option is missing, default value will be used.
-
Jacek Sowiński authored
Also move home_config_path() out of the Config class. It didn't use 'self' argument and this way we can reuse it other places.
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Support backups (and `revert`) in column ui
-
Bram Schoenmakers authored
Thanks to @mruwek for investigating.
-
- 29 Dec, 2015 1 commit
-
-
Bram Schoenmakers authored
Add `topydo columns` subcommand to launch column-ui
-