Skip to content

Commit

Permalink
Update Predefined Commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mvnural committed Sep 24, 2015
1 parent 525a41a commit 93b7f3b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions IndentRespectfulSort.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
"command": "indent_respectful_sort",
"args": {"indent": " "}
},
{
"caption": "Indent Respectful Sort: Indented by 2 Spaces & Max Depth = 2",
"command": "indent_respectful_sort",
"args": {"indent": " ", "maxDepth": "2"}
},
{
"caption": "Indent Respectful Sort: Indented by 2 Spaces & Only Third Level",
"command": "indent_respectful_sort",
"args": {"indent": " ", "onlyDepth": "3"}
},
{
"caption": "Indent Respectful Sort: Indented by 4 Spaces",
"command": "indent_respectful_sort",
Expand All @@ -18,10 +28,5 @@
"caption": "Indent Respectful Sort: Indented by a Tab & Max Depth = 2",
"command": "indent_respectful_sort",
"args": {"indent": "\t", "maxDepth": "2"}
},
{
"caption": "Indent Respectful Sort: Indented by 2 Spaces & Only Root Level",
"command": "indent_respectful_sort",
"args": {"indent": "\t", "onlyDepth": "1"}
}
]

0 comments on commit 93b7f3b

Please sign in to comment.