Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get Sublime Text 2 to write output from the Console to the current file?

This could be useful for something like looping a list to generate repetitive output. Here's a contrived example:

# Console:
>>> pets = ['dog', 'cat', 'bird', 'fish']
>>> print '<ul>\n<li>%s</li>\n</ul>' % '</li>\n</li>'.join(pets)

Is there a command to send that output to the insertion point of the file I'm working on?

Note that I am not looking to run the current file in a console window, I'm looking to run a snippet from the console to generate code in the current file.

share|improve this question

1 Answer

You can use insert command:

>>> pets = ['dog', 'cat', 'bird', 'fish']
>>> output = '<ul>\n<li>%s</li>\n</ul>' % '</li>\n</li>'.join(pets)
>>> view.run_command("insert", {"characters": output})
share|improve this answer
That works, but I'm holding out for something simpler and cleaner. – joemaller Jan 8 at 1:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.