Skip to content

Instantly share code, notes, and snippets.

@artem78
Last active April 4, 2026 08:41
Show Gist options
  • Select an option

  • Save artem78/07688ab5de39c326d945cebdd9ba2d1e to your computer and use it in GitHub Desktop.

Select an option

Save artem78/07688ab5de39c326d945cebdd9ba2d1e to your computer and use it in GitHub Desktop.

Несколько полезных шаблонов кода для Lazarus IDE

Добавить в "Сервис" --> "Шаблоны кода"

[ifwinlin | Different code for Windows and Linux]
{$IfDef Windows}
|
{$EndIf}
{$IfDef Linux}
{$EndIf}
[ifwin | Code for Windows only]
{$IfDef Windows}
|
{$EndIf}
[iflin | Code for Linux only]
{$IfDef Linux}
|
{$EndIf}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment