diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-12 23:01:15 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-12 23:01:15 +0100 |
commit | 1069d26d4a1f178e6dc987fca1725ab37fdbe1cb (patch) | |
tree | d5edd48ac5ea265d82541952d87e97d1c77848b0 | |
parent | fc356bfac1e9825b6c4a61973fc1608f6afdab27 (diff) | |
download | dotfiles-1069d26d4a1f178e6dc987fca1725ab37fdbe1cb.tar.gz dotfiles-1069d26d4a1f178e6dc987fca1725ab37fdbe1cb.tar.xz dotfiles-1069d26d4a1f178e6dc987fca1725ab37fdbe1cb.zip |
change pascal template to autogenerate unit name from filename
-rw-r--r-- | emacs.d/templates/TEMPLATE.pas.tpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs.d/templates/TEMPLATE.pas.tpl b/emacs.d/templates/TEMPLATE.pas.tpl index 72f8752..825d303 100644 --- a/emacs.d/templates/TEMPLATE.pas.tpl +++ b/emacs.d/templates/TEMPLATE.pas.tpl @@ -23,7 +23,7 @@ * $Id$ *} -unit (>>>POINT<<<); +unit (>>>file-sans<<<); {$IFDEF FPC} {$MODE Delphi} @@ -33,6 +33,8 @@ unit (>>>POINT<<<); interface +(>>>POINT<<<) + implementation end. |