Mojo1313
Mojo1313

Reputation: 31

What editor does Elliot use in Season 4 Episode 8(Mr. robot)?

sorry for the stupid question In season 4, episode 8(Mr. Robot), Elliot writes a script. What a code editor does he use? I will attach a pic of the environment. Is it sublime? if is it sublime, did the font change, and indent guide hide? Tnx!

A pic of the editor that he used

Upvotes: 3

Views: 1539

Answers (1)

Prog1020
Prog1020

Reputation: 4781

It looks like not Sublime Text, because

  • Python syntax. Token __name__ is colored with 2 colors, while ST uses one Id color. And string token "__main__" is colored with 2 colors, while ST uses single color. It may be some custom ST syntax, though.

  • Sublime shows indent-guide vertical lines, screenshot don't have them. Lines can be hidden, though.

It looks like Sublime Text because:

  • function word def in Python has italic font. Like in ST3.
  • gutter shows colored back of current line, and yellow vertical bar on the left, for changed line. Sublime does it! VS Code don't do it (by default?).

Upvotes: 2

Related Questions