-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
401 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"filename": { | ||
"prefix": ["fn"], | ||
"body": ["$TM_FILENAME_BASE"] | ||
}, | ||
"filenameWithExtension": { | ||
"prefix": ["fnn"], | ||
"body": ["$TM_FILENAME"] | ||
}, | ||
"shrug": { | ||
"prefix": ["shrug"], | ||
"body": ["¯\\\\_(ツ)_/¯"] | ||
}, | ||
"ellipsis": { | ||
"prefix": ["..."], | ||
"body": ["…"] | ||
}, | ||
"lorem ipsum": { | ||
"prefix": ["lorem"], | ||
"body": [ | ||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eget ipsum vel dui rhoncus ullamcorper at mattis turpis. Pellentesque finibus lacinia purus vel pellentesque. Vivamus sed metus varius purus gravida placerat in nec ex. Maecenas sagittis, lorem sit amet dictum sodales, leo mi rutrum erat, vel pretium tortor mi et metus. Vivamus eu orci consectetur, elementum neque quis, dapibus odio. Curabitur laoreet gravida ante, vel porttitor ante efficitur vitae. Fusce mattis diam in nisl efficitur, et auctor risus iaculis. Pellentesque sagittis mollis egestas." | ||
] | ||
}, | ||
"{ }": { | ||
"prefix": "{", | ||
"body": ["{", " $1", "}"] | ||
}, | ||
"[ ]": { | ||
"prefix": "[", | ||
"body": ["[", " $1", "]"] | ||
}, | ||
"( )": { | ||
"prefix": "(", | ||
"body": ["(", " $1", ")"] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"table": { | ||
"prefix": "table", | ||
"body": ["| $1 | $2 |", "| --- | --- |", "| $3 | $4 |"] | ||
}, | ||
"codeblock": { | ||
"prefix": "code", | ||
"body": ["```$1", "$0", "```"] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"contributes": { | ||
"snippets": [ | ||
{ | ||
"language": "all", | ||
"path": "global.code-snippets" | ||
}, | ||
{ | ||
"language": "sh", | ||
"path": "shellscript.json" | ||
}, | ||
{ | ||
"language": "markdown", | ||
"path": "markdown.json" | ||
}, | ||
{ | ||
"language": "python", | ||
"path": "python.json" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.