
- GitHub Staff
- @[email protected]
- in/aeisenberg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scope": "source.php", | |
"completions": [ | |
{ trigger: "if (surround with)", | |
contents: "if (${1:condition}) {\n\t${selection}\n}", | |
isTemplate: true} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scope": "source.php", | |
"completions": [ | |
{ trigger: "What year is it?", contents: "It is ${year}." }, | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scope": "source.php - variable.other.php", | |
"completions": [ | |
"php", | |
{ "trigger": "abs", "contents": "abs(${1:number})" }, | |
{ "trigger": "acos", "contents": "acos(${1:arg})" }, | |
{ "trigger": "ternary", "contents": "${1:condition} ? ${2:then} : $0 " } | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global cleanText | |
-- set all variables to global [not sure whether this is needed, but it made the script run] | |
global noteList | |
global tempTags | |
global keepPhrase | |
global messageText | |
global newText | |
global theEverBody | |
global thisNote | |
global fileText |
NewerOlder