You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ LuaComplete is an ST3 plugin that does auto-completing of Lua code. It uses the
16
16
3. That's about it! LuaComplete will start up the server and send code automatically via the client. There are a few settings that can be tweaked, as referenced below.
17
17
18
18
## Settings
19
-
The default settings should work out of the box, but they can be modified via the Preferences menu or from the Command Palette (`Ctrl+Shift+P` and type LuaComplete). Make any changes in the User settings. Here are the default settings:
19
+
The default settings should work out of the box, but they can be modified via the Preferences menu or from the Command Palette (`Ctrl+Shift+P` and type LuaComplete). Make any changes in the User settings. You will likely need to restart Sublime Text after changing settings. Here are the default settings:
20
20
```
21
21
{
22
22
// Path to the directory containing lua-complete executables
@@ -26,6 +26,12 @@ The default settings should work out of the box, but they can be modified via th
26
26
// Port to use for the lua-complete client and server
27
27
"port": 24548,
28
28
29
+
// enable/disable toggle. it is enabled by default
30
+
// you would set it to false to turn off LuaComplete
31
+
// "enabled": false,
32
+
// NOTE: it can also be toggled via the command palette
33
+
// but will only apply until Sublime Text reboots
34
+
29
35
// additional include location
30
36
// by default lua-complete will search lua's regular
0 commit comments