Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. {
  2. "code-runner.executorMap": {
  3. "javascript": "node",
  4. "php": "C:\\php\\php.exe",
  5. "python": "$pythonPath -u $fullFileName",
  6. "perl": "perl",
  7. "ruby": "C:\\Ruby23-x64\\bin\\ruby.exe",
  8. "go": "go run",
  9. "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
  10. "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
  11. //"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
  12. "cpp": "cd $dir && g++ -std=gnu++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
  13. //"cpp": "cd $dir && g++ \"$fileName\" -o \"$fileNameWithoutExt\" && \"$dir$fileNameWithoutExt\""
  14. },
  15. "files.associations": {
  16. "iostream": "cpp",
  17. "array": "cpp",
  18. "atomic": "cpp",
  19. "*.tcc": "cpp",
  20. "bitset": "cpp",
  21. "cctype": "cpp",
  22. "cfenv": "cpp",
  23. "chrono": "cpp",
  24. "cinttypes": "cpp",
  25. "clocale": "cpp",
  26. "cmath": "cpp",
  27. "complex": "cpp",
  28. "condition_variable": "cpp",
  29. "csetjmp": "cpp",
  30. "csignal": "cpp",
  31. "cstdarg": "cpp",
  32. "cstddef": "cpp",
  33. "cstdint": "cpp",
  34. "cstdio": "cpp",
  35. "cstdlib": "cpp",
  36. "cstring": "cpp",
  37. "ctime": "cpp",
  38. "cwchar": "cpp",
  39. "cwctype": "cpp",
  40. "deque": "cpp",
  41. "forward_list": "cpp",
  42. "list": "cpp",
  43. "unordered_map": "cpp",
  44. "unordered_set": "cpp",
  45. "vector": "cpp",
  46. "exception": "cpp",
  47. "fstream": "cpp",
  48. "functional": "cpp",
  49. "future": "cpp",
  50. "initializer_list": "cpp",
  51. "iomanip": "cpp",
  52. "iosfwd": "cpp",
  53. "istream": "cpp",
  54. "limits": "cpp",
  55. "memory": "cpp",
  56. "mutex": "cpp",
  57. "new": "cpp",
  58. "ostream": "cpp",
  59. "numeric": "cpp",
  60. "ratio": "cpp",
  61. "scoped_allocator": "cpp",
  62. "sstream": "cpp",
  63. "stdexcept": "cpp",
  64. "streambuf": "cpp",
  65. "system_error": "cpp",
  66. "thread": "cpp",
  67. "type_traits": "cpp",
  68. "tuple": "cpp",
  69. "typeindex": "cpp",
  70. "typeinfo": "cpp",
  71. "utility": "cpp",
  72. "valarray": "cpp"
  73. },
  74. "python.pythonPath": "/usr/bin/python3",
  75. "C_Cpp.errorSquiggles": "Disabled",
  76. "editor.tabCompletion": "on",
  77. "editor.formatOnSave": true,
  78. "editor.formatOnPaste": true,
  79. "explorer.confirmDelete": false,
  80. "C_Cpp.updateChannel": "Insiders",
  81. "code-runner.showExecutionMessage": false,
  82. "code-runner.saveFileBeforeRun": true,
  83. "code-runner.saveAllFilesBeforeRun": true,
  84. "code-runner.clearPreviousOutput": true,
  85. "editor.fontSize": 16,
  86. "code-runner.runInTerminal": true,
  87. "update.mode": "manual",
  88. "C_Cpp.default.intelliSenseMode": "gcc-x64"
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement