aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-08-14 21:15:47 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2022-08-14 21:15:47 -0400
commit32350f2515c1320407f800f64a5dcedbfb1c1f88 (patch)
treec632a436aba28b496c05d3e776645837bc420bcd
parentf3e0093a9fd0ca36d0bfaee61de2cb5df46e867e (diff)
downloadtanzanite-32350f2515c1320407f800f64a5dcedbfb1c1f88.tar.gz
tanzanite-32350f2515c1320407f800f64a5dcedbfb1c1f88.tar.bz2
tanzanite-32350f2515c1320407f800f64a5dcedbfb1c1f88.zip
remove unused snippets
-rw-r--r--.vscode/typescript.code-snippets69
1 files changed, 0 insertions, 69 deletions
diff --git a/.vscode/typescript.code-snippets b/.vscode/typescript.code-snippets
index 9dfa65c..b59e380 100644
--- a/.vscode/typescript.code-snippets
+++ b/.vscode/typescript.code-snippets
@@ -6,75 +6,6 @@
* same ids are connected.
*/
// prettier-ignore
- "Setup Slash Command": {
- "prefix": "slash",
- "body": [
- "slash: true,",
- "slashOptions: [",
- "\t$0",
- "]"
- ]
- },
-
- // prettier-ignore
- "Slash Command User Argument": {
- "prefix": "user",
- "body": [
- "{",
- "\tname: 'user',",
- "\tdescription: 'The user you would like to$1',",
- "\ttype: 'USER',",
- "\trequired: $2",
- "},$0"
- ]
- },
-
- // prettier-ignore
- "Slash Command String Argument": {
- "prefix": "string",
- "body": [
- "{",
- "\tname: '$1',",
- "\tdescription: '$2',",
- "\ttype: 'STRING',",
- "\trequired: $3",
- "},$0"
- ]
- },
-
- // prettier-ignore
- "Slash Command Choice Argument": {
- "prefix": "choice",
- "body": [
- "{",
- "\tname: '$1',",
- "\tdescription: '$2',",
- "\ttype: 'STRING',",
- "\tchoices: [",
- "\t\t{",
- "\t\t\tname: '$3',",
- "\t\t\tvalue: '$4'",
- "\t\t},",
- "\t],",
- "\trequired: $5",
- "},$0"
- ]
- },
-
- // prettier-ignore
- "Slash Boolean Argument": {
- "prefix": "boolean",
- "body": [
- "{",
- "\tname: '$1',",
- "\tdescription: '$2',",
- "\ttype: 'BOOLEAN',",
- "\trequired: $3",
- "},$0"
- ]
- },
-
- // prettier-ignore
"Command":{
"prefix": "command",
"description": "A bot command template",