Revision [82]
This is an old revision of Unity3dOnUbuntu made by ace on 2017-11-21 19:35:24.
MS VSCode
/home/ace/.config/Code/User/settings.json
{
"editor.fontFamily": "'Ubuntu Mono', 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 16,
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.codeLens": false,
"editor.minimap.enabled": false,
"editor.dragAndDrop": false,
"editor.autoIndent": true,
"workbench.sideBar.location": "right",
"omnisharp.useMono": true,
"workbench.iconTheme": "vscode-icons",
"csharp.suppressDotnetInstallWarning": true,
"vsicons.dontShowNewVersionMessage": true,
"workbench.startupEditor": "none",
"git.confirmSync": false,
"git.enableSmartCommit": true,
"editor.multiCursorModifier": "ctrlCmd",
"C_Cpp.intelliSenseEngine": "Default",
// Press the Enter key to activate a command (Default: false)
"docomment.activateOnEnter": true,
// Insert spaces when pressing Tab.
"editor.insertSpaces": true,
// The number of spaces a tab is equal to.
"editor.tabSize": 4,
"workbench.panel.location": "bottom"
}/home/ace/.config/Code/User/keybindings.json
[
{
"key": "f2",
"command": "workbench.action.gotoSymbol",
"when": "editorTextFocus"
},
{
"key": "f1",
"command": "docsetViewer.search"
},
{
"key": "ctrl+f1",
"command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus"
},
{
"key": "alt+u",
"command": "editor.action.transformToUppercase"
}
]/home/ace/.config/Code/User/snippets/cpp.json
{
"class_": {
"prefix": "class_",
"body": "\r\nclass ${1:$TM_FILENAME_BASE} {\r\nprivate:\r\n\t${2:/* data */}\r\npublic:\r\n\t${1:()}(${3:/* args */}) ${4:= default;}\r\n};\r\n",
"description": "Class"
},
"for": {
"prefix": "for_",
"body": "for(int ${1:i} = 0; ${1:i} < ${2:count}; ${1:i}++)\n{\n\t${3:/* code */}\n}\n",
"description": "For Loop "
},
"#ifdef_": {
"prefix": "#ifdef_",
"body": "#ifndef ${1:${TM_FILENAME/(.*)\\.h/${1:/capitalize}/}}\n#define ${1:/*define*/}\n${2:/* code */}\n#endif //${1:/*define*/}\n",
"description": "ifndef (…)"
}
}