如何从gedit在浏览器中打开链接?


10

我有一些包含一些链接/ URL的文本文件。当我单击(鼠标左键)链接时,我想用firefox或chrome打开链接/ URL。那可能吗?

到目前为止,我已经尝试通过复制文件来添加插件,/usr/share/gedit/plugins/但是在gedit的插件首选项中没有显示新插件。


2
快捷方式将很容易实现。特定于gedit的或一般的。可以吗?
Jacob Vlijm '16

Answers:


7

这可以通过漂亮的gedit插件来完成open-uri-context-menu。我已经在三个受支持的LTS版本上测试了此插件:

  1. Xenial Xerus LTS(gedit 3.18.3)
  2. 可信赖的Tahr LTS(gedit 3.10.4)
  3. 精确的穿山甲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随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

然后通过确保插件说明旁边有“ tick”或“ check”标记来激活插件,如以下屏幕截图所示:

在此处输入图片说明

现在,当你右键点击一个链接(当然不用gedit,你会看到下面的选项打开的文档中,你指定点击):

在此处输入图片说明

此处看到的两个插件选项是:

  1. 浏览到:在外部浏览器(例如Firefox)中打开链接
  2. 打开另一个gedit窗口中打开链接的内容

在我的每个Xenial,Trusty和Precise系统上都能很好地工作,并且也应该在您的系统上...

参考文献:


尽管这显然是在特定情况下的答案,但是您也可以使用用AutoKey github.com/autokey/autokey编写的宏来执行类似的操作。这需要更多的精力,但也可以与其他没有这种功能或插件的编辑器或程序一起使用。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.