Posted By


greencocoa on 11/11/13

Tagged


Statistics


Viewed 108 times
Favorited by 0 user(s)

20131110_1442_r.7_sublime_text_3_macos_build_systems_and_config


/ Published in: Other
Save to your folder(s)

Sublime Text


Copy this code and paste it in your HTML
  1. {
  2. "alias": {
  3. "arch": "/Users/moritz/Files/Archive/",
  4. "act": "/Users/moritz/Files/Active/",
  5. "prog": "/Users/moritz/Files/Pers/Prog/",
  6. "soft": "/Users/moritz/Files/Pers/Soft/",
  7. "pers": "/Users/moritz/Files/Pers/",
  8. "courses": "/Users/moritz/Files/Pers/Courses/",
  9. "snippets": "Users/moritz/Library/Application Support/Sublime Text 3/Packages/User/",
  10. "files": "/Users/moritz/Files/"
  11. },
  12.  
  13. "default_root": "path",
  14.  
  15. // A string specifying the default root to use. For this to be utilized,
  16. // "default_root" must be set to "path"
  17. "default_path": "/Users/moritz/Files/",
  18.  
  19. }
  20.  
  21.  
  22. {
  23. "cmd" : ["gcc", "$file_name", "-o", "${file_base_name}", "-lm", "-Wall"],
  24. "selector" : "source.c",
  25. "shell":false,
  26. "working_dir" : "$file_path"
  27. }
  28. {
  29. "extensions":
  30. [
  31. "c"
  32. ]
  33. }
  34.  
  35.  
  36. {
  37. "extensions":
  38. [
  39. "cpp",
  40. "cc",
  41. "cxx",
  42. "c++",
  43. "h",
  44. "hpp",
  45. "hxx",
  46. "h++",
  47. "inl",
  48. "ipp"
  49. ]
  50. }
  51.  
  52.  
  53. {
  54. "cmd": ["/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc", "$file"],
  55. "selector": "source.js"
  56. }
  57.  
  58.  
  59. {
  60. "cmd": ["perl", "-w", "$file"],
  61. "file_regex": ".* at (.*) line ([0-9]*)",
  62. "selector": "source.perl"
  63. }
  64.  
  65.  
  66. {
  67. "cmd": ["php" , "$file"],
  68. "selector" : "source.php",
  69. }
  70.  
  71. //Tomorrow Night Theme
  72. //Tomorrow Theme

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.