-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEncoding.sublime-menu
More file actions
27 lines (27 loc) · 853 Bytes
/
Copy pathEncoding.sublime-menu
File metadata and controls
27 lines (27 loc) · 853 Bytes
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
// Sublime Text 3 : add two items to the Encoding menu
// (C) Lilian Besson, 2016.
// See http://perso.crans.org/besson/publis/ST3/ for more ST3 build systems!
// and http://docs.sublimetext.info/en/latest/customization/menus.html for the doc on ST3 menu.
[
{ "caption": "-" },
{
"caption": "Switch Dictionary – Disable (None)",
"command": "disable_spellcheck"
},
{
"caption": "Switch Dictionary – English",
"command": "enable_english_spellcheck"
},
{
"caption": "Switch Dictionary – French",
"command": "enable_french_spellcheck"
},
{
"caption": "Switch Dictionary – None ↔ French ↔ English",
"command": "switch_spellcheck"
},
{
"caption": "Auto Switch Dictionary (guess)",
"command": "auto_switch_spellcheck",
},
]