Инструкция на русском и её зеркало
- Syntax support (package knows 27 data types and 62 functions)
- Intelligent Snippets
- Compilation in Windows, macOS and Linux-based OS (via Free Pascal Compiler)
- Cyrillic support in Windows
You can install this awesome package through the Package Control.
Press ⌘/Ctrl + ⇧ + P
to open the command palette.
Type Package Control: Install Package
and press enter. Then search for Object Pascal
.
To enable to code with cyrillic support follow this steps:
- Open one
.pas
or.pascal
file and go to thePreferences ⇨ Settings - Syntax Specific
. - If the window title does not end with "Object Pascal.sublime-settings", go to the step 1.
- Copy&Paste this lines:
{
"default_encoding": "Cyrillic (Windows 1251)",
"fallback_encoding": "Cyrillic (Windows 1251)",
}
- Save this setting-file.
Try to compile this file:
begin
write('Привет, мир!')
end.