Skip to content

Tenzer/PythonOutputFormat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Output Format

A simple plugin for Sublime Text inspired by Pretty JSON for formatting printed output from Python programs into a more easily readable format.

The plugin simply adds one action, cleverly named "Python Output Format", which either takes the text you have selected, or, if nothing is selected, the entire active document, and attempts to format it in a way that is more easy to read.

It will for instance turn this blob:

{'details': 'https://github.com/Tenzer/PythonOutputFormat', 'releases': [{'sublime_text': '*', 'tags': True}], 'name': 'Python Output Format'}

into this:

{
    'details': 'https://github.com/Tenzer/PythonOutputFormat',
    'releases': [
        {
            'sublime_text': '*',
            'tags': True 
        }
    ],
    'name': 'Python Output Format'
}

Installation

The package is available via Package Control under the name "Python Output Format".

Keyboard Shortcut

If you prefer to have a keyboard shortcut to trigger the "Python Output Format" action with, you can add it by opening your user keybindings in Sublime Text and add an entry like the following to the array:

{ "keys": ["super+ctrl+y"], "command": "python_output_format" }

You can of course specify the keyboard combination you prefer. Save the file and it will take effect immediately.

About

Sublime Text plugin to format printed objects from Python code

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages