Vectric Syntax Libraries: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 42: | Line 42: | ||
<nowiki> --[[-- | <nowiki> --[[-- | ||
Use this file to specify **User** preferences. | Use this file to specify **User** preferences. | ||
Review [examples]( | Review [examples](C:\Program Files\ZeroBrains\cfg\user-sample.lua) or check [online documentation] | ||
(http://studio.zerobrane.com/documentation.html) for details. | (http://studio.zerobrane.com/documentation.html) for details. | ||
--]]-- | --]]-- |
Revision as of 16:53, 8 February 2024
Obtain Syntax Library
Download: | Vectric-ZeroBrane_API.zip
Open and extract the, Vectric.lua
file from the zip file and copy Vectric.lua
to "C:\ .... \ZeroBrains\api\lua" directory
Configuring library
To enable the Vectric Syntax Libraries, open ZeroBrane Studio and navigate to the Edit
pull down menu, Preferences and select
Settings: User
.
Add the following line to the bottom of file
- table.insert(api,'Vectric')
For Example:
--[[-- Use this file to specify **User** preferences. Review [examples](C:\Program Files\ZeroBrains\cfg\user-sample.lua) or check [online documentation] (http://studio.zerobrane.com/documentation.html) for details. --]]-- package "striptrailingwhitespace.lua" package "autodelimitersurroundselection.lua" styles = loadfile('cfg/tomorrow.lua')('SciTeLuaIDE') stylesoutshell = styles -- apply the same scheme to Output/Console windows styles.auxwindow = styles.text -- apply text colors to auxiliary windows styles.calltip = styles.text -- apply text colors to tooltips table.insert(api,'Vectric')