Reputation: 31
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
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:
def
in Python has italic font. Like in ST3.Upvotes: 2