-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCorona Editor.sublime-settings
58 lines (48 loc) · 2.55 KB
/
Corona Editor.sublime-settings
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
// Solar2D Editor default settings
{
// If you don't like Solar2D Editor's completion you can turn it off
// entirely using this preference.
"corona_sdk_completion": true,
// Set to "false" to turn off "fuzzy completion" and just complete based
// on the characters typed so far as a prefix.
"corona_sdk_use_fuzzy_completion": true,
// Solar2D Editor turns off the special meaning of periods as "word
// separators" in Sublime Text to make Solar2D completions work better. If
// you like to use cursor movement keys like "Alt+Arrow" to move to the
// periods in function calls you might want to turn this off. The most
// obvious effect of turning it off is that when you type a period all the
// completions disappear until you type another character.
"corona_sdk_complete_periods": true,
// If this is true then any new file that has not yet been saved will be
// assumed to be a Solar2D Lua file
"corona_sdk_default_new_file_to_corona_lua": true,
// Set this to the path of your Solar2D Simulator if it's not installed
// in the default location for your operating system (remember to double
// backslashes in Windows' paths)
// "corona_sdk_simulator_path": "<path-to-simulator>",
// If you set this to "true" the Sublime Text "build" command will be
// issued any time you save a Lua file.
"corona_sdk_auto_build": false,
// Choose which documentation set you want to use. Can be one of
// "public" (the default), "legacy" or "daily". [deprecated]
"corona_sdk_use_docset": "public",
// remove white space from the completions, for example by default a
// completion might look like:
// display.capture( displayObject [, saveToPhotoLibrary ] )
// when set to true it will become
// display.capture(displayObject[, saveToPhotoLibrary])
"corona_sdk_completions_strip_white_space":false,
// Solar2D Editor will attempt to suggest lua files for you to import when
// typing out 'require' statements. By default Solar2D Editor will not follow
// softlinks in your project structure. Set this to true to follow links, but beware
// it is possible to set up infinite cycles if a link to a root directory in your project
// appears in a subdirectory.
"corona_sdk_follow_symlinks":false,
// When typing out a string Solar2D Editor can autosuggest files and paths. The list below filters the suggestions.
// Extend it with any other useful formats. The list is case insensitive.
"corona_sdk_autocomplete_extensions":[".png",".jpeg",".jpg",".wav",".mp3"],
// set as default syntax for all Lua files
"extensions": [
"lua", "settings"
]
}