Dmytro Kyrychuk

Results 24 comments of Dmytro Kyrychuk

I suppose, a better solution is to use the rpm's [boolean dependencies](http://www.rpm.org/wiki/PackagerDocs/BooleanDependencies) and replace this: ``` Requires: python3-markdown, ... ``` with this: ``` Requires: (python3-markdown or python3-Markdown), ... ``` I...

This makes it possible to make leading starts in headers invisible by adding the following vscode settings: ```json "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "entity.name.type.org.leading", "settings": { "foreground": "#00000000" }...

I don't know if there is a clean way to implement this. There is no one `editor.background` color we could use because there could be a picture on the background,...

Hello @sipi. I am mostly working with Python, but occasionally I contribute to some Atom and now to VS Code extensions that I use myself. I'd be happy to contribute...

I think it would make more sense to make a single `org.exportToFormat` command with a format as its argument, and another `org.export` command that would show a list of formats...

@sipi I think you're meant to put changes in `org.tmLanguage.template.json` and then run `npm run generate-syntaxes` in order to update `org.tmLanguage.json`.

@slikts I agree `C-M-o p` is a lot of keystrokes. I'm not sure if it makes sense to change the default key bindings as the current default ones are very...

@sipi I see your point. I do not insist on changing the default behavior. However, I do not think it's a bad idea either. It makes sense that certain actions...

I am glad that we reached an agreement. Let's continue discussing details. > I'm not really happy with that because if now I rebind this command to TAB for example,...

I've been looking into this lately and there's a thing in go tests that caught my eye. It looks like every test there verifies that no goroutines are left hanging...