1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[
{"caption": "Filter Through Command", "command": "filter_through_command"},
{"caption": "Save as ISO 8859-1", "command": "save", "args": {"encoding": "Western (ISO 8859-1)"} },
{"caption": "Refresh folder list", "command": "refresh_folder_list"},
{"caption": "Delete to next brace", "command": "run_macro_file", "args": {"file": "Packages/User/DeleteToNextBrace.sublime-macro"}},
{"caption": "Getter call result to var", "command": "run_macro_file", "args": {"file": "Packages/User/get_to_var.sublime-macro"}},
{"caption": "Insert Date (YMDHMS)", "command": "insert_date", "args": {"format": "%Y-%m-%d %H:%M:%S"} },
{"caption": "Copy current position", "command": "copy_pos"},
{"caption": "Fold selections", "command": "fold_selections"},
{"caption": "Select only unique", "command": "select_only_unique"},
{"caption": "Paste separated", "command": "paste_separated"},
{"caption": "Expand to Begin of scope", "command": "expand_to_end_of_scope", "args": {"begin": true}},
{"caption": "Expand to End of scope", "command": "expand_to_end_of_scope"},
{"caption": "Calculate & replace", "command": "calculate", "args": {"replace": true}},
{"caption": "Compare with clipboard", "command": "file_diff_clipboard"},
{"caption": "Compare selections", "command": "file_diff_selections"},
{"caption": "Compare with file", "command": "file_diff_file"},
{"caption": "Compare with tab", "command": "file_diff_tab"},
{"caption": "Compare with previous file", "command": "file_diff_previous"}
]
|