mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
17 lines
217 B
Plaintext
17 lines
217 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: unit
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: unit … implementation … end
|
|
# --
|
|
unit ${1:unit_name};
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils${2:, Classes};
|
|
|
|
implementation
|
|
|
|
$0
|
|
|
|
end. |