środa, 7 listopada 2018

Visual Studio Code - Cheat Sheet

Visual Studio Code – darmowy, desktopowy edytor programistycznych kodów źródłowych z kolorowaniem składni dla wielu języków, stworzony przez Microsoft oraz dystrybuowany na licencji MIT o otwartym kodzie źródłowym.

Oprogramowanie posiada wsparcie dla debugowania kodu, zarządzania wersjami kodu źródłowego za pośrednictwem systemu kontroli wersji Git, automatycznego uzupełniania kodu IntelliSense, zarządzania wycinkami kodu oraz jego refaktoryzacji.


Główna strona:
https://code.visualstudio.com/


Źródła Visual Studio Code:
https://github.com/Microsoft/vscode



Dokumentacja:
https://code.visualstudio.com/docs

IntelliSense
https://code.visualstudio.com/docs/editor/intellisense

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript).
If you continue typing characters, the list of members (variables, methods, etc.) is filtered to include only members containing your typed characters. Pressing Tab or Enter will insert the selected member.

VS Code IntelliSense offers different types of completions, including language server suggestions, snippets, and simple word based textual completions.



Visual Studio Code keyboard shortcuts for windows
Visual Studio Code provides a rich and easy keyboard shortcuts editing experience using Keyboard Shortcuts editor.
You can open this editor by going to the menu under File > Preferences > Keyboard Shortcuts.






Extensions
https://marketplace.visualstudio.com/VSCode

Export VS Code extension list

Machine A:
In VSCode Powershell terminal :
code --list-extensions > extensions.list

Machine B:
  1. Copy extension.list to the machine B
  2. In VSCode Powershell terminal :
cat extensions.list |% { code --install-extension $_}



Materiały:

Brak komentarzy:

Prześlij komentarz