Vova Kolobok

Results 134 comments of Vova Kolobok

> When projects get completed and archived, they cant really be unarchived can they? Like `ctrl+x`, `ctrl+v` and remove bullet? sure.

It is probably because of `"before_tasks_bullet_margin": 1` setting, try 2 or more instead of 1.

Yes, the archiving command simply strips leading and trailing whitespaces as `line_content.strip()`: https://github.com/aziz/PlainTasks/blob/8edb7703002c0ac6bcad432dce6b59944cdaf702/PlainTasks.py#L435-L455 The issue with maintaining whole indentations is that you would have to check if the task have...

Make sure `"tab_completion": true` in settings.

After you pressed tab and get wrong/unexpected result, you can press tab again to replace it with next match, or press ctrl+space to see list of all matches.

Do you use some autocomplete plugins? they usually break sublime-completions file which is used in PT. Rebind ctrl+space to some other keys in user keybindings files: ```js { "keys": ["ctrl+space"],...

You are definitely using some plugin which mess up completions, because ST does not show file names, it shows trigger on the left and result on the right ![default](https://cloud.githubusercontent.com/assets/1975298/24402213/c75b5112-13e1-11e7-8131-9865fd9af48f.png)

In console execute `sublime.log_commands(True)` then try in some PT doc: c, tab output in console must be ``` command: insert_best_completion {"default": "\t", "exact": false} ``` ctrl+space ``` command: replace_completion_with_auto_complete ```...

I cannot find Tag package on Package Control, where you got it? Please, show output of execution in console ``` import sublime_plugin, pprint; pprint.pprint(sublime_plugin.all_callbacks.get('on_query_completions')) ```

Sure, if your pr won’t break anything it will be accepted.