Added comment to the run() method
This commit is contained in:
parent
73721049cb
commit
c7e3288175
|
@ -5,6 +5,8 @@ import json
|
|||
s = sublime.load_settings("Pretty JSON.sublime-settings")
|
||||
|
||||
class PrettyjsonCommand(sublime_plugin.TextCommand):
|
||||
""" Pretty Print JSON
|
||||
"""
|
||||
def run(self, edit):
|
||||
for region in self.view.sel():
|
||||
# If no selection, use the entire file as the selection
|
||||
|
|
Loading…
Reference in New Issue