Temas são instalados como extenções em:
- Linux:
$HOME/.vscode/extensions - Windows:
%HOME%\.vscode\extensions
| .highlight .hll { background-color: #ffffcc } | |
| .highlight { background: #f8f8f8; } | |
| .highlight .c { color: #0000ff; font-style: italic } /* Comment */ | |
| .highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */ | |
| .highlight .g { color: #000000 } /* Generic */ | |
| .highlight .k { color: #800000; font-weight: bold } /* Keyword */ | |
| .highlight .l { color: #000000 } /* Literal */ | |
| .highlight .n { color: #000000 } /* Name */ | |
| .highlight .o { color: #000080 } /* Operator */ | |
| .highlight .x { color: #000000 } /* Other */ |
| class A: | |
| def p(self): | |
| print("função A.p") | |
| if __name__ == '__main__': | |
| a = A() | |
| a.p() | |
| try: | |
| a.f() |
| { | |
| "name": "ECS Light", | |
| "type": "light", | |
| "colors": { | |
| "activityBarBadge.background": "#007acc", | |
| "editor.background": "#ffffff", | |
| "editor.foreground": "#000000", | |
| "editor.inactiveSelectionBackground": "#e5ebf1", | |
| "editor.selectionHighlightBackground": "#add6ff80", | |
| "editorIndentGuide.activeBackground": "#939393", |
| @echo off | |
| set venvdir=%1 | |
| for /f "delims==" %%d in ('cd') do set currentDir=%%d | |
| call :reset-el | |
| if not "%venvdir%" == "" ( | |
| call %venvdir%\Scripts\activate |
| import subprocess | |
| if __name__ == '__main__': | |
| commands = b''' | |
| a=5 | |
| b=7 | |
| c=a+b | |
| print(c) | |
| print("abacate") | |
| ''' |
| #include <iostream> | |
| #include <cstdio> | |
| #include <cstdlib> | |
| using namespace std; | |
| class Pair | |
| { | |
| public: | |
| int x; |
| #include <stdio.h> | |
| int main() | |
| { | |
| int a[5]; | |
| int b; | |
| int* c = malloc(10 * sizeof(int)); | |
| printf("%i\n", sizeof(a)); | |
| printf("%i\n", sizeof(b)); |
| print(getmetatable(A)) | |
| for i, v in pairs(A) do | |
| print(i, v) | |
| end | |
| A.a = "banana" | |
| A.subtable.a = "abacate" | |
| print(A.a) |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<string.h> | |
| #include<lua.h> | |
| #include<lualib.h> | |
| #include<lauxlib.h> | |
| int main() |