One Command Syntax Highlighter
A sublime syntax for Minecraft 1.9 One Commands.
Details
Installs
- Total 728
- Win 526
- Mac 122
- Linux 80
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
OneCommandSublimeSyntax
A sublime syntax for the One Command generator by myself and destruc7i0n.
What it adds
Commands
minecraft_onecc_instant
Generates a self-activating one-command contraption from the current file.
minecraft_onecc_manual
Generates a manually-activated one-command contraption from the current file.
minecraft_sort_selectors
Sorts any entity/player selector tags within the selection by alphabetical order.
minecraft_onecc_format
Explodes the commands selected, using \
syntax to keep them in the same line in the eyes of the generator.
minecraft_onecc_unformat
Compresses \
syntax down to normal lines.
Language
source.one_command
A syntax highlighter for the special syntax accepted by the generator. Uses the file extension .1cc
.
The Syntax
Most of the differences between 1CC syntax and regular commands lie in the prepends.
INIT:
as a prepend will make the command only run once, when you run the command.COND:
as a prepend will make the command only run if the previous one was successful. Not recommended to use on the first command, nor the firstINIT:
command.REPEAT:
as a prepend will make the command in a repeating command block. This is included to allow for different-speed clocks, and similar functions.BLOCK:
as a prepend will use the following command (formatminecraft:BLOCKNAME:DATA
) as a normal block instead of a command. This can be used to visually seperate parts of a module; remember thatREPEAT:
must be used afterwards to carry the signal.
\
appended to the end of a line will append the next line to the current line.
There's also the DEFINE:
syntax, similar to the C #define
directive. This allows simpler-to-read blocks of code to be written.
The syntax is DEFINE: identifier replacewith
. You can then use this by calling out, anywhere in your code, $identifier
.
As with C, DEFINE:
can be used to make macros. For example, DEFINE: example(argument) say |argument|
and $example("hello")
will give you say hello
.
There's also UNDEFINE:
which will remove that variable's definition.
IMPORT:
will import the .1cc
file of the same name. IMPORT: test
will import the file named test.1cc
.