我有一些包含一些链接/url 的文本文件。我想在单击(鼠标左键单击)链接时在 Firefox 或 Chrome 中打开链接/url。可以吗?
到目前为止,我已经尝试通过复制文件来添加插件,/usr/share/gedit/plugins/
但在 gedit 中的插件首选项中没有显示新的插件。
答案1
这可以通过好用的 gedit 插件来实现open-uri-context-menu
。我已经在三个受支持的 LTS 版本上测试了这个插件:
- Xenial Xerus LTS (gedit 3.18.3)
- 值得信赖的 Tahr LTS (gedit 3.10.4)
- Precise Pangolin LTS (gedit 3.4.1)
安装说明稍微不一样每个 LTS 版本都需要不同的插件版本。选择合适的版本你的从下面给出的三个设置中:
1.安装:Xenial Xerus
Xenial 附带 gedit 3.18.3 并安装版本 3插件的下载和安装如下:
mkdir ~/Desktop/open_uri && cd ~/Desktop/open_uri
wget https://github.com/jpfleury/open-uri-context-menu/archive/master.zip
mkdir -pv ~/.local/share/gedit/plugins/
unzip -j master.zip 'open-uri-context-menu-master/open-uri*' -d ~/.local/share/gedit/plugins/
2. 安装:Trusty Tahr
Trusty 附带 gedit 3.10.4 并安装版本 2插件的下载和安装如下:
mkdir ~/Desktop/open_uri && cd ~/Desktop/open_uri
wget https://github.com/jpfleury/open-uri-context-menu/archive/v2.zip
mkdir -pv ~/.local/share/gedit/plugins/
unzip -j v2.zip 'open-uri-context-menu-2/open-uri*' -d ~/.local/share/gedit/plugins/
3. 安装:Precise Pangolin
Precise 附带 gedit 3.4.1 并安装版本 1插件的下载和安装如下:
mkdir ~/Desktop/open_uri && cd ~/Desktop/open_uri
wget https://github.com/jpfleury/open-uri-context-menu/archive/v1.zip
mkdir -pv ~/.local/share/gedit/plugins/
unzip -j v1.zip 'open-uri-context-menu-1/open-uri*' -d ~/.local/share/gedit/plugins/
4. Xenial、Trusty 和 Precise 的设置:
然后在任何 LTS 版本上打开 gedit 并按照以下步骤导航到“插件”屏幕:
Edit > Preferences > Plugins
进而启用确保插件描述旁边有一个“勾选”或“复选”标记,如下面的屏幕截图所示:
现在当你正确的点击链接(当然不是左边在使用 gedit 打开的文档中单击(按您指定的方式),您将看到以下选项:
这里看到的两个插件选项是:
- 浏览至:在外部的浏览器,例如 Firefox
- 打开:打开链接内容之内另一个 gedit 窗口
在我的每个 Xenial、Trusty 和 Precise 系统上都运行良好,并且应该也在你的系统上运行良好......
参考: