-
Notifications
You must be signed in to change notification settings - Fork 47
/
Default.sublime-commands
86 lines (86 loc) · 2.72 KB
/
Default.sublime-commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[{
"caption": "Text Pastry: From 0 To X",
"command": "text_pastry_range",
"args": {"start": 0, "step": 1, "padding": 1}
}, {
"caption": "Text Pastry: From 1 To X",
"command": "text_pastry_range",
"args": {"start": 1, "step": 1, "padding": 1}
}, {
"caption": "Text Pastry: From X To 0",
"command": "text_pastry_range",
"args": {"stop": 0, "step": -1, "padding": 1}
}, {
"caption": "Text Pastry: From X To 1",
"command": "text_pastry_range",
"args": {"stop": 1, "step": -1, "padding": 1}
}, {
"caption": "Text Pastry: Generate a list of numbers from 1 to 100",
"command": "text_pastry_number_generator",
"args": {"start": 1, "stop": 100, "step": 1}
}, {
"caption": "Text Pastry: Range (numeric)",
"command": "text_pastry_show_command_line",
"args": {"text": "range "}
}, {
"caption": "Text Pastry: Paste Lines",
"command": "text_pastry_insert_text",
"args": {"text": "", "clipboard": true, "separator": "\\n"}
}, {
"caption": "Text Pastry: Paste",
"command": "text_pastry_insert_text",
"args": {"text": "", "clipboard": true}
}, {
"caption": "Text Pastry: uuid (lower-case)",
"command": "text_pastry_uuid"
}, {
"caption": "Text Pastry: UUID",
"command": "text_pastry_uuid",
"args": {"uppercase": true}
}, {
"caption": "Text Pastry: Find",
"command": "text_pastry_show_command_line",
"args": {"text": "find "}
}, {
"caption": "Text Pastry: Add selection",
"command": "text_pastry_show_command_line",
"args": {"text": "add "}
}, {
"caption": "Text Pastry: Reduce selection",
"command": "text_pastry_show_command_line",
"args": {"text": "reduce "}
}, {
"caption": "Text Pastry: Filter selection",
"command": "text_pastry_show_command_line",
"args": {"text": "filter "}
}, {
"caption": "Text Pastry: Split selection",
"command": "text_pastry_show_command_line",
"args": {"text": "filter "}
}, {
"caption": "Text Pastry: Command-Line",
"command": "text_pastry_show_command_line",
"args": {"text": ""}
}, {
"caption": "Text Pastry: Show Piping Bag",
"command": "text_pastry_open_clipboard_ammo"
}, {
"caption": "Text Pastry: Pipe into selection",
"command": "text_pastry_paste_gun_multi_select"
}, {
"caption": "Text Pastry: Reset the Piping Bag",
"command": "text_pastry_reset_ammo_position"
}, {
"caption": "Text Pastry: Show Clipboard Viewer",
"command": "text_pastry_open_clipboard"
}, {
"caption": "Text Pastry: Menu",
"command": "text_pastry_show_menu"
}, {
"caption": "Text Pastry: Settings",
"command": "text_pastry_show_menu",
"args": {"settings": true, "back": false}
}, {
"caption": "Text Pastry: Focus",
"command": "text_pastry_focus"
}]