如何在Ubuntu或Pop OS中添加右键单击“用代码打开”?

r7xajy2e  于 2023-08-03  发布在  其他
关注(0)|答案(2)|浏览(97)

在windows操作系统中,当我们安装VS-Code时,会向我们提供添加“使用代码打开”的选项。但我在Ubuntu或Pop-OS中找不到它!因此,我想知道,当我在文件夹中右键单击以在VS-Code中打开文件夹时,是否有任何方法可以添加“使用代码打开”?
虽然,我们可以使用一个终端打开目录在VS代码使用“代码”。但我正在寻找鼠标右键单击。

uplii1fm

uplii1fm1#

您可以在终端中运行此命令

wget -qO- https://raw.githubusercontent.com/cra0zy/code-nautilus/master/install.sh | bash

字符串
之后,你会看到右键单击“打开代码”!
在Ubuntu 20.04中完美运行

6kkfgxo0

6kkfgxo02#

您可以像这样在~/.local/share/applications/mimeapps.list中手动写下与vscode关联的MIME类型

[Added Associations]
text/html=code.desktop
text/css=code.desktop
text/javascript=code.desktop

字符串
假设在/usr/share/applications/中有一个正确的Desktop Entry
您也可以尝试此Nautilus扩展(如果您使用Nautilus
https://github.com/harry-cpp/code-nautilus
如果您使用bash,则将安装它

wget -qO- https://raw.githubusercontent.com/harry-cpp/code-nautilus/master/install.sh | bash

相关问题