Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. {
  2. // Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
  3. // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
  4. // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
  5. // used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
  6. // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
  7. // Placeholders with the same ids are connected.
  8. // Example:
  9. "Print to console": {
  10. "scope": "cpp,c++",
  11. "prefix": "cp",
  12. "body": [
  13. "#include <bits/stdc++.h>"
  14. ""
  15. "using namespace std;"
  16. ""
  17. "int main() {"
  18. " ios_base::sync_with_stdio(false);"
  19. " cin.tie(0);"
  20. " cout.tie(0);"
  21. " "
  22. " return 0;"
  23. "}"
  24. ],
  25. "description": "Log output to console"
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement