├── i18n ├── .gitignore ├── esn │ └── src │ │ └── vs │ │ ├── code │ │ ├── node │ │ │ └── cliProcessMain.i18n.json │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── editor │ │ ├── common │ │ │ └── modes │ │ │ │ └── supports │ │ │ │ └── suggestSupport.i18n.json │ │ └── contrib │ │ │ └── referenceSearch │ │ │ └── browser │ │ │ ├── referencesWidget.i18n.json │ │ │ └── referencesController.i18n.json │ │ ├── workbench │ │ ├── parts │ │ │ ├── debug │ │ │ │ └── browser │ │ │ │ │ └── debugActionItems.i18n.json │ │ │ └── git │ │ │ │ └── electron-main │ │ │ │ └── askpassService.i18n.json │ │ ├── electron-main │ │ │ └── main.i18n.json │ │ └── api │ │ │ └── node │ │ │ └── extHostMessageService.i18n.json │ │ ├── base │ │ └── browser │ │ │ └── ui │ │ │ ├── toolbar │ │ │ └── toolbar.i18n.json │ │ │ ├── actionbar │ │ │ └── actionbar.i18n.json │ │ │ └── aria │ │ │ └── aria.i18n.json │ │ └── platform │ │ └── extensionManagement │ │ └── common │ │ └── extensionManagement.i18n.json ├── ita │ └── src │ │ └── vs │ │ ├── code │ │ ├── node │ │ │ └── cliProcessMain.i18n.json │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── editor │ │ ├── common │ │ │ └── modes │ │ │ │ └── supports │ │ │ │ └── suggestSupport.i18n.json │ │ └── contrib │ │ │ └── referenceSearch │ │ │ └── browser │ │ │ ├── referencesWidget.i18n.json │ │ │ └── referencesController.i18n.json │ │ ├── workbench │ │ ├── parts │ │ │ ├── debug │ │ │ │ └── browser │ │ │ │ │ └── debugActionItems.i18n.json │ │ │ └── git │ │ │ │ └── electron-main │ │ │ │ └── askpassService.i18n.json │ │ ├── api │ │ │ └── node │ │ │ │ └── extHostMessageService.i18n.json │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── base │ │ └── browser │ │ │ └── ui │ │ │ ├── toolbar │ │ │ └── toolbar.i18n.json │ │ │ ├── actionbar │ │ │ └── actionbar.i18n.json │ │ │ └── aria │ │ │ └── aria.i18n.json │ │ └── platform │ │ └── extensionManagement │ │ └── common │ │ └── extensionManagement.i18n.json ├── fra │ └── src │ │ └── vs │ │ ├── editor │ │ ├── common │ │ │ └── modes │ │ │ │ └── supports │ │ │ │ └── suggestSupport.i18n.json │ │ └── contrib │ │ │ └── referenceSearch │ │ │ └── browser │ │ │ ├── referencesWidget.i18n.json │ │ │ └── referencesController.i18n.json │ │ ├── workbench │ │ ├── parts │ │ │ ├── debug │ │ │ │ └── browser │ │ │ │ │ └── debugActionItems.i18n.json │ │ │ └── git │ │ │ │ └── electron-main │ │ │ │ └── askpassService.i18n.json │ │ ├── api │ │ │ └── node │ │ │ │ └── extHostMessageService.i18n.json │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── actionbar │ │ │ │ └── actionbar.i18n.json │ │ │ │ └── aria │ │ │ │ └── aria.i18n.json │ │ └── node │ │ │ └── zip.i18n.json │ │ ├── platform │ │ └── extensionManagement │ │ │ └── common │ │ │ └── extensionManagement.i18n.json │ │ └── code │ │ ├── electron-main │ │ └── main.i18n.json │ │ └── node │ │ └── cliProcessMain.i18n.json ├── kor │ └── src │ │ └── vs │ │ ├── code │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── aria │ │ │ │ └── aria.i18n.json │ │ │ │ └── actionbar │ │ │ │ └── actionbar.i18n.json │ │ └── node │ │ │ └── zip.i18n.json │ │ ├── editor │ │ ├── contrib │ │ │ ├── referenceSearch │ │ │ │ └── browser │ │ │ │ │ ├── referencesWidget.i18n.json │ │ │ │ │ └── referencesController.i18n.json │ │ │ ├── hover │ │ │ │ └── browser │ │ │ │ │ └── hover.i18n.json │ │ │ └── rename │ │ │ │ └── common │ │ │ │ └── rename.i18n.json │ │ └── common │ │ │ └── modes │ │ │ └── modesRegistry.i18n.json │ │ ├── platform │ │ └── extensionManagement │ │ │ └── common │ │ │ └── extensionManagement.i18n.json │ │ └── workbench │ │ ├── electron-main │ │ └── main.i18n.json │ │ ├── api │ │ └── node │ │ │ └── extHostMessageService.i18n.json │ │ └── parts │ │ └── git │ │ └── electron-main │ │ └── askpassService.i18n.json ├── chs │ └── src │ │ └── vs │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── aria │ │ │ │ └── aria.i18n.json │ │ │ │ └── actionbar │ │ │ │ └── actionbar.i18n.json │ │ └── node │ │ │ └── zip.i18n.json │ │ ├── code │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── workbench │ │ ├── electron-main │ │ │ └── main.i18n.json │ │ ├── api │ │ │ └── node │ │ │ │ └── extHostMessageService.i18n.json │ │ └── parts │ │ │ └── git │ │ │ └── electron-main │ │ │ └── askpassService.i18n.json │ │ └── editor │ │ ├── contrib │ │ ├── hover │ │ │ └── browser │ │ │ │ └── hover.i18n.json │ │ └── rename │ │ │ ├── common │ │ │ └── rename.i18n.json │ │ │ └── browser │ │ │ ├── rename.i18n.json │ │ │ └── rename2.i18n.json │ │ └── common │ │ ├── modes │ │ └── modesRegistry.i18n.json │ │ └── services │ │ └── bulkEdit.i18n.json ├── cht │ └── src │ │ └── vs │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── aria │ │ │ │ └── aria.i18n.json │ │ │ │ └── actionbar │ │ │ │ └── actionbar.i18n.json │ │ ├── node │ │ │ ├── zip.i18n.json │ │ │ └── processes.i18n.json │ │ └── common │ │ │ └── json.i18n.json │ │ ├── code │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── editor │ │ ├── contrib │ │ │ ├── referenceSearch │ │ │ │ └── browser │ │ │ │ │ ├── referencesWidget.i18n.json │ │ │ │ │ └── referencesController.i18n.json │ │ │ ├── hover │ │ │ │ └── browser │ │ │ │ │ └── hover.i18n.json │ │ │ └── rename │ │ │ │ ├── common │ │ │ │ └── rename.i18n.json │ │ │ │ └── browser │ │ │ │ └── rename2.i18n.json │ │ └── common │ │ │ ├── modes │ │ │ └── modesRegistry.i18n.json │ │ │ └── services │ │ │ └── bulkEdit.i18n.json │ │ └── workbench │ │ ├── electron-main │ │ └── main.i18n.json │ │ ├── api │ │ └── node │ │ │ └── extHostMessageService.i18n.json │ │ └── parts │ │ └── git │ │ └── electron-main │ │ └── askpassService.i18n.json ├── jpn │ └── src │ │ └── vs │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── aria │ │ │ │ └── aria.i18n.json │ │ │ │ └── actionbar │ │ │ │ └── actionbar.i18n.json │ │ └── node │ │ │ └── zip.i18n.json │ │ ├── code │ │ └── electron-main │ │ │ └── main.i18n.json │ │ ├── workbench │ │ ├── electron-main │ │ │ └── main.i18n.json │ │ ├── api │ │ │ └── node │ │ │ │ └── extHostMessageService.i18n.json │ │ └── parts │ │ │ └── git │ │ │ └── electron-main │ │ │ └── askpassService.i18n.json │ │ └── editor │ │ └── contrib │ │ ├── hover │ │ └── browser │ │ │ └── hover.i18n.json │ │ └── rename │ │ └── common │ │ └── rename.i18n.json ├── rus │ └── src │ │ └── vs │ │ ├── base │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── toolbar │ │ │ │ └── toolbar.i18n.json │ │ │ │ ├── actionbar │ │ │ │ └── actionbar.i18n.json │ │ │ │ └── aria │ │ │ │ └── aria.i18n.json │ │ └── node │ │ │ └── zip.i18n.json │ │ ├── code │ │ └── electron-main │ │ │ └── main.i18n.json │ │ └── workbench │ │ ├── electron-main │ │ └── main.i18n.json │ │ ├── api │ │ └── node │ │ │ └── extHostMessageService.i18n.json │ │ └── parts │ │ └── git │ │ └── electron-main │ │ └── askpassService.i18n.json └── deu │ └── src │ └── vs │ ├── code │ └── electron-main │ │ └── main.i18n.json │ ├── editor │ └── contrib │ │ └── referenceSearch │ │ └── browser │ │ └── referencesController.i18n.json │ ├── workbench │ ├── electron-main │ │ └── main.i18n.json │ ├── api │ │ └── node │ │ │ └── extHostMessageService.i18n.json │ └── parts │ │ └── git │ │ └── electron-main │ │ └── askpassService.i18n.json │ └── base │ ├── browser │ └── ui │ │ └── actionbar │ │ └── actionbar.i18n.json │ └── node │ └── zip.i18n.json ├── extensions ├── php │ ├── .vscodeignore │ ├── tsconfig.json │ ├── php.configuration.json │ ├── package.nls.json │ └── .vscode │ │ └── launch.json ├── yaml │ ├── .gitignore │ └── yaml.configuration.json ├── groovy │ ├── test │ │ └── colorize-results │ │ │ └── test_groovy.json │ └── groovy.configuration.json ├── vscode-api-tests │ ├── .gitignore │ ├── testWorkspace │ │ ├── bower.json │ │ ├── 10linefile.ts │ │ └── far.js │ ├── .vscodeignore │ └── tsconfig.json ├── vscode-colorize-tests │ ├── .gitignore │ ├── test │ │ └── colorize-fixtures │ │ │ └── test-cssvariables.scss │ └── tsconfig.json ├── json │ ├── server │ │ ├── test │ │ │ └── mocha.opts │ │ ├── .vscode │ │ │ └── tasks.json │ │ └── tsconfig.json │ ├── json.configuration.json │ ├── client │ │ ├── tsconfig.json │ │ └── src │ │ │ └── typings │ │ │ └── vscode-extension-telemetry.d.ts │ └── test │ │ └── colorize-fixtures │ │ └── test.json ├── javascript │ ├── test │ │ └── colorize-fixtures │ │ │ └── test6916.js │ ├── tsconfig.json │ ├── javascript.configuration.json │ └── syntaxes │ │ └── Readme.md ├── typescript │ ├── test │ │ └── colorize-fixtures │ │ │ ├── tsconfig.json │ │ │ ├── test-issue5465.ts │ │ │ ├── test-issue5566.ts │ │ │ └── test-issue5431.ts │ ├── server │ │ └── typescript │ │ │ ├── .npmignore │ │ │ └── lib │ │ │ └── README.md │ ├── tsconfig.json │ └── src │ │ └── typings │ │ ├── vscode-extension-telemetry.d.ts │ │ └── collections.d.ts ├── node-debug │ ├── node-debug.azure.json │ ├── package.json │ └── OSSREADME.json ├── make │ ├── make.configuration.json │ └── test │ │ └── colorize-fixtures │ │ └── makefile ├── jade │ ├── jade.configuration.json │ └── package.json ├── sql │ ├── test │ │ └── colorize-fixtures │ │ │ └── test.sql │ └── package.json ├── css │ └── test │ │ └── colorize-fixtures │ │ └── test-variables.css ├── diff │ └── diff.configuration.json ├── git │ ├── git-commit.configuration.json │ └── git-rebase.configuration.json ├── less │ ├── test │ │ └── colorize-fixtures │ │ │ └── test-cssvariables.less │ └── package.json ├── powershell │ └── OSSREADME.json ├── clojure │ ├── OSSREADME.json │ └── clojure.configuration.json ├── markdown │ └── package.json ├── coffeescript │ ├── test │ │ └── colorize-fixtures │ │ │ └── test-regex.coffee │ ├── OSSREADME.json │ └── coffeescript.configuration.json ├── ini │ ├── test │ │ └── colorize-fixtures │ │ │ └── test.ini │ └── ini.configuration.json ├── swift │ └── test │ │ └── colorize-fixtures │ │ └── test.swift ├── theme-red │ ├── package.json │ └── OSSREADME.json ├── theme-abyss │ ├── package.json │ └── OSSREADME.json ├── theme-monokai │ ├── package.json │ └── OSSREADME.json ├── lua │ ├── test │ │ └── colorize-fixtures │ │ │ └── test.lua │ ├── lua.configuration.json │ └── package.json ├── theme-quietlight │ ├── package.json │ └── OSSREADME.json ├── theme-kimbie-dark │ ├── package.json │ └── OSSREADME.json ├── go │ ├── OSSREADME.json │ └── package.json ├── theme-solarized-light │ ├── package.json │ └── OSSREADME.json ├── theme-monokai-dimmed │ ├── package.json │ └── OSSREADME.json ├── theme-solarized-dark │ ├── package.json │ └── OSSREADME.json ├── rust │ ├── test │ │ └── colorize-fixtures │ │ │ └── test.rs │ ├── OSSREADME.json │ └── rust.configuration.json ├── theme-tomorrow-night-blue │ ├── package.json │ └── OSSREADME.json ├── r │ ├── r.configuration.json │ └── package.json ├── bat │ ├── bat.configuration.json │ └── package.json ├── fsharp │ ├── OSSREADME.json │ └── fsharp.configuration.json ├── shaderlab │ ├── OSSREADME.json │ ├── test │ │ └── colorize-fixtures │ │ │ └── test.shader │ └── shaderlab.configuration.json ├── vb │ └── vb.configuration.json ├── docker │ ├── OSSREADME.json │ └── dockerfile.configuration.json ├── cpp │ ├── cpp.configuration.json │ └── test │ │ └── colorize-fixtures │ │ └── test.cpp ├── perl │ ├── perl.configuration.json │ └── perl6.configuration.json ├── ruby │ └── ruby.configuration.json ├── java │ ├── package.json │ └── java.configuration.json ├── objective-c │ └── objective-c.configuration.json └── shellscript │ └── shellscript.configuration.json ├── src ├── vs │ ├── base │ │ ├── test │ │ │ └── node │ │ │ │ ├── stream │ │ │ │ └── fixtures │ │ │ │ │ └── empty.txt │ │ │ │ ├── encoding │ │ │ │ └── fixtures │ │ │ │ │ ├── empty.txt │ │ │ │ │ ├── some_utf16be.css │ │ │ │ │ └── some_utf16le.css │ │ │ │ └── mime │ │ │ │ └── fixtures │ │ │ │ ├── some.xml.png │ │ │ │ ├── some.pdf │ │ │ │ ├── some.png.txt │ │ │ │ ├── some.qwoff.txt │ │ │ │ └── some.json.png │ │ ├── browser │ │ │ └── ui │ │ │ │ ├── scrollbar │ │ │ │ └── media │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ ├── arrow-down-dark.png │ │ │ │ │ ├── arrow-left-dark.png │ │ │ │ │ ├── arrow-up-dark.png │ │ │ │ │ └── arrow-right-dark.png │ │ │ │ ├── octiconLabel │ │ │ │ └── octicons │ │ │ │ │ ├── octicons.eot │ │ │ │ │ ├── octicons.ttf │ │ │ │ │ ├── octicons.woff │ │ │ │ │ ├── octicons-local.ttf │ │ │ │ │ └── README.md │ │ │ │ ├── splitview │ │ │ │ ├── arrow-expand.svg │ │ │ │ ├── arrow-expand-dark.svg │ │ │ │ ├── arrow-collapse.svg │ │ │ │ └── arrow-collapse-dark.svg │ │ │ │ └── toolbar │ │ │ │ ├── ellipsis.svg │ │ │ │ └── ellipsis-inverse.svg │ │ ├── node │ │ │ └── terminateProcess.sh │ │ └── common │ │ │ ├── marked │ │ │ └── OSSREADME.json │ │ │ └── buildunit.json │ ├── workbench │ │ ├── services │ │ │ ├── search │ │ │ │ └── test │ │ │ │ │ └── node │ │ │ │ │ └── fixtures │ │ │ │ │ ├── üm laut汉语 │ │ │ │ │ └── 汉语.txt │ │ │ │ │ ├── examples │ │ │ │ │ └── subfolder │ │ │ │ │ │ └── subfile.txt │ │ │ │ │ ├── site.less │ │ │ │ │ ├── binary.wuff │ │ │ │ │ ├── some_utf16be.css │ │ │ │ │ └── some_utf16le.css │ │ │ └── files │ │ │ │ ├── test │ │ │ │ └── node │ │ │ │ │ └── fixtures │ │ │ │ │ └── service │ │ │ │ │ ├── small.txt │ │ │ │ │ ├── some_utf8_bom.txt │ │ │ │ │ ├── binary.txt │ │ │ │ │ └── some_utf16le.css │ │ │ │ └── node │ │ │ │ └── watcher │ │ │ │ ├── win32 │ │ │ │ ├── CodeHelper.exe │ │ │ │ └── CodeHelper.md │ │ │ │ └── typings │ │ │ │ └── OSSREADME.json │ │ ├── browser │ │ │ └── parts │ │ │ │ ├── editor │ │ │ │ └── media │ │ │ │ │ ├── grab.cur │ │ │ │ │ ├── grabbing.cur │ │ │ │ │ ├── letterpress.png │ │ │ │ │ ├── letterpress@2x.png │ │ │ │ │ ├── letterpress-dark.png │ │ │ │ │ ├── letterpress-dark@2x.png │ │ │ │ │ ├── close-dirty.svg │ │ │ │ │ ├── close-dirty-inverse.svg │ │ │ │ │ ├── next-diff.svg │ │ │ │ │ ├── next-diff-inverse.svg │ │ │ │ │ ├── previous-diff.svg │ │ │ │ │ ├── previous-diff-inverse.svg │ │ │ │ │ ├── SplitEditor.svg │ │ │ │ │ ├── SplitEditor_inverse.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close-inverse.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ └── forward-inverse.svg │ │ │ │ ├── quickopen │ │ │ │ └── media │ │ │ │ │ ├── dirty.svg │ │ │ │ │ └── dirty-inverse.svg │ │ │ │ └── activitybar │ │ │ │ └── media │ │ │ │ └── ellipsis-global.svg │ │ ├── parts │ │ │ ├── git │ │ │ │ ├── browser │ │ │ │ │ ├── media │ │ │ │ │ │ ├── subtract-focus.svg │ │ │ │ │ │ ├── subtract.svg │ │ │ │ │ │ ├── arrow_down.svg │ │ │ │ │ │ ├── arrow_up.svg │ │ │ │ │ │ ├── subtract-inverse.svg │ │ │ │ │ │ ├── push.svg │ │ │ │ │ │ ├── push-inverse.svg │ │ │ │ │ │ ├── add-focus.svg │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ ├── check-inverse.svg │ │ │ │ │ │ ├── pull.svg │ │ │ │ │ │ ├── add-inverse.svg │ │ │ │ │ │ ├── pull-inverse.svg │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ ├── plus-check.svg │ │ │ │ │ │ ├── plus-check-inverse.svg │ │ │ │ │ │ ├── OpenEditor_inverse.svg │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ ├── OpenEditor.svg │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ ├── undo-focus.svg │ │ │ │ │ │ └── undo-inverse.svg │ │ │ │ │ └── views │ │ │ │ │ │ └── disabled │ │ │ │ │ │ └── disabledView.css │ │ │ │ └── node │ │ │ │ │ └── askpass.sh │ │ │ ├── files │ │ │ │ └── browser │ │ │ │ │ └── media │ │ │ │ │ ├── action-close-dirty.svg │ │ │ │ │ ├── action-close-dirty-dark.svg │ │ │ │ │ ├── action-close-dirty-focus.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── add-focus.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── check-inverse.svg │ │ │ │ │ ├── add-inverse.svg │ │ │ │ │ ├── SplitEditor.svg │ │ │ │ │ ├── SplitEditor_inverse.svg │ │ │ │ │ ├── ViewSource_inverse.svg │ │ │ │ │ ├── CollapseAll.svg │ │ │ │ │ ├── CollapseAll_inverse.svg │ │ │ │ │ ├── saveall.svg │ │ │ │ │ ├── saveall_inverse.svg │ │ │ │ │ ├── action-close.svg │ │ │ │ │ ├── action-close-dark.svg │ │ │ │ │ ├── action-close-focus.svg │ │ │ │ │ ├── files-dark.svg │ │ │ │ │ ├── closeall.svg │ │ │ │ │ ├── closeall_inverse.svg │ │ │ │ │ ├── FileUpload.svg │ │ │ │ │ ├── FileUpload_inverse.svg │ │ │ │ │ ├── ViewSource.svg │ │ │ │ │ ├── AddFile.svg │ │ │ │ │ ├── AddFile_inverse.svg │ │ │ │ │ ├── AddFolder.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── undo-inverse.svg │ │ │ │ │ └── AddFolder_inverse.svg │ │ │ ├── debug │ │ │ │ └── browser │ │ │ │ │ └── media │ │ │ │ │ ├── breakpoint-dark.svg │ │ │ │ │ ├── breakpoint.svg │ │ │ │ │ ├── add-focus.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── add-inverse.svg │ │ │ │ │ ├── breakpoint-hint.svg │ │ │ │ │ ├── breakpoint-disabled.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── breakpoint-disabled-dark.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── stop-inverse.svg │ │ │ │ │ ├── pause-inverse.svg │ │ │ │ │ ├── breakpoint-unverified.svg │ │ │ │ │ ├── breakpoint-unverified-dark.svg │ │ │ │ │ ├── current-arrow-dark.svg │ │ │ │ │ ├── stackframe-arrow-dark.svg │ │ │ │ │ ├── current-arrow.svg │ │ │ │ │ ├── stackframe-arrow.svg │ │ │ │ │ ├── remove-focus.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── stackframe-and-breakpoint-dark.svg │ │ │ │ │ ├── remove-inverse.svg │ │ │ │ │ ├── current-and-breakpoint-dark.svg │ │ │ │ │ ├── continue.svg │ │ │ │ │ ├── remove-all.svg │ │ │ │ │ ├── continue-inverse.svg │ │ │ │ │ ├── stackframe-and-breakpoint.svg │ │ │ │ │ ├── remove-all-inverse.svg │ │ │ │ │ └── current-and-breakpoint.svg │ │ │ ├── tasks │ │ │ │ ├── common │ │ │ │ │ └── taskSampleConfig.json │ │ │ │ └── electron-browser │ │ │ │ │ └── media │ │ │ │ │ ├── status-warning.svg │ │ │ │ │ ├── status-info.svg │ │ │ │ │ ├── status-error.svg │ │ │ │ │ └── task.svg │ │ │ ├── feedback │ │ │ │ └── browser │ │ │ │ │ └── media │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ └── close-dark.svg │ │ │ ├── errorList │ │ │ │ └── browser │ │ │ │ │ ├── media │ │ │ │ │ ├── status-info.svg │ │ │ │ │ ├── status-warning-inverse.svg │ │ │ │ │ ├── status-warning.svg │ │ │ │ │ ├── status-info-inverse.svg │ │ │ │ │ ├── status-error-inverse.svg │ │ │ │ │ └── status-error.svg │ │ │ │ │ └── errorListConstants.ts │ │ │ ├── quickopen │ │ │ │ └── browser │ │ │ │ │ └── media │ │ │ │ │ ├── status-info.svg │ │ │ │ │ ├── status-warning-inverse.svg │ │ │ │ │ ├── status-warning.svg │ │ │ │ │ ├── status-info-inverse.svg │ │ │ │ │ ├── status-error-inverse.svg │ │ │ │ │ └── status-error.svg │ │ │ ├── search │ │ │ │ └── browser │ │ │ │ │ └── media │ │ │ │ │ ├── CollapseAll.svg │ │ │ │ │ ├── CollapseAll_inverse.svg │ │ │ │ │ ├── action-remove.svg │ │ │ │ │ ├── action-query-clear.svg │ │ │ │ │ ├── action-remove-dark.svg │ │ │ │ │ ├── action-remove-focus.svg │ │ │ │ │ ├── action-query-clear-dark.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── ellipsis-inverse.svg │ │ │ │ │ └── search.svg │ │ │ └── themes │ │ │ │ └── test │ │ │ │ └── electron-browser │ │ │ │ └── fixtures │ │ │ │ └── foo.js │ │ ├── workbench.main.nls.js │ │ ├── workbench.main.css │ │ └── common │ │ │ └── panel.ts │ ├── editor │ │ ├── browser │ │ │ ├── widget │ │ │ │ └── media │ │ │ │ │ ├── diagonal-fill.png │ │ │ │ │ ├── green-squiggly.svg │ │ │ │ │ └── red-squiggly.svg │ │ │ └── viewParts │ │ │ │ ├── contentWidgets │ │ │ │ └── contentWidgets.css │ │ │ │ └── overlayWidgets │ │ │ │ └── overlayWidgets.css │ │ └── contrib │ │ │ ├── find │ │ │ └── browser │ │ │ │ └── images │ │ │ │ ├── expando-expanded.svg │ │ │ │ ├── expando-expanded-dark.svg │ │ │ │ ├── expando-collapsed.svg │ │ │ │ ├── expando-collapsed-dark.svg │ │ │ │ ├── close.svg │ │ │ │ ├── close-dark.svg │ │ │ │ ├── next.svg │ │ │ │ ├── next-inverse.svg │ │ │ │ ├── previous.svg │ │ │ │ └── previous-inverse.svg │ │ │ ├── parameterHints │ │ │ └── browser │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-down-dark.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ └── arrow-up-dark.svg │ │ │ ├── defineKeybinding │ │ │ └── browser │ │ │ │ ├── info.svg │ │ │ │ └── status-error.svg │ │ │ ├── quickOpen │ │ │ └── browser │ │ │ │ └── gotoLine.css │ │ │ ├── snippet │ │ │ └── browser │ │ │ │ └── snippet.ts │ │ │ ├── zoneWidget │ │ │ └── browser │ │ │ │ └── media │ │ │ │ ├── close.svg │ │ │ │ └── close-inverse.svg │ │ │ └── clipboard │ │ │ └── browser │ │ │ └── clipboard.css │ ├── buildunit.json │ ├── css.d.ts │ ├── languages │ │ ├── typescript │ │ │ └── common │ │ │ │ └── lib │ │ │ │ ├── lib-es6-ts.d.ts │ │ │ │ └── lib-ts.d.ts │ │ ├── lib │ │ │ └── common │ │ │ │ └── OSSREADME.json │ │ ├── css │ │ │ └── common │ │ │ │ └── services │ │ │ │ └── browsers.d.ts │ │ └── razor │ │ │ └── common │ │ │ └── razorTokenTypes.ts │ └── platform │ │ └── contextview │ │ └── browser │ │ └── contextMenuHandler.css ├── typings │ ├── OSSREADME.json │ └── graceful-fs.d.ts ├── tsconfig.json └── cli.js ├── test └── mocha.opts ├── resources ├── linux │ ├── code.png │ └── debian │ │ ├── postrm.template │ │ └── prerm.template ├── win32 │ ├── code.ico │ ├── code_file.ico │ └── bin │ │ ├── code.cmd │ │ └── code.sh └── darwin │ ├── code.icns │ └── code_file.icns ├── issue_template.md ├── .eslintrc ├── .mention-bot ├── .gitignore ├── scripts ├── test.bat └── npm.bat ├── appveyor.yml ├── product.json ├── .editorconfig ├── tslint.json └── .vscode └── settings.json /i18n/.gitignore: -------------------------------------------------------------------------------- 1 | !out/ -------------------------------------------------------------------------------- /extensions/php/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | -------------------------------------------------------------------------------- /extensions/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/vs/base/test/node/stream/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/base/test/node/encoding/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/groovy/test/colorize-results/test_groovy.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /extensions/vscode-api-tests/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | 4 | } -------------------------------------------------------------------------------- /src/vs/base/test/node/mime/fixtures/some.xml.png: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/üm laut汉语/汉语.txt: -------------------------------------------------------------------------------- 1 | 汉语 -------------------------------------------------------------------------------- /src/vs/workbench/services/files/test/node/fixtures/service/small.txt: -------------------------------------------------------------------------------- 1 | Small File -------------------------------------------------------------------------------- /extensions/json/server/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui tdd 2 | --useColors true 3 | ./out/test 4 | -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/examples/subfolder/subfile.txt: -------------------------------------------------------------------------------- 1 | // sub -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/site.less: -------------------------------------------------------------------------------- 1 | // lss is mor 2 | 3 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --delay 2 | --ui tdd 3 | --reporter dot 4 | --timeout 10000 5 | test/all.js 6 | -------------------------------------------------------------------------------- /resources/linux/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/resources/linux/code.png -------------------------------------------------------------------------------- /resources/win32/code.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/resources/win32/code.ico -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | - VSCode Version: 2 | - OS Version: 3 | 4 | Steps to Reproduce: 5 | 6 | 1. 7 | 2. 8 | -------------------------------------------------------------------------------- /resources/darwin/code.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/resources/darwin/code.icns -------------------------------------------------------------------------------- /resources/win32/code_file.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/resources/win32/code_file.ico -------------------------------------------------------------------------------- /src/vs/workbench/services/files/test/node/fixtures/service/some_utf8_bom.txt: -------------------------------------------------------------------------------- 1 | This is some UTF 8 with BOM file. -------------------------------------------------------------------------------- /extensions/javascript/test/colorize-fixtures/test6916.js: -------------------------------------------------------------------------------- 1 | for(var i=0;i<9;i++){for(var j;j ({ 'bar': 'baz' }) 3 | } -------------------------------------------------------------------------------- /extensions/vscode-api-tests/.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | typings/** 3 | **/*.ts 4 | **/*.map 5 | .gitignore 6 | tsconfig.json 7 | -------------------------------------------------------------------------------- /src/vs/base/test/node/mime/fixtures/some.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/test/node/mime/fixtures/some.pdf -------------------------------------------------------------------------------- /src/vs/base/test/node/mime/fixtures/some.png.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/test/node/mime/fixtures/some.png.txt -------------------------------------------------------------------------------- /src/vs/base/test/node/mime/fixtures/some.qwoff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/test/node/mime/fixtures/some.qwoff.txt -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-down.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-left.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-up.png -------------------------------------------------------------------------------- /src/vs/editor/browser/widget/media/diagonal-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/editor/browser/widget/media/diagonal-fill.png -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/grab.cur -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-right.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/octiconLabel/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/octiconLabel/octicons/octicons.eot -------------------------------------------------------------------------------- /src/vs/base/browser/ui/octiconLabel/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/octiconLabel/octicons/octicons.ttf -------------------------------------------------------------------------------- /src/vs/base/browser/ui/octiconLabel/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/octiconLabel/octicons/octicons.woff -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-down-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-down-dark.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-left-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-left-dark.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-up-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-up-dark.png -------------------------------------------------------------------------------- /src/vs/base/test/node/encoding/fixtures/some_utf16be.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/test/node/encoding/fixtures/some_utf16be.css -------------------------------------------------------------------------------- /src/vs/base/test/node/encoding/fixtures/some_utf16le.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/test/node/encoding/fixtures/some_utf16le.css -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/grabbing.cur -------------------------------------------------------------------------------- /extensions/node-debug/node-debug.azure.json: -------------------------------------------------------------------------------- 1 | { 2 | "account": "monacobuild", 3 | "container": "debuggers", 4 | "zip": "5b6a128/node-debug.zip", 5 | "output": "" 6 | } 7 | -------------------------------------------------------------------------------- /src/vs/base/browser/ui/scrollbar/media/arrow-right-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/scrollbar/media/arrow-right-dark.png -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/letterpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/letterpress.png -------------------------------------------------------------------------------- /src/vs/base/browser/ui/octiconLabel/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/base/browser/ui/octiconLabel/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/letterpress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/letterpress@2x.png -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/binary.wuff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/search/test/node/fixtures/binary.wuff -------------------------------------------------------------------------------- /.mention-bot: -------------------------------------------------------------------------------- 1 | { 2 | "maxReviewers": 2, 3 | "userBlacklistForPR": ["alexandrudima", "aeschli", "weinand", "bpasero", "isidorn", "joaomoreno", "jrieken", "dbaeumer", "egamma"] 4 | } -------------------------------------------------------------------------------- /src/vs/base/browser/ui/splitview/arrow-expand.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/letterpress-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/letterpress-dark.png -------------------------------------------------------------------------------- /src/vs/workbench/services/files/node/watcher/win32/CodeHelper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/files/node/watcher/win32/CodeHelper.exe -------------------------------------------------------------------------------- /extensions/make/make.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ] 10 | } -------------------------------------------------------------------------------- /extensions/node-debug/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-debug-placeholder", 3 | "version": "0.10.0", 4 | "publisher": "vscode", 5 | "engines": { 6 | "vscode": "0.10.x" 7 | } 8 | } -------------------------------------------------------------------------------- /src/vs/base/browser/ui/splitview/arrow-expand-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/letterpress-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/browser/parts/editor/media/letterpress-dark@2x.png -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/some_utf16be.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/search/test/node/fixtures/some_utf16be.css -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/some_utf16le.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/search/test/node/fixtures/some_utf16le.css -------------------------------------------------------------------------------- /extensions/jade/jade.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//-" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ] 10 | } -------------------------------------------------------------------------------- /extensions/sql/test/colorize-fixtures/test.sql: -------------------------------------------------------------------------------- 1 | CREATE VIEW METRIC_STATS (ID, MONTH, TEMP_C, RAIN_C) AS 2 | SELECT ID, 3 | MONTH, 4 | (TEMP_F - 32) * 5 /9, 5 | RAIN_I * 0.3937 6 | FROM STATS; -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/expando-expanded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/services/files/test/node/fixtures/service/binary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/files/test/node/fixtures/service/binary.txt -------------------------------------------------------------------------------- /extensions/typescript/test/colorize-fixtures/test-issue5431.ts: -------------------------------------------------------------------------------- 1 | function foo(isAll, startTime, endTime) { 2 | const timeRange = isAll ? '所有时间' : `${startTime} - ${endTime}`; 3 | return true; 4 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/expando-expanded-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/parameterHints/browser/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/win32/bin/code.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | setlocal 3 | set VSCODE_DEV= 4 | set ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 5 | call "%~dp0..\@@NAME@@.exe" "%~dp0..\resources\\app\\out\\cli.js" %* 6 | endlocal -------------------------------------------------------------------------------- /src/vs/base/browser/ui/splitview/arrow-collapse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/parameterHints/browser/arrow-down-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/parameterHints/browser/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/subtract-focus.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/subtract.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/services/files/node/watcher/typings/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | // All oss in this folder is dev time only 4 | [] -------------------------------------------------------------------------------- /src/vs/workbench/services/files/test/node/fixtures/service/some_utf16le.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/options/vscode/master/src/vs/workbench/services/files/test/node/fixtures/service/some_utf16le.css -------------------------------------------------------------------------------- /extensions/json/json.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"] 9 | ] 10 | } -------------------------------------------------------------------------------- /src/vs/base/browser/ui/splitview/arrow-collapse-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/buildunit.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vs", 3 | "dependencies": [ 4 | ], 5 | "libs": [ 6 | "lib.core.d.ts" 7 | ], 8 | "sources": [ 9 | ], 10 | "declares": [ 11 | "vs/nls.d.ts" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/parameterHints/browser/arrow-up-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/arrow_down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/arrow_up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/subtract-inverse.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/10linefile.ts: -------------------------------------------------------------------------------- 1 | function foo(): void { 2 | var a = 1; 3 | a = 1; 4 | a = 1; 5 | a = 1; 6 | a = 1; 7 | a = 1; 8 | a = 1; 9 | a = 1; 10 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/expando-collapsed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/php/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noLib": true, 4 | "target": "es5", 5 | "module": "commonjs", 6 | "outDir": "./out" 7 | }, 8 | "exclude": [ 9 | "node_modules" 10 | ] 11 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/expando-collapsed-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/quickopen/media/dirty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/css/test/colorize-fixtures/test-variables.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --spacing-unit: 6px; 3 | --cell-padding: (4 * var(--spacing-unit)); 4 | } 5 | body { 6 | padding-left: calc(4 * var(--spacing-unit, 5px)); 7 | } -------------------------------------------------------------------------------- /extensions/diff/diff.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ] 11 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/close-dirty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/git/git-commit.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ] 11 | } -------------------------------------------------------------------------------- /extensions/git/git-rebase.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ] 11 | } -------------------------------------------------------------------------------- /extensions/javascript/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noLib": true, 4 | "target": "es5", 5 | "module": "commonjs", 6 | "outDir": "./out" 7 | }, 8 | "exclude": [ 9 | "node_modules" 10 | ] 11 | } -------------------------------------------------------------------------------- /extensions/json/client/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noLib": true, 4 | "target": "es5", 5 | "module": "commonjs", 6 | "outDir": "./out" 7 | }, 8 | "exclude": [ 9 | "node_modules" 10 | ] 11 | } -------------------------------------------------------------------------------- /extensions/less/test/colorize-fixtures/test-cssvariables.less: -------------------------------------------------------------------------------- 1 | :root { 2 | --spacing-unit: 6px; 3 | --cell-padding: (4 * var(--spacing-unit)); 4 | } 5 | body { 6 | padding-left: calc(4 * var(--spacing-unit, 5px)); 7 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/quickopen/media/dirty-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close-dirty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/php/php.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", // "#" 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ] 11 | 12 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/close-dirty-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close-dirty-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close-dirty-focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/push.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/javascript/javascript.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ] 11 | } -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/push-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/json/server/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.1.0", 3 | "command": "npm", 4 | "isShellCommand": true, 5 | "showOutput": "silent", 6 | "args": ["run", "watch"], 7 | "isWatching": true, 8 | "problemMatcher": "$tsc-watch" 9 | } -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/test/colorize-fixtures/test-cssvariables.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --spacing-unit: 6px; 3 | --cell-padding: (4 * var(--spacing-unit)); 4 | } 5 | body { 6 | padding-left: calc(4 * var(--spacing-unit, 5px)); 7 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/activitybar/media/ellipsis-global.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/next-diff.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/tasks/common/taskSampleConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | // Use IntelliSense to insert predefined task snippets 5 | 6 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | Thumbs.db 4 | node_modules/ 5 | .build/ 6 | out/ 7 | out-build/ 8 | out-editor/ 9 | out-editor-min/ 10 | out-monaco-editor-core/ 11 | out-vscode/ 12 | out-vscode-min/ 13 | build/node_modules -------------------------------------------------------------------------------- /extensions/javascript/syntaxes/Readme.md: -------------------------------------------------------------------------------- 1 | The JavaScript.tmLanguage bundle is derived from the TypeScriptReact.tmLanguage. 2 | 3 | Changes: 4 | - fileTypes .tsx -> .js 5 | - scopeName scope.tsx -> scope.js 6 | - update language name and file types 7 | -------------------------------------------------------------------------------- /extensions/typescript/server/typescript/.npmignore: -------------------------------------------------------------------------------- 1 | built 2 | doc 3 | lib/README.md 4 | scripts 5 | src 6 | tests 7 | internal 8 | tslint.json 9 | Jakefile.js 10 | .editorconfig 11 | .gitattributes 12 | .settings/ 13 | .travis.yml 14 | .vscode/ -------------------------------------------------------------------------------- /resources/linux/debian/postrm.template: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (c) Microsoft Corporation. All rights reserved. 4 | # Licensed under the MIT License. See License.txt in the project root for license information. 5 | 6 | rm -f /usr/bin/@@NAME@@ -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/add-focus.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/add.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/add-focus.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/add.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/add-focus.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/add.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/check-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/pull.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/base/browser/ui/octiconLabel/octicons/README.md: -------------------------------------------------------------------------------- 1 | If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts. 2 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/next-diff-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/check-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/vscode-api-tests/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "ES5", 5 | "outDir": "out", 6 | "noLib": true, 7 | "sourceMap": true 8 | }, 9 | "exclude": [ 10 | "node_modules" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/vs/editor/browser/widget/media/green-squiggly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/previous-diff.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/add-inverse.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-hint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/add-inverse.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/add-inverse.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/pull-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "ES5", 5 | "outDir": "out", 6 | "noLib": true, 7 | "sourceMap": true 8 | }, 9 | "exclude": [ 10 | "node_modules" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/previous-diff-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-disabled.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-disabled-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/base/node/terminateProcess.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | terminateTree() { 4 | for cpid in $(pgrep -P $1); do 5 | terminateTree $cpid 6 | done 7 | kill -9 $1 > /dev/null 2>&1 8 | } 9 | 10 | for pid in $*; do 11 | terminateTree $pid 12 | done -------------------------------------------------------------------------------- /src/vs/base/test/node/mime/fixtures/some.json.png: -------------------------------------------------------------------------------- 1 | { 2 | "type": "typescript", 3 | 4 | "sources": [ 5 | "examples/company.ts", 6 | "examples/conway.ts", 7 | "examples/employee.ts", 8 | "examples/large.ts", 9 | "examples/small.ts" 10 | ] 11 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/SplitEditor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stop-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/SplitEditor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/powershell/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "SublimeText/PowerShell", 4 | "version": "0.0.0", 5 | "license": "MIT", 6 | "repositoryURL": "https://github.com/SublimeText/PowerShell" 7 | }] 8 | -------------------------------------------------------------------------------- /src/vs/base/common/marked/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "chjj-marked", 5 | "repositoryURL": "https://github.com/npmcomponent/chjj-marked", 6 | "version": "0.3.2", 7 | "license": "MIT" 8 | }] 9 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/pause-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/clojure/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "mmcgrana/textmate-clojure", 4 | "version": "0.0.0", 5 | "license": "MIT", 6 | "repositoryURL": "https://github.com/mmcgrana/textmate-clojure" 7 | }] 8 | -------------------------------------------------------------------------------- /extensions/json/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noLib": true, 4 | "target": "es5", 5 | "module": "commonjs", 6 | "sourceMap": true, 7 | "sourceRoot": "../src", 8 | "outDir": "./out" 9 | }, 10 | "exclude": [ 11 | "node_modules" 12 | ] 13 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/SplitEditor_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-unverified.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/SplitEditor_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/breakpoint-unverified-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/markdown/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "markdown", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "snippets": [{ 8 | "language": "markdown", 9 | "path": "./snippets/markdown.json" 10 | }] 11 | } 12 | } -------------------------------------------------------------------------------- /src/vs/base/common/buildunit.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vs/base", 3 | "dependencies": [ 4 | { "name": "vs", "internal": false } 5 | ], 6 | "libs": [ 7 | "lib.core.d.ts" 8 | ], 9 | "sources": [ 10 | "**/*.ts" 11 | ], 12 | "declares": [ 13 | "vs/base/winjs.base.d.ts" 14 | ] 15 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/defineKeybinding/browser/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/feedback/browser/media/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/plus-check.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /extensions/coffeescript/test/colorize-fixtures/test-regex.coffee: -------------------------------------------------------------------------------- 1 | regex = /Hello (\d+) #{user}/g 2 | 2 / 3 3 | 2/3 4 | 5 | a = b/c + d/g 6 | someOtherStuff 7 | 8 | name="hello" 9 | test=/// #{name} 10 | 11 | fancyRegExp = /// 12 | (\d+) # numbers 13 | (\w*) # letters 14 | $ # the end 15 | /// -------------------------------------------------------------------------------- /extensions/ini/test/colorize-fixtures/test.ini: -------------------------------------------------------------------------------- 1 | ; last modified 1 April 2001 by John Doe 2 | [owner] 3 | name=John Doe 4 | organization=Acme Widgets Inc. 5 | 6 | [database] 7 | ; use IP address in case network name resolution is not working 8 | server=192.0.2.62 9 | port=143 10 | file="payroll.dat" -------------------------------------------------------------------------------- /src/vs/editor/browser/widget/media/red-squiggly.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/current-arrow-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/services/files/node/watcher/win32/CodeHelper.md: -------------------------------------------------------------------------------- 1 | # Native File Watching for Windows using C# FileSystemWatcher 2 | 3 | - Repository: https://github.com/Microsoft/vscode-filewatcher-windows 4 | 5 | # Build 6 | 7 | - Build in "Release" config 8 | - Copy CodeHelper.exe over into this folder -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stackframe-arrow-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/plus-check-inverse.svg: -------------------------------------------------------------------------------- 1 | Layer 1 -------------------------------------------------------------------------------- /extensions/swift/test/colorize-fixtures/test.swift: -------------------------------------------------------------------------------- 1 | var teamScore = 0 2 | var greeting = "Hello!" 3 | func hasAnyMatches(list: [Int], condition: (Int) -> Bool) -> Bool { 4 | for item in list { 5 | if condition(item) { 6 | return true 7 | } 8 | } 9 | return false 10 | } -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/node/askpass.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | VSCODE_GIT_ASKPASS_PIPE=`mktemp` 3 | AMD_ENTRYPOINT="$VSCODE_GIT_ASKPASS_MODULE_ID" VSCODE_GIT_ASKPASS_PIPE="$VSCODE_GIT_ASKPASS_PIPE" "$VSCODE_GIT_ASKPASS_NODE" "$VSCODE_GIT_ASKPASS_BOOTSTRAP" $* 4 | cat $VSCODE_GIT_ASKPASS_PIPE 5 | rm $VSCODE_GIT_ASKPASS_PIPE -------------------------------------------------------------------------------- /extensions/coffeescript/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "textmate/coffee-script.tmbundle", 4 | "version": "0.0.0", 5 | "license": "TextMate Bundle License", 6 | "repositoryURL": "https://github.com/textmate/coffee-script.tmbundle" 7 | }] 8 | -------------------------------------------------------------------------------- /src/typings/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | // All OSS in this folder is development time only 4 | [{ 5 | "name": "definitelytyped", 6 | "repositoryURL": "https://github.com/DefinitelyTyped/DefinitelyTyped", 7 | "license": "MIT", 8 | "isDev": true 9 | }] -------------------------------------------------------------------------------- /src/vs/workbench/parts/tasks/electron-browser/media/status-warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/ViewSource_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/OpenEditor_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/tasks/electron-browser/media/status-info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/json/test/colorize-fixtures/test.json: -------------------------------------------------------------------------------- 1 | { 2 | // a comment 3 | "options": { 4 | "myBool": true, 5 | "myInteger": 1, 6 | "myString": "String\u0056", 7 | "myNumber": 1.24, 8 | "myNull": null, 9 | "myArray": [ 1, "Hello", true, null, [], {}], 10 | "myObject" : { 11 | "foo": "bar" 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /extensions/theme-red/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-red", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Red", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/red.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /extensions/typescript/server/typescript/lib/README.md: -------------------------------------------------------------------------------- 1 | # Read this! 2 | 3 | These files are not meant to be edited by hand. 4 | If you need to make modifications, the respective files should be changed within the repository's top-level `src` directory. Running `jake LKG` will then appropriately update the files in this directory. 5 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/current-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-warning-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-warning-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/php/package.nls.json: -------------------------------------------------------------------------------- 1 | { 2 | "configuration.validate.enable": "Whether php validation is enabled or not.", 3 | "configuration.validate.executablePath": "Points to the php executable.", 4 | "configuration.validate.run": "Whether the linter is run on save or on type.", 5 | "configuration.title": "PHP Configuration options" 6 | } -------------------------------------------------------------------------------- /extensions/theme-abyss/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-abyss", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Abyss", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/Abyss.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /resources/linux/debian/prerm.template: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Copyright (c) Microsoft Corporation. All rights reserved. 4 | # Licensed under the MIT License. See License.txt in the project root for license information. 5 | 6 | # Deregister code from the alternatives system 7 | update-alternatives --remove editor /usr/bin/@@NAME@@ -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stackframe-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/CollapseAll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/CollapseAll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/CollapseAll_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/saveall.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/CollapseAll_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/theme-monokai/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-monokai", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Monokai", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/Monokai.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /extensions/typescript/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "noLib": true, 4 | "target": "es5", 5 | "module": "commonjs", 6 | "sourceMap": true, 7 | "sourceRoot": "../src", 8 | "outDir": "./out" 9 | }, 10 | "exclude": [ 11 | "node_modules", 12 | "server", 13 | "out", 14 | "test/colorize-fixtures" 15 | ] 16 | } -------------------------------------------------------------------------------- /scripts/test.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | setlocal 3 | 4 | set ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 5 | 6 | rem TFS Builds 7 | if not "%BUILD_BUILDID%" == "" ( 8 | set ELECTRON_NO_ATTACH_CONSOLE=1 9 | ) 10 | 11 | pushd %~dp0\.. 12 | .\.build\electron\electron.exe .\node_modules\mocha\bin\_mocha %* 13 | popd 14 | 15 | endlocal 16 | exit /b %errorlevel% -------------------------------------------------------------------------------- /extensions/lua/test/colorize-fixtures/test.lua: -------------------------------------------------------------------------------- 1 | -- defines a factorial function 2 | function fact (n) 3 | if n == 0 then 4 | return 1 5 | else 6 | return n * fact(n-1) 7 | end 8 | end 9 | 10 | print("enter a number:") 11 | a = io.read("*number") -- read a number 12 | print(fact(a)) -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/saveall_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/theme-quietlight/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-quietlight", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Quiet Light", 10 | "uiTheme": "vs", 11 | "path": "./themes/QuietLight.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/close-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/remove-focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/remove.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stackframe-and-breakpoint-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/feedback/browser/media/close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-warning.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/make/test/colorize-fixtures/makefile: -------------------------------------------------------------------------------- 1 | all: hello 2 | 3 | hello: main.o factorial.o hello.o 4 | g++ main.o factorial.o hello.o -o hello 5 | 6 | main.o: main.cpp 7 | g++ -c main.cpp 8 | 9 | factorial.o: factorial.cpp 10 | g++ -c factorial.cpp 11 | 12 | hello.o: hello.cpp 13 | g++ -c hello.cpp 14 | 15 | clean: 16 | rm *o hello -------------------------------------------------------------------------------- /extensions/theme-kimbie-dark/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-kimbie-dark", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Kimbie Dark", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/Kimbie_dark.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/vs/base/browser/ui/toolbar/ellipsis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/next.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/close-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/remove-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/feedback/browser/media/close-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/action-remove.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/next-inverse.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/action-close-focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/action-query-clear.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/action-remove-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/action-remove-focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | environment: 2 | ATOM_SHELL_INTERNAL_RUN_AS_NODE: 1 3 | 4 | install: 5 | - ps: Install-Product node 5.10.1 x64 6 | - npm install -g gulp mocha 7 | 8 | build_script: 9 | - .\scripts\npm.bat install --force 10 | - gulp electron 11 | - gulp compile 12 | 13 | test_script: 14 | - .\scripts\test.bat 15 | - .\scripts\test-integration.bat 16 | -------------------------------------------------------------------------------- /extensions/go/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "language-go", 4 | "version": "0.39.0", 5 | "license": "MIT", 6 | "repositoryURL": "https://github.com/atom/language-go", 7 | "description": "The file syntaxes/go.json was derived from the Atom package https://atom.io/packages/language-go." 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/json/client/src/typings/vscode-extension-telemetry.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vscode-extension-telemetry' { 2 | export default class TelemetryReporter { 3 | constructor(extensionId: string,extensionVersion: string, key: string); 4 | sendTelemetryEvent(eventName: string, properties?: { [key: string]: string }, measures?: { [key: string]: number }): void; 5 | } 6 | } -------------------------------------------------------------------------------- /extensions/theme-solarized-light/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-solarized-light", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Solarized Light", 10 | "uiTheme": "vs", 11 | "path": "./themes/Solarized-light.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /extensions/typescript/src/typings/vscode-extension-telemetry.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vscode-extension-telemetry' { 2 | export default class TelemetryReporter { 3 | constructor(extensionId: string,extensionVersion: string, key: string); 4 | sendTelemetryEvent(eventName: string, properties?: { [key: string]: string }, measures?: { [key: string]: number }): void; 5 | } 6 | } -------------------------------------------------------------------------------- /src/vs/base/browser/ui/toolbar/ellipsis-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/files-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/action-query-clear-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/theme-monokai-dimmed/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-monokai-dimmed", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Monokai Dimmed", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/dimmed-monokai.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /extensions/theme-solarized-dark/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-solarized-dark", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Solarized Dark", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/Solarized-dark.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/current-and-breakpoint-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/ellipsis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/previous.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/continue.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /extensions/rust/test/colorize-fixtures/test.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | 3 | fn main() { 4 | println!("Guess the number!"); 5 | 6 | println!("Please input your guess."); 7 | 8 | let mut guess = String::new(); 9 | 10 | io::stdin().read_line(&mut guess) 11 | .ok() 12 | .expect("Failed to read line"); 13 | 14 | println!("You guessed: {}", guess); 15 | } -------------------------------------------------------------------------------- /src/vs/css.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | -------------------------------------------------------------------------------- /src/vs/editor/contrib/find/browser/images/previous-inverse.svg: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/remove-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/closeall.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/ellipsis-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/continue-inverse.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/stackframe-and-breakpoint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/closeall_inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/branch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/theme-tomorrow-night-blue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "theme-tomorrow-night-blue", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "themes": [ 8 | { 9 | "label": "Tomorrow Night Blue", 10 | "uiTheme": "vs-dark", 11 | "path": "./themes/Tomorrow-Night-Blue.tmTheme" 12 | } 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /scripts/npm.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | setlocal 3 | 4 | set npm_config_disturl="https://atom.io/download/atom-shell" 5 | for /f "tokens=2 delims=:, " %%a in ('findstr /R /C:"\"electronVersion\":.*" %~dp0..\package.json') do set npm_config_target=%%~a 6 | set npm_config_arch="ia32" 7 | set npm_config_runtime="electron" 8 | set HOME=~\.electron-gyp 9 | 10 | npm %* 11 | 12 | endlocal 13 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/remove-all-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/tasks/electron-browser/media/status-error.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/r/r.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""] 15 | ], 16 | "surroundingPairs": [ 17 | ["{", "}"], 18 | ["[", "]"], 19 | ["(", ")"], 20 | ["\"", "\""] 21 | ] 22 | } -------------------------------------------------------------------------------- /product.json: -------------------------------------------------------------------------------- 1 | { 2 | "nameShort": "Code - OSS", 3 | "nameLong": "Code - OSS", 4 | "applicationName": "code-oss", 5 | "dataFolderName": ".vscode-oss", 6 | "win32MutexName": "vscodeoss", 7 | "licenseUrl": "https://github.com/Microsoft/vscode/blob/master/LICENSE.txt", 8 | "darwinBundleIdentifier": "com.visualstudio.code.oss", 9 | "welcomePage": "https://go.microsoft.com/fwlink/?LinkId=723048" 10 | } -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "amd", 4 | "noImplicitAny": false, 5 | "removeComments": false, 6 | "preserveConstEnums": true, 7 | "target": "es5", 8 | "sourceMap": false, 9 | "experimentalDecorators": true 10 | }, 11 | "exclude": [ 12 | "vs/languages/typescript/common/lib/lib.es6.d.ts", 13 | "vs/languages/typescript/common/lib/lib.d.ts" 14 | ] 15 | } -------------------------------------------------------------------------------- /extensions/bat/bat.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "REM" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""] 15 | ], 16 | "surroundingPairs": [ 17 | ["{", "}"], 18 | ["[", "]"], 19 | ["(", ")"], 20 | ["\"", "\""] 21 | ] 22 | } -------------------------------------------------------------------------------- /extensions/theme-abyss/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-monokai/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-red/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/debug/browser/media/current-and-breakpoint.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/clojure/clojure.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": ";" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""] 15 | ], 16 | "surroundingPairs": [ 17 | ["{", "}"], 18 | ["[", "]"], 19 | ["(", ")"], 20 | ["\"", "\""] 21 | ] 22 | } -------------------------------------------------------------------------------- /extensions/theme-kimbie-dark/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-quietlight/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/fsharp/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "ionide/ionide-fsharp", 4 | "version": "0.0.0", 5 | "license": "MIT", 6 | "repositoryURL": "https://github.com/ionide/ionide-fsharp", 7 | "description": "The file syntaxes/fsharp.json was included from https://github.com/ionide/ionide-fsharp/blob/develop/release/grammars/fsharp.json." 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-monokai-dimmed/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-solarized-dark/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/theme-solarized-light/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-info-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-info-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/theme-tomorrow-night-blue/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "Colorsublime-Themes", 5 | "version": "0.1.0", 6 | "repositoryURL": "https://github.com/Colorsublime/Colorsublime-Themes", 7 | "description": "The themes in this folders are copied from colorsublime.com. <<>>" 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/rust/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "language-rust", 5 | "version": "0.4.4", 6 | "license": "MIT", 7 | "repositoryURL": "https://github.com/zargony/atom-language-rust", 8 | "description": "The files syntaxes/rust.json and snippets/rust.json were derived from the Atom package https://atom.io/packages/language-rust." 9 | }] 10 | -------------------------------------------------------------------------------- /extensions/shaderlab/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | 3 | [{ 4 | "name": "unity-shader-files", 5 | "version": "0.1.0", 6 | "license": "MIT", 7 | "repositoryURL": "https://github.com/nashella/unity-shader-files", 8 | "description": "The file syntaxes/shaderlab.json was derived from the Atom package https://github.com/nashella/unity-shader-files." 9 | }] 10 | -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | require('./bootstrap-amd').bootstrap('vs/code/node/cli'); -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-error-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-error-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/vb/vb.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "'" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"], 9 | ["<", ">"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""] 16 | ], 17 | "surroundingPairs": [ 18 | ["{", "}"], 19 | ["[", "]"], 20 | ["(", ")"], 21 | ["\"", "\""], 22 | ["<", ">"] 23 | ] 24 | } -------------------------------------------------------------------------------- /extensions/yaml/yaml.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""], 15 | ["'", "'"] 16 | ], 17 | "surroundingPairs": [ 18 | ["{", "}"], 19 | ["[", "]"], 20 | ["(", ")"], 21 | ["\"", "\""], 22 | ["'", "'"] 23 | ] 24 | } -------------------------------------------------------------------------------- /src/vs/workbench/browser/parts/editor/media/forward-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/shaderlab/test/colorize-fixtures/test.shader: -------------------------------------------------------------------------------- 1 | Shader "Example/Diffuse Simple" { 2 | SubShader { 3 | Tags { "RenderType" = "Opaque" } 4 | CGPROGRAM 5 | #pragma surface surf Lambert 6 | struct Input { 7 | float4 color : COLOR; 8 | }; 9 | void surf (Input IN, inout SurfaceOutput o) { 10 | o.Albedo = 1; 11 | } 12 | ENDCG 13 | } 14 | Fallback "Diffuse" 15 | } -------------------------------------------------------------------------------- /extensions/docker/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: 2 | [{ 3 | "name": "language-docker", 4 | "version": "0.0.0", 5 | "license": "Apache2", 6 | "repositoryURL": "https://github.com/docker/docker", 7 | "description": "The file syntaxes/Dockerfile.tmLanguage was included from https://github.com/docker/docker/blob/master/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage." 8 | }] 9 | -------------------------------------------------------------------------------- /extensions/docker/dockerfile.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""], 15 | ["'", "'"] 16 | ], 17 | "surroundingPairs": [ 18 | ["{", "}"], 19 | ["[", "]"], 20 | ["(", ")"], 21 | ["\"", "\""], 22 | ["'", "'"] 23 | ] 24 | } -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/far.js: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | function farboo() { 7 | return 42; 8 | } -------------------------------------------------------------------------------- /src/vs/languages/typescript/common/lib/lib-es6-ts.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | export declare var contents: string; -------------------------------------------------------------------------------- /src/vs/languages/typescript/common/lib/lib-ts.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | export declare var contents: string; -------------------------------------------------------------------------------- /extensions/node-debug/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // These dependencies come in at build time 2 | 3 | [{ 4 | "name": "source-map", 5 | "repositoryURL": "https://github.com/mozilla/source-map", 6 | "version": "0.4.4", 7 | "license": "BSD-3-Clause", 8 | "isProd": true 9 | }, 10 | { 11 | "name": "amdefine", 12 | "repositoryURL": "https://github.com/jrburke/amdefine", 13 | "version": "1.0.0", 14 | "license": "BSD-3-Clause and MIT", 15 | "isProd": true 16 | }] -------------------------------------------------------------------------------- /extensions/shaderlab/shaderlab.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""] 16 | ], 17 | "surroundingPairs": [ 18 | ["{", "}"], 19 | ["[", "]"], 20 | ["(", ")"], 21 | ["\"", "\""] 22 | ] 23 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/defineKeybinding/browser/status-error.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/media/status-error.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/FileUpload.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /src/vs/workbench/parts/quickopen/browser/media/status-error.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/go/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "go", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "go", 9 | "extensions": [ ".go" ], 10 | "aliases": [ "Go" ], 11 | "configuration": "./go.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "go", 15 | "scopeName": "source.go", 16 | "path": "./syntaxes/go.json" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /extensions/typescript/src/typings/collections.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | interface Map { 7 | [key: string]: V; 8 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/quickOpen/browser/gotoLine.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | .quick-open-widget { 7 | font-size: 13px; 8 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/snippet/browser/snippet.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | 'use strict'; 7 | 8 | import 'vs/css!./snippet'; -------------------------------------------------------------------------------- /i18n/esn/src/vs/code/node/cliProcessMain.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/code/node/cliProcessMain.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/FileUpload_inverse.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /extensions/php/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Launch Extension", 6 | "type": "extensionHost", 7 | "request": "launch", 8 | "runtimeExecutable": "${execPath}", 9 | "args": [ 10 | "--extensionDevelopmentPath=${workspaceRoot}" 11 | ], 12 | "stopOnEntry": false, 13 | "sourceMaps": true, 14 | "outDir": "${workspaceRoot}/out", 15 | "preLaunchTask": "npm" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /extensions/rust/rust.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""] 16 | ], 17 | "surroundingPairs": [ 18 | ["{", "}"], 19 | ["[", "]"], 20 | ["(", ")"], 21 | ["\"", "\""], 22 | ["'", "'"] 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /extensions/sql/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sql", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "sql", 9 | "extensions": [ ".sql" ], 10 | "aliases": [ "SQL" ], 11 | "configuration": "./sql.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "sql", 15 | "scopeName": "source.sql", 16 | "path": "./syntaxes/SQL.plist" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/OpenEditor.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /extensions/ini/ini.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#", 4 | "blockComment": [ "#", " " ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /src/vs/languages/lib/common/OSSREADME.json: -------------------------------------------------------------------------------- 1 | // June 2012 2 | // ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: THEY ARE CLEARED ONLY FOR LIMITED USE BY MONACO FOR THE MONACO PRODUCT. DO NOT USE OR SHARE THIS CODE WITHOUT APPROVAL PURSUANT TO THE MICROSOFT OPEN SOURCE SOFTWARE APPROVAL POLICY.APPROVAL 3 | 4 | [{ 5 | "name": "js-beautify", 6 | "version": "1.6.2", 7 | "license": "MIT", 8 | "repositoryURL": "https://github.com/beautify-web/js-beautify" 9 | }] -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/ViewSource.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /src/vs/workbench/parts/themes/test/electron-browser/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | const webdriver = require('selenium-webdriver'); 2 | 3 | function mergeObjects(target) { 4 | var sources = []; 5 | for (var _i = 1; _i < arguments.length; _i++) { 6 | sources[_i - 1] = arguments[_i]; 7 | } 8 | sources.forEach(function (source) { 9 | for (var key in source) { 10 | target[key] = source[key]; 11 | } 12 | }); 13 | return target; 14 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Tab indentation 7 | [*] 8 | indent_style = tab 9 | indent_size = 4 10 | trim_trailing_whitespace = true 11 | 12 | # The indent size used in the `package.json` file cannot be changed 13 | # https://github.com/npm/npm/pull/3180#issuecomment-16336516 14 | [{.travis.yml,npm-shrinkwrap.json,package.json}] 15 | indent_style = space 16 | indent_size = 2 17 | -------------------------------------------------------------------------------- /extensions/cpp/cpp.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": ["/*", "*/"] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/lua/lua.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "--", 4 | "blockComment": [ "--[[", "]]" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/lua/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lua", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "lua", 9 | "extensions": [ ".lua" ], 10 | "aliases": [ "Lua", "lua" ], 11 | "configuration": "./lua.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "lua", 15 | "scopeName": "source.lua", 16 | "path": "./syntaxes/Lua.plist" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /extensions/perl/perl.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""], 15 | ["'", "'"], 16 | ["`", "`"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"], 24 | ["`", "`"] 25 | ] 26 | } -------------------------------------------------------------------------------- /extensions/perl/perl6.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""], 15 | ["'", "'"], 16 | ["`", "`"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"], 24 | ["`", "`"] 25 | ] 26 | } -------------------------------------------------------------------------------- /src/typings/graceful-fs.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | declare module 'graceful-fs' { 7 | export function gracefulify(fsModule: any): void; 8 | } -------------------------------------------------------------------------------- /src/vs/platform/contextview/browser/contextMenuHandler.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | .context-view .monaco-menu { 7 | min-width: 130px; 8 | } 9 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/AddFile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/AddFile_inverse.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/AddFolder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/undo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/fsharp/fsharp.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "(*", "*)" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/groovy/groovy.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/ruby/ruby.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#", 4 | "blockComment": [ "=begin", "=end" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/editor/common/modes/supports/suggestSupport.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/esn/src/vs/workbench/parts/debug/browser/debugActionItems.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/fra/src/vs/editor/common/modes/supports/suggestSupport.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/fra/src/vs/workbench/parts/debug/browser/debugActionItems.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/editor/common/modes/supports/suggestSupport.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/workbench/parts/debug/browser/debugActionItems.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /src/vs/languages/css/common/services/browsers.d.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | export declare var data: any; 7 | export declare var descriptions: any; -------------------------------------------------------------------------------- /src/vs/languages/razor/common/razorTokenTypes.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 'use strict'; 6 | 7 | export const EMBED_CS = 'support.function.cshtml'; 8 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/undo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/undo-focus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/less/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "less", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "less", 9 | "aliases": ["Less", "less"], 10 | "extensions": [".less"], 11 | "mimetypes": ["text/x-less", "text/less"] 12 | }], 13 | "grammars": [{ 14 | "language": "less", 15 | "scopeName": "source.css.less", 16 | "path": "./syntaxes/LESS.tmLanguage" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "새 창" 8 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/zoneWidget/browser/media/close.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/errorList/browser/errorListConstants.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | export const ERROR_LIST_PANEL_ID = 'workbench.panel.errorList'; 7 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/undo-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/media/undo-inverse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/java/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "java", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "java", 9 | "extensions": [ ".java", ".jav" ], 10 | "aliases": [ "Java", "java" ], 11 | "configuration": "./java.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "java", 15 | "scopeName": "source.java", 16 | "path": "./syntaxes/Java.plist" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /extensions/objective-c/objective-c.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/shellscript/shellscript.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#" 4 | }, 5 | "brackets": [ 6 | ["{", "}"], 7 | ["[", "]"], 8 | ["(", ")"] 9 | ], 10 | "autoClosingPairs": [ 11 | ["{", "}"], 12 | ["[", "]"], 13 | ["(", ")"], 14 | ["\"", "\""], 15 | ["'", "'"], 16 | ["`", "`"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"], 24 | ["`", "`"] 25 | ] 26 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "更多" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "在 Zip 中找不到 {0}。" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "新建窗口" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "其他" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "在 ZIP 中找不到 {0}。" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "開新視窗" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/esn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "Más" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/esn/src/vs/platform/extensionManagement/common/extensionManagement.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/fra/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "Plus" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/fra/src/vs/platform/extensionManagement/common/extensionManagement.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "Altro" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/platform/extensionManagement/common/extensionManagement.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/jpn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "その他" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "新しいウィンドウ" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "자세히" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/kor/src/vs/platform/extensionManagement/common/extensionManagement.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/kor/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "새 창" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/base/browser/ui/toolbar/toolbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "more": "Еще" 8 | } -------------------------------------------------------------------------------- /resources/win32/bin/code.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Copyright (c) Microsoft Corporation. All rights reserved. 4 | # Licensed under the MIT License. See License.txt in the project root for license information. 5 | 6 | NAME="@@NAME@@" 7 | VSCODE_PATH="$(dirname "$(dirname "$(realpath "$0")")")" 8 | ELECTRON="$VSCODE_PATH/$NAME.exe" 9 | CLI="$VSCODE_PATH/resources/app/out/cli.js" 10 | ELECTRON_NO_ATTACH_CONSOLE=1 ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@" 11 | exit $? 12 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/files/browser/media/AddFolder_inverse.svg: -------------------------------------------------------------------------------- 1 | 3 | ]> -------------------------------------------------------------------------------- /src/vs/workbench/workbench.main.nls.js: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | // NOTE: THIS FILE WILL BE OVERWRITTEN DURING BUILD TIME, DO NOT EDIT 7 | 8 | define([], {}); -------------------------------------------------------------------------------- /extensions/coffeescript/coffeescript.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "#", 4 | "blockComment": [ "###", "###" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"] 24 | ] 25 | } -------------------------------------------------------------------------------- /extensions/jade/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jade", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "jade", 9 | "extensions": [ ".jade", ".pug" ], 10 | "aliases": [ "Jade", "jade" ], 11 | "configuration": "./jade.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "jade", 15 | "scopeName": "text.jade", 16 | "path": "./syntaxes/Jade.tmLanguage" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /extensions/java/java.configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": { 3 | "lineComment": "//", 4 | "blockComment": [ "/*", "*/" ] 5 | }, 6 | "brackets": [ 7 | ["{", "}"], 8 | ["[", "]"], 9 | ["(", ")"] 10 | ], 11 | "autoClosingPairs": [ 12 | ["{", "}"], 13 | ["[", "]"], 14 | ["(", ")"], 15 | ["\"", "\""], 16 | ["'", "'"] 17 | ], 18 | "surroundingPairs": [ 19 | ["{", "}"], 20 | ["[", "]"], 21 | ["(", ")"], 22 | ["\"", "\""], 23 | ["'", "'"], 24 | ["<", ">"] 25 | ] 26 | } -------------------------------------------------------------------------------- /extensions/r/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "r", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "r", 9 | "extensions": [ ".r", ".rhistory", ".rprofile", ".rt" ], 10 | "aliases": [ "R", "r" ], 11 | "configuration": "./r.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "r", 15 | "scopeName": "source.r", 16 | "path": "./syntaxes/R.plist" 17 | }] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /i18n/chs/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (已再次发生)" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "新建窗口" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (再次出現)" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/cht/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "開新視窗" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Neues Fenster" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/esn/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nueva ventana" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/jpn/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (再発)" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "新しいウィンドウ" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0}(다시 발생함)" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "zip 파일 내에 {0}이(가) 없습니다." 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referencesController.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | {} -------------------------------------------------------------------------------- /i18n/rus/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Новое окно" 8 | } -------------------------------------------------------------------------------- /src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | .monaco-editor .contentWidgets { 6 | position: absolute; 7 | top: 0; 8 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/zoneWidget/browser/media/close-inverse.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/git/browser/views/disabled/disabledView.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | .git-viewlet > .disabled-view { 7 | padding: 0 20px 0 20px; 8 | } 9 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "no-unused-expression": true, 4 | "no-unreachable": true, 5 | "no-duplicate-variable": true, 6 | "no-duplicate-key": true, 7 | "no-unused-variable": true, 8 | "curly": true, 9 | "class-name": true, 10 | "semicolon": true, 11 | "triple-equals": true, 12 | "no-unexternalized-strings": [ 13 | true, 14 | { 15 | "signatures": ["localize", "nls.localize"], 16 | "keyIndex": 0, 17 | "messageIndex": 1 18 | } 19 | ] 20 | } 21 | } -------------------------------------------------------------------------------- /extensions/bat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bat", 3 | "version": "0.1.0", 4 | "publisher": "vscode", 5 | "engines": { "vscode": "*" }, 6 | "contributes": { 7 | "languages": [{ 8 | "id": "bat", 9 | "extensions": [ ".bat", ".cmd"], 10 | "aliases": [ "Batch", "bat" ], 11 | "configuration": "./bat.configuration.json" 12 | }], 13 | "grammars": [{ 14 | "language": "bat", 15 | "scopeName": "source.dosbatch", 16 | "path": "./syntaxes/Batch File.tmLanguage" 17 | }] 18 | } 19 | } -------------------------------------------------------------------------------- /extensions/cpp/test/colorize-fixtures/test.cpp: -------------------------------------------------------------------------------- 1 | // classes example 2 | #include 3 | using namespace std; 4 | 5 | class Rectangle { 6 | int width, height; 7 | public: 8 | void set_values (int,int); 9 | int area() {return width*height;} 10 | }; 11 | 12 | void Rectangle::set_values (int x, int y) { 13 | width = x; 14 | height = y; 15 | } 16 | 17 | int main () { 18 | Rectangle rect; 19 | rect.set_values (3,4); 20 | cout << "area: " << rect.area(); 21 | return 0; 22 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/contrib/hover/browser/hover.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "showHover": "显示悬停" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/contrib/rename/common/rename.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "no result": "无结果。" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "关闭" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/common/json.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "error.invalidNumberFormat": "數字格式無效" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/contrib/hover/browser/hover.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "showHover": "動態顯示" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/contrib/rename/common/rename.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "no result": "沒有結果。" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "關閉" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Neues Fenster" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nueva ventana" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "{0} introuvable dans le zip." 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nouvelle fenêtre" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/code/node/cliProcessMain.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "installing": "Installation..." 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/code/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nuova finestra" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "zip ファイルの中に {0} が見つかりません。" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/editor/contrib/hover/browser/hover.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "showHover": "ホバーの表示" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "閉じる" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/editor/contrib/hover/browser/hover.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "showHover": "가리키기 표시" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "닫기" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "{0} не найдено в ZIP-архиве." 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Новое окно" 8 | } -------------------------------------------------------------------------------- /src/vs/workbench/parts/tasks/electron-browser/media/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/workbench.main.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | /* NOTE: THIS FILE WILL BE OVERWRITTEN DURING BUILD TIME, DO NOT EDIT */ 7 | 8 | div.monaco.main.css { 9 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/common/modes/modesRegistry.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "plainText.alias": "纯文本" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/common/services/bulkEdit.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "conflict": "这些文件也已同时更改: {0}" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/contrib/rename/browser/rename.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "rename.label": "重命名符号" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/editor/contrib/rename/browser/rename2.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "rename.label": "重命名符号" 8 | } -------------------------------------------------------------------------------- /i18n/chs/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "GIT" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/base/node/processes.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "TaskRunner.UNC": "無法在 UNC 磁碟機上執行殼層命令。" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/common/modes/modesRegistry.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "plainText.alias": "純文字" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/common/services/bulkEdit.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "conflict": "這些檔案已同時變更: {0}" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/editor/contrib/rename/browser/rename2.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "rename.label": "重新命名符號" 8 | } -------------------------------------------------------------------------------- /i18n/cht/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "Git" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/base/node/zip.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "notFound": "{0} wurde im ZIP nicht gefunden." 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "Schließen" 8 | } -------------------------------------------------------------------------------- /i18n/deu/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "Git" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (ocurrió de nuevo)" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "Cerrar" 8 | } -------------------------------------------------------------------------------- /i18n/esn/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "GIT" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (s'est reproduit)" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "Fermer" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nouvelle fenêtre" 8 | } -------------------------------------------------------------------------------- /i18n/fra/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "Git" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (nuova occorrenza)" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "Chiudi" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/workbench/electron-main/main.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "newWindow": "Nuova finestra" 8 | } -------------------------------------------------------------------------------- /i18n/ita/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "GIT" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/editor/contrib/rename/common/rename.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "no result": "結果がありません。" 8 | } -------------------------------------------------------------------------------- /i18n/jpn/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "Git" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0}({1})" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/editor/common/modes/modesRegistry.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "plainText.alias": "일반 텍스트" 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/editor/contrib/rename/common/rename.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "no result": "결과가 없습니다." 8 | } -------------------------------------------------------------------------------- /i18n/kor/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "Git" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/base/browser/ui/actionbar/actionbar.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "titleLabel": "{0} ({1})" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/base/browser/ui/aria/aria.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "repeated": "{0} (произошло снова)" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/workbench/api/node/extHostMessageService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "close": "Закрыть" 8 | } -------------------------------------------------------------------------------- /i18n/rus/src/vs/workbench/parts/git/electron-main/askpassService.i18n.json: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | // Do not edit this file. It is machine generated. 6 | { 7 | "git": "GIT" 8 | } -------------------------------------------------------------------------------- /src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | .monaco-editor .overlayWidgets { 6 | position: absolute; 7 | top: 0; 8 | left:0; 9 | } -------------------------------------------------------------------------------- /src/vs/editor/contrib/clipboard/browser/clipboard.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | .monaco-menu .monaco-action-bar.vertical .action-label.hover { 7 | background-color: #EEE; 8 | } -------------------------------------------------------------------------------- /src/vs/workbench/common/panel.ts: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | import {IComposite} from 'vs/workbench/common/composite'; 7 | 8 | export interface IPanel extends IComposite { } 9 | -------------------------------------------------------------------------------- /src/vs/workbench/parts/search/browser/media/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.insertSpaces": false, 3 | "files.eol": "\n", 4 | "files.trimTrailingWhitespace": true, 5 | "files.exclude": { 6 | ".git": true, 7 | "**/.DS_Store": true 8 | }, 9 | "search.exclude": { 10 | "**/node_modules": true, 11 | "**/bower_components": true, 12 | ".build/**": true, 13 | "out*/**": true, 14 | "i18n/**": true, 15 | "extensions/**/out/**": true 16 | }, 17 | "tslint.enable": true, 18 | "tslint.rulesDirectory": "build/lib/tslint" 19 | } --------------------------------------------------------------------------------