Skip to content

Commit ba19723

Browse files
author
SlavaRa
authored
Adds .trace template. closes #48
1 parent 758ae3d commit ba19723

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Available templates for **AS3**:
3838
* `.while` – uses expression as loop condition `while (expr)`
3939
* `.dowhile` – uses expression as loop condition `do{...} while(expr);`
4040
* `.sel` – selects expression in editor
41+
* `.trace` - surrounds expression with `trace(expr);`
4142

4243
Available templates for **Haxe**:
4344
* `.code` – for String adds `code` to completion list
@@ -56,7 +57,7 @@ Available templates for **Haxe**:
5657
* `.while` – uses expression as loop condition `while (expr)`
5758
* `.dowhile` – uses expression as loop condition `do{...} while(expr);`
5859
* `.sel` – selects expression in editor
59-
60+
* `.trace` - surrounds expression with `trace(expr);`
6061

6162
## Как добавить сниппеты для постфиксного автокомплита самому?
6263
Сниппеты для постфиксного автокомплита представляют из себя улучшенный вид стандартных сниппетов и распологаются в `FlashDevelop\Snippets\Language\postfixgenerators`, также в настройках плагина можно подключить пользовательские директории.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
trace($(PCCMember)$(EntryPoint));
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
trace($(PCCMember)$(EntryPoint));

0 commit comments

Comments
 (0)