Vova Kolobok

Results 134 comments of Vova Kolobok

And what if user would need to link different bug trackers? I think we should just paste the url — simple, fast, portable, just works™: ``` https://github.com/aziz/PlainTasks/issues/269 ```

Export to HTML definitely does not support new schemes yet. What else could be problematic?

> if anyone can suggest a trick I can use in the meantime You can create a CSS snippet in Settings → Appearance: ```css #scroll-controls { display: none !important; }...

Probably need to restart Sublime. For a task you have to change the pending scope https://github.com/aziz/PlainTasks/blob/65639252b11d0979bd9c50119a74e2bec07deb80/tasks.hidden-tmTheme#L113-L125

Meh, if there is plugin already, then what’s the point to duplicate functionality, esp. unrelated to filemanagment one?

You can disable keys in your user keybindings file: ``` js { "keys": ["super+w"], "command": "noop", "context": [{ "key": "selector", "operator": "equal", "operand": "text.dired" }] } ```

If you install via Package Control on ST3 you can create `Packages/FileBrowser/shortcuts.md` with your own content. I think we should at least set correct keybindings in status-bar when renaming dynamically.

> only have to go through the package's default and user's key binding file right? No, keybinding can be anywhere. I thought command has info about keybinding since ST show...

That is what I meant menu and command palette, but this info is not available programmatically it seems. You can get all text command as list with `sublime_plugin.text_command_classes` you can...

We need to find expanded directories when refreshing/renaming, currently it is just `view.find` Can we access phantoms of a view and content of a phantom? Does not seem so, there...