forked from LaTeXing/LaTeXing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-commands
170 lines (170 loc) · 4.49 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
[
{
"caption": "Build: Primary Quick Build",
"command": "ltx_quick_build_compiler", "args": {"primary_qb": true}
},
{
"caption": "Build: Custom Quick Build",
"command": "ltx_quick_build_compiler"
},
{
"caption": "LaTeXing: Buy License",
"command": "ltx_buy_license"
},
{
"caption": "LaTeXing: Changelog",
"command": "ltx_changelog"
},
{
"caption": "LaTeXing: Check System",
"command": "ltx_check_system"
},
{
"caption": "LaTeXing: Clean Temporary Output Dictionary",
"command": "ltx_clean_temp"
},
{
"caption": "LaTeXing: Documentation",
"command": "ltx_open_documentation"
},
{
"caption": "LaTeXing: Fill",
"command": "ltx_fill"
},
{
"caption": "LaTeXing: Fill Anywhere",
"command": "ltx_fill_anywhere"
},
{
"caption": "LaTeXing: Fold Environment",
"command": "ltx_fold_environment"
},
{
"caption": "LaTeXing: Fold Section",
"command": "ltx_fold_section"
},
{
"caption": "LaTeXing: Import Citation(s)",
"command": "ltx_cite_import"
},
{
"caption": "LaTeXing: Insert TeX Symbol",
"command": "ltx_insert_tex_symbol"
},
{
"caption": "LaTeXing: Install License",
"command": "ltx_install_license"
},
{
"caption": "LaTeXing: Jump To PDF",
"command": "ltx_jump_to_pdf"
},
{
"caption": "LaTeXing: Lookup TeX Symbol",
"command": "ltx_lookup_tex_symbol"
},
{
"caption": "LaTeXing: New Command for Current Word",
"command": "ltx_latex_command"
},
{
"caption": "LaTeXing: New Environment",
"command": "ltx_insert_latex_environment"
},
{
"caption": "LaTeXing: New Environment for Current Word",
"command": "ltx_latex_environment"
},
{
"caption": "LaTeXing: Online Lookup",
"command": "ltx_online_lookup"
},
{
"caption": "LaTeXing: Open",
"command": "ltx_open"
},
{
"caption": "LaTeXing: Open Anywhere",
"command": "ltx_open_anywhere"
},
{
"caption": "LaTeXing: Open PDF",
"command": "ltx_open_pdf"
},
{
"caption": "LaTeXing: Phrases Dictionary",
"command": "ltx_open_phrases_dictionary"
},
{
"caption": "LaTeXing: Rebuild Cache",
"command": "ltx_rebuild_cache"
},
{
"caption": "LaTeXing: Rebuild Cache (Hard)",
"command": "ltx_rebuild_cache", "args": {"soft": false}
},
{
"caption": "LaTeXing: Rename Environment",
"command": "ltx_rename_latex_environment"
},
{
"caption": "LaTeXing: Save Cache",
"command": "ltx_save_cache"
},
{
"caption": "LaTeXing: Show Log Panel",
"command": "show_panel", "args": {"panel": "output.exec"}
},
{
"caption": "LaTeXing: Synchronise Remote Data",
"command": "ltx_sync_data"
},
{
"caption": "LaTeXing: Texcount",
"command": "ltx_texcount"
},
{
"caption": "LaTeXing: Toggle Offline Mode",
"command": "ltx_offline"
},
{
"caption": "LaTeXing: Toggle Star Environment",
"command": "ltx_star_latex_environment"
},
{
"caption": "LaTeXing: Toggle TikZ Live Preview",
"command": "ltx_tikz_live_preview"
},
{
"caption": "LaTeXing: Update Bibliography File(s)",
"command": "ltx_sync_bib_file"
},
{
"caption": "LaTeXing: Version",
"command": "ltx_version"
},
{
"caption": "LaTeXing: Word to Phrases Dictionary",
"command": "ltx_save_phrases"
},
{
"caption": "Preferences: LaTeXing Settings - Default",
"command": "open_file", "args": {"file": "${packages}/LaTeXing/LaTeXing.sublime-settings"}
},
{
"caption": "Preferences: LaTeXing Settings - Default (Extended)",
"command": "ltx_extended_preferences"
},
{
"caption": "Preferences: LaTeXing Settings - Toggle Value",
"command": "ltx_toggle_preferences"
},
{
"caption": "Preferences: LaTeXing Settings - User",
"command": "open_file", "args": {"file": "${packages}/User/LaTeXing.sublime-settings"}
},
{
"caption": "Preferences: LaTeXing Settings - User (Extended)",
"command": "ltx_extended_preferences", "args": {"user": true}
}
]