- Visual Studio Code (Русский)
- Contents
- Установка
- Использование
- Конфигурация
- Встроенный терминал
- Внешний терминал
- Решение проблем
- Глобальное меню не работает в KDE Plasma
- Невозможно переместить объект в корзину
- Невозможно отладить C#
- Невозможно открыть .csproj с сервером OmniSharp, ошибка расположения Microsoft.Common.props
- OmniSharp не может обнаружить MSBuild
- «Повторить попытку в режиме Sudo» не работает
- remote-containers.openFolder не найдена
- VS Live Share missing API
- Install code on Manjaro Linux
- Code editing. Redefined.
- Details for code
- Enable snaps on Manjaro Linux and install code
- Enable snapd
- Install code
- Как установить Visual Studio Code на Manjaro 20
- Как установить Visual Studio Code на Manjaro 20
- Установка Visual Studio Code на Manjaro 20 Nibia
- Шаг 1. Перед тем, как запустить руководство, приведенное ниже, убедитесь, что наша система обновлена:
- Шаг 2. Установка кода Visual Studio на Manjaro 20.
- Шаг 3. Доступ к коду Visual Studio на Manjaro.
- Visual Studio Code
- Contents
- Installation
- Usage
- Configuration
- Integrated Terminal
- External terminal
- Running natively under Wayland
- Troubleshooting
- Global menu not working in KDE/Plasma
- Unable to move items to trash
- Unable to debug C#
- Unable to open .csproj with OmniSharp server, invalid Microsoft.Common.props location
- Error from OmniSharp that MSBuild cannot be located
- Saving with «Retry as Sudo» does not work
- Keyboard variants or keymappings do not map
- Command «. » not found
- VS Live Share missing API
- Command ‘remote-containers.openFolder’ not found
- Command ‘GitHub Pull Requests: Configure Remotes. ‘ resulted in an error (command ‘pr.configureRemotes’ not found)
- Git: ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory
- No extensions found
- Cutoff characters in integrated Terminal
- Blurry text under Wayland
- No such interface“org.freedesktop.Secret.Collection”
- Authentification with Github failed while using VSCodium
Visual Studio Code (Русский)
Перевод этой статьи или раздела не отражает оригинальное содержание.
Visual Studio Code — кроссплатформенный, бесплатный и свободный (используется лицензия MIT) текстовый редактор, разрабатываемый Microsoft. Он использует фреймворк Electron и поддерживает расширения, список которых можно найти на странице магазина расширений или в самом редакторе. Несмотря на то, что проект является открытым, Microsoft также распространяет проприетарные сборки с пользовательским соглашением (EULA), см. объяснение в репозитории GitHub.
Contents
Установка
Редактор VSCode доступен для установки с помощью следующих пакетов:
- code — свободная сборка
- visual-studio-code-binAUR — проприетарная сборка Microsoft
- visual-studio-code-insiders-binAUR — проприетарная сборка Microsoft с ежедневными обновлениями
- code-gitAUR — свободная сборка (нестабильная версия для разработчиков)
- vscodium-binAUR — свободная сборка со стандартной конфигурацией, поддерживаемой сообществом
Утилита ptvsd (Python Tools for Visual Studio Debug) предоставляется пакетом python-ptvsd AUR .
Использование
Запустите командой code ( code-git для пакета code-git AUR ).
Если требуется запустить несколько экземпляров приложения, добавьте ключ -n без параметров.
Конфигурация
Пакет code хранит конфигурацию в файле
Пакет visual-studio-code-bin AUR хранит конфигурацию в файле
Встроенный терминал
Меню Вид > Терминал или Ctrl + ` открывает встроенный терминал. По умолчанию используется Bash без каких-либо параметров, но настройки, указанные далее позволяют изменить данное взаимодействие.
- terminal.integrated.shell.linux устанавливает терминал по умолчанию
- terminal.integrated.shellArgs.linux устанавливает передаваемые в терминал аргументы
Например, установить по умолчанию fish с параметрами.
Вы можете столкнуться со странными запросами при установке встроенного терминала, удалением некоторых строк, поэтому рекомендуется либо не использовать аргументы, либо использовать внешний терминал.
Внешний терминал
Если вы используете Terminator как терминал по умолчанию, у вас могут возникнуть проблемы в VS Code с ошибками вида: Unable to launch debugger worker process (vsdbg) through the terminal. spawn truecolor ENOENT , поэтому следует сменить терминал на другой, например, gnome-terminal .
Строка настроек «terminal.external.linuxExec»: «имя терминала» установит терминал на требуемый. Пример установки gnome-terminal :
Решение проблем
Глобальное меню не работает в KDE Plasma
Visual Studio Code использует D-Bus для меню, поэтому для него следует установить пакет libdbusmenu-glib .
Невозможно переместить объект в корзину
По умолчанию все приложения, использующие Electron, используют gio (из пакета glib2 ) для удаления. Конфигурирование утилиты происходит через установку переменной окружения ELECTRON_TRASH .
Однако, в новых версиях Electron поддерживает и kioclient5 , и kioclient , и trash-cli , и gio (по умолчанию), и gvfs-trash (отмечен устаревшим). Смотрите также страницу environment-variables в GitHub репозитории Electron.
Невозможно отладить C#
Для отладки приложений на C# (платформа .NET) испольуется расширение OmniSharp, которое требует проприетарный компонент .NET Core Debugger (смотри пакеты в разделе установка). Смотри также объяснение в репозитории GitHub.
Если вы используете свободный пакет, отладка упадёт почти незаметно, лишь оставив в консоли сообщение:
Для отладки в свободном пакете можно использовать пакет netcoredbg AUR . Чтобы использовать его для отладки проектов, требуется в настройке проекта указать соответствующую конфигурацию, например:
Невозможно открыть .csproj с сервером OmniSharp, ошибка расположения Microsoft.Common.props
Требуется сменить путь к SDK. Вот, как выглядит файл до изменений.
Вот, как выглядит файл после изменения.
OmniSharp не может обнаружить MSBuild
На странице OmniSharp introduction в GitHub написано, что пользователям Arch Linux требуется установить mono-msbuild . Ошибка, которая появляется при отсутствии пакета:
Возможно, потребуется собрать пакет самостоятельно.
«Повторить попытку в режиме Sudo» не работает
К сожалению, пакет code не поддерживает эту функцию в полной мере, так как официально Microsoft не поддерживает пакет для Arch Linux. Смотри также FS#61516 или тикет на GitHub.
remote-containers.openFolder не найдена
Для решения проблемы требуется открыть VS Code со включённым API remote-containers (см. баг FS#63374)
VS Live Share missing API
Пакет code не имеет некоторых API, которые нужны для работы расширения Live Share. Вот ошибка, которая появляется при такой проблеме:
Следуя инструкции на Microsoft Docs, есть разные решения:
Источник
Install code
on Manjaro Linux
- Visual Studio Code (vscode) Publisher
Verified account
- Development
Code editing. Redefined.
Visual Studio Code is a new choice of tool that combines the simplicity of a code editor with what developers need for the core edit-build-debug cycle.
Details for code
Enable snaps on Manjaro Linux and install code
Snaps are applications packaged with all their dependencies to run on all popular Linux distributions from a single build. They update automatically and roll back gracefully.
Snaps are discoverable and installable from the Snap Store, an app store with an audience of millions.
Enable snapd
Snapd can be installed from Manjaro’s Add/Remove Software application (Pamac), found in the launch menu. From the application, search for snapd, select the result, and click Apply.
Alternatively, snapd can be installed from the command line:
Once installed, the systemd unit that manages the main snap communication socket needs to be enabled:
To enable classic snap support, enter the following to create a symbolic link between /var/lib/snapd/snap and /snap :
Either log out and back in again, or restart your system, to ensure snap’s paths are updated correctly.
Install code
To install code, simply use the following command:
Источник
Как установить Visual Studio Code на Manjaro 20
Как установить Visual Studio Code на Manjaro 20
В этом руководстве мы покажем вам, как установить Visual Studio Code на Manjaro 20. Для тех из вас, кто не знал, Visual Studio Code — это бесплатный кроссплатформенный редактор исходного кода, разработанный Microsoft для Windows, Linux и macOS. VS Code поставляется со встроенной поддержкой JavaScript, TypeScript и Node.js и имеет богатую экосистему расширений для других языков (таких как C ++, C #, Java, Python, PHP, Go) и среды выполнения (например, .NET и Единство). Вы можете легко установить расширения, чтобы добавить новые языки, темы, отладчики и подключиться к дополнительным сервисам.
В этой статье предполагается, что у вас есть хотя бы базовые знания Linux, вы знаете, как использовать оболочку, и, что наиболее важно, вы размещаете свой сайт на собственном VPS. Установка довольно проста и предполагает, что вы работаете с учетной записью root, в противном случае вам может потребоваться добавить ‘ sudo ‘ к командам для получения привилегий root. Я покажу вам пошаговую установку Visual Studio Code на Manjaro 20 ( Nibia ).
Установка Visual Studio Code на Manjaro 20 Nibia
Шаг 1. Перед тем, как запустить руководство, приведенное ниже, убедитесь, что наша система обновлена:
Шаг 2. Установка кода Visual Studio на Manjaro 20.
- Установите код Visual Studio из репозитория AUR
Теперь мы клонируем репозиторий AUR Visual Studio Code с помощью следующей команды:
- Установите код Visual Studio с помощью Snap
Выполните следующую команду, чтобы установить пакеты Snap:
Чтобы установить Visual Studio Code, просто используйте следующую команду:
Шаг 3. Доступ к коду Visual Studio на Manjaro.
После успешной установки VS Code в вашей системе Manjaro теперь вы можете перейти в меню приложения и найти там код Visual Studio. Вы должны увидеть значок кода Visual Studio, как показано на снимке экрана ниже:
Поздравляю! Вы успешно установили Visual Studio Code . Благодарим за использование этого руководства для установки последней версии Visual Studio Code в системе Manjaro. Для получения дополнительной помощи или полезной информации мы рекомендуем вам посетить официальный веб-сайт Visual Studio Code .
Источник
Visual Studio Code
Visual Studio Code is a cross-platform proprietary text editor (licensed under an End-User License Agreement) developed by Microsoft, built on top of a free and open-source project named Codium (licensed under the MIT License), written in JavaScript and TypeScript – the relationship between Codium and Visual Studio Code is more or less the same as the one between Chromium and Google Chrome; for an explanation of the mixed licensing, see this GitHub comment. Visual Studio Code is built on the Electron framework and is extensible using extensions, which can be browsed on the web or from within the text editor itself.
Contents
Installation
The following packages provide VSCode:
- code (open-source release)
- code-gitAUR (in-development open-source version)
- visual-studio-code-binAUR (Microsoft-branded release)
- visual-studio-code-insiders-binAUR (Microsoft-branded release, updated daily)
- vscodium-binAUR (community-driven fully open-source version of VSCode, with all Microsoft telemetry stripped out — latest release, binary package)
- vscodiumAUR (community-driven fully open-source version of VSCode, with all Microsoft telemetry stripped out — latest release, git build)
- vscodium-gitAUR (community-driven fully open-source version of VSCode, with all Microsoft telemetry stripped out — latest commit on branch master, git build)
The Microsoft ptvsd (Python Tools for Visual Studio Debug) server/module is available at python-ptvsd AUR .
Usage
Run code to start the application (or if you are using other releases, run code-git for code-git AUR or codium for vscodium-bin AUR / vscodium AUR / vscodium-git AUR ).
If for any reason you wish to launch multiple instances of Visual Studio Code, the -n flag can be used.
Configuration
code stores settings in
vscodium AUR and related packages store their settings in
When migrating from Code to Codium (or vice versa), the settings directory can be copied or moved, since they share most of their codebase, the settings are compatible.
Integrated Terminal
View > Integrated Terminal or Ctrl + ` opens up an integrated terminal. By default, Bash is used with no additional arguments, although this can be changed. terminal.integrated.shell.linux sets the default shell to be used and terminal.integrated.shellArgs.linux sets the arguments to be passed to the shell.
You might face weird prompts after setting the integrated shell arguments with external terminal, remove the line to solve the problem or use an external terminal.
External terminal
If you are using Terminator as default terminal for Arch and you have an error on Visual Studio Code: Unable to launch debugger worker process (vsdbg) through the terminal. spawn truecolor ENOENT , you can change the terminal that will be used by Visual Studio to another terminal (e.g. gnome-terminal ).
«terminal.external.linuxExec»: «Your alternative terminal» sets the default terminal to be used for exec debug.
Running natively under Wayland
If you are using a Wayland-based WM or DE, you can force Visual Studio Code to run natively under Wayland (instead of under XWayland) by adding command-line options —enable-features=UseOzonePlatform —ozone-platform=wayland . For example, you can try launching VSCode using
These options can be automatically applied every time Visual Studio Code is launched by adding them to the file $
Troubleshooting
Global menu not working in KDE/Plasma
Visual Studio Code uses DBus to pass the menu to Plasma, try installing libdbusmenu-glib .
Unable to move items to trash
By default, Electron apps use gio to delete files. kioclient5 is automatically selected instead if Plasma is detected. Different trash implementations can be used by setting the ELECTRON_TRASH environment variable.
For example, for deleting files using trash-cli :
At the time of writing, Electron supports kioclient5 , kioclient , trash-cli , gio (default) and gvfs-trash (deprecated). More info is available at this documentation page.
Unable to debug C#
If you want to debug C#.NET (using the OmniSharp extension) then you need to install the Microsoft branded release (from the AUR). This is apparently because the .NET Core debugger is only licensed to be used with official Microsoft products — see this github discussion.
When using the open-source package, debugging fails fairly quietly. The debug console will just show the initial message:
For debugging with the open-source package netcoredbg AUR can be used. To run it in VS Code, add this configuration to .NET Core launch configuration of the project:
Unable to open .csproj with OmniSharp server, invalid Microsoft.Common.props location
You have to switch from mono to proper SDK version props.
Modify import to look like this:
Error from OmniSharp that MSBuild cannot be located
It is noted in the OmniSharp introduction that Arch Linux users should install the mono-msbuild package. Without it, you might get an error like:
You might be able to build anyway (possibly depending whether you have mono installed too).
Omnisharp ships with its own mono version, so, if it is unable to locate the installed one, if you want to tell omnisharp to look for a «global» mono installed in your machine, put this in your settings.json:
Saving with «Retry as Sudo» does not work
This feature does not work in the code package, because Microsoft does not support the way the Arch package is packaged (native instead of bundled Electron). See FS#61516 and the upstream bug report for more information.
The binary release visual-studio-code-bin AUR does not have this issue, and the feature works there.
Keyboard variants or keymappings do not map
Switching keyboard layouts under some Linux window managers does not result in a change in the low level X window APIs VS Code uses to read the current keyboard layout. This means that VS Code ends up sometimes reading one of the other configured keyboard layouts and not the current active one. PR welcome.
Per the wiki, there are two possible solutions:
- make sure setxkbmap -query returns as the first keyboard layout the one you want to work with in VS Code.
- use «keyboard.dispatch»: «keyCode» in your settings and restart VS Code. This will prevent VS Code from trying to determine your keyboard layout whatsoever.
Command «. » not found
In the official build of VS Code, a product.json file lists the extensions that are allowed to use certain proposed APIs accessed by extensions. However, the product.json is absent in the OSS build code . [1]
In the related issues below, some flags may be required to enable certain APIs. [2] You may either run code with these flags, or you can add the relevant entries to the extensionAllowedProposedApi section in the product.json file ( code installs this to /usr/lib/code/product.json ).
This can also be resolved by installing the code-features AUR package, which installs a pacman hook that patches the file on every package update. Alternatively, you may also consider installing the Microsoft branded packages: visual-studio-code-bin AUR , visual-studio-code-insiders-bin AUR .
VS Live Share missing API
Use either the solution above by editing the product.json , or open VS Code with:
Command ‘remote-containers.openFolder’ not found
Open VS Code enabling remote-containers API as commented in FS#63374:
Command ‘GitHub Pull Requests: Configure Remotes. ‘ resulted in an error (command ‘pr.configureRemotes’ not found)
Open VS Code with:
Git: ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory
This error is a result of an encrypted ssh-key, and can be solved by installing a dialogue provider like SSH keys#x11-ssh-askpass or the alternatives listed there like ksshaskpass for KDE.
One thing to note is that for e.g. ksshaskpass you would need to link it from /usr/lib/ssh/ssh-askpass to get VSCode to find it:
No extensions found
There exist several differences between «vscode» (open-source) and «Visual Studio Code» (Microsoft product based on vscode), see: Differences between the repository and Visual Studio Code. The usage of Microsoft marketplace for extensions is restricted to products of the Visual Studio Code’s family. Consequently, it cannot be used by vscode (see FS#67780). The code and vscodium-bin AUR / vscodium AUR / vscodium-git AUR packages are configured to use the Open VSX registry instead of the Microsoft one. This explains why some extensions are missing from the vscode explorer while they appear to be listed online.
The workaround is to either install the visual-studio-code-bin AUR package instead, manually download and install the .vsix file from the web marketplace page, or ask the maintainer to upload its extension to OpenVSX.
Technically, one could also edit the product.json as shown in this Github comment, but that would not comply with the Microsoft Marketplace Terms of Use. Additionally, the changes would be overwritten during package update. This can be overcome by installing code-marketplace AUR / vscodium-bin-marketplace AUR / vscodium-marketplace AUR package, which installs a pacman hook that patches the file on every package update.
Cutoff characters in integrated Terminal
Characters that are too wide can end up clipping. For example the italic bold text of Deno stack-traces.
This can be avoided by setting «terminal.integrated.rendererType» to «experimentalWebgl».
Blurry text under Wayland
Visual Studio Code defaults to run under XWayland, which may cause blurry text if you are using HiDPI screens. To fix this issue, try forcing Electron to run under Wayland—see #Running natively under Wayland.
No such interface“org.freedesktop.Secret.Collection”
Authentification with Github failed while using VSCodium
When connecting a Github account, change «vscodium» to «vscode» in the URL as seen in this comment. Then copy the identification token into VSCodium. Should it still fail, install a keyring like gnome-keyring or create a new keyring as mentioned here in the Visual Studio Code docs and here on Github.
Источник