• All, Gmail is currently rejecting messages from my host. I have a ticket in process, but it may take some time to resolve. Until further notice, do NOT use Gmail for your accounts. You will be unable to receive confirmations and two factor messages to login.

Maliks SublimeText OpenBOR Syntax

msmalik681

OpenBOR Developer
Staff member
I have been using sublime text for my openbor coding for some time just decided to start a github repo to share it.

Download: Releases · msmalik681/Openbor-SublimeText

Readme.txt
To enable this package in Sublime Text go to "Preferences > Browse Packages" and copy the Openbor folder to the directory you are taken to.

When you have a file type open that you want to use Openbor highlighting for go to "View > Syntax > Openbor" or if you always want this file type to be associated with Openbor select "View > Syntax > Open all with current extension as > Openbor".

To enable the colour scheme go to "Preferences > Select colour scheme > Openbor".

To disable tab for autocomplete go to "Preferences > Key Bindings" and copy this to the right window:

[
{ "keys": ["tab"], "command": "insert", "args": {"characters": "\t"} },
{ "keys": ["tab"], "command": "auto_complete", "args": {"mini": true, "default": "\t"},
"context":
[
// { "key": "auto_complete_visible", "operand": false },
// { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
// { "key": "setting.tab_completion", "operator": "equal", "operand": true },
// { "key": "preceding_text", "operator": "regex_match", "operand": ".*\\w", "match_all": true },
]
},
{ "keys": ["tab"], "command": "next_field", "context":
[{ "key": "has_next_field", "operator": "equal", "operand": true }]
},
// { "keys": ["tab"], "command": "commit_completion", "context":
// [{ "key": "auto_complete_visible" }]
// },
]
 
Back
Top Bottom