Tony Brix

Results 612 comments of Tony Brix

So let me see if I understand what this feature is supposed to do: When terminal file mapping is on, this feature would open a new terminal for every file...

I deleted the other comments since they are no longer relevant. But this feature would be really nice.

@vinaydawani I have not started to work on this. If you want to create a PR I would be happy to review it.

@cloudguruab this won't be easy. Octicons quit using fonts in v5 and went with svgs. But you can try if you want to.

@parrthpanchal go ahead 👍

Looks like it is an error in https://github.com/atom/atom/blob/978843584aaeb25e25fbe53693bb9d227b4bfed1/script/lib/spawn-sync.js#L17 If you delete `${result.args.join(' ')}` locally it should not throw an error.

@parrthpanchal yes

Marked tries to follow the [CommonMark spec](https://spec.commonmark.org/0.31.2/#emphasis-and-strong-emphasis). As you can see all of these cases follow the spec. case 1: [marked demo](https://marked.js.org/demo/?outputType=html&text=_**abcd123**_&options=%7B%0A%20%22async%22%3A%20false%2C%0A%20%22breaks%22%3A%20false%2C%0A%20%22extensions%22%3A%20null%2C%0A%20%22gfm%22%3A%20true%2C%0A%20%22hooks%22%3A%20null%2C%0A%20%22pedantic%22%3A%20false%2C%0A%20%22silent%22%3A%20false%2C%0A%20%22tokenizer%22%3A%20null%2C%0A%20%22walkTokens%22%3A%20null%0A%7D&version=12.0.0) [CommonMark demo](https://spec.commonmark.org/dingus/?text=_**abcd123**_) case 2: [marked demo](https://marked.js.org/demo/?outputType=html&text=abcd_**123**_&options=%7B%0A%20%22async%22%3A%20false%2C%0A%20%22breaks%22%3A%20false%2C%0A%20%22extensions%22%3A%20null%2C%0A%20%22gfm%22%3A%20true%2C%0A%20%22hooks%22%3A%20null%2C%0A%20%22pedantic%22%3A%20false%2C%0A%20%22silent%22%3A%20false%2C%0A%20%22tokenizer%22%3A%20null%2C%0A%20%22walkTokens%22%3A%20null%0A%7D&version=12.0.0) [CommonMark demo](https://spec.commonmark.org/dingus/?text=abcd_**123**_)...

Naming things is one of the hardest problems. If you want to create a PR to update the docs, that would be great 😃 👍

The space token is used in places where it is needed. For example if two paragraphs are next to each other they become one paragraph token unless there is a...