07.12.2014, 12:34
(
Last edited by Kaperstone; 14/01/2015 at 12:25 PM.
)
Hello,
Well, there is not much to explain, this is PAWN syntax for Atom editor.
For those who don't know Atom, basically Atom is a text editor and you can read more about it at https://atom.io/
Note: this is syntax highlight, means it will emphasize functions, callback and make your code look more colorful and understandable.
This does not come with a compiler, if you're looking for a compiler, then go to this thread;
https://sampforum.blast.hk/showthread.php?pid=3284897#pid3284897
The grammar rules are a copy paste of C language with small edits, but seem work like a charm for PAWN as well.
The package provides a set of snippets which build callbacks.
For example.
Type "playerconnect", after it press TAB will generate
Installation:
Atom : https://atom.io/packages/atom-language-pawn
GitHub : https://github.com/Kaperstone/atom-language-pawn
If you find any bugs or have any suggestions, feel free to post them below
Well, there is not much to explain, this is PAWN syntax for Atom editor.
For those who don't know Atom, basically Atom is a text editor and you can read more about it at https://atom.io/
Note: this is syntax highlight, means it will emphasize functions, callback and make your code look more colorful and understandable.
This does not come with a compiler, if you're looking for a compiler, then go to this thread;
https://sampforum.blast.hk/showthread.php?pid=3284897#pid3284897
The grammar rules are a copy paste of C language with small edits, but seem work like a charm for PAWN as well.
The package provides a set of snippets which build callbacks.
For example.
Type "playerconnect", after it press TAB will generate
pawn Code:
public OnPlayerConnect(playerid) {
return 1;
}
Quote:
You can either use the shell and directly install it from there by typing this command :
Code:
apm install atom-language-pawn Code:
CTRL + Comma > Install > search "atom-language-pawn" |
GitHub : https://github.com/Kaperstone/atom-language-pawn
If you find any bugs or have any suggestions, feel free to post them below