我在 ubuntu 14.04 和 gedit 3.10 上,
在之前的帖子中,我问过为什么 zencoding 插件在我的 gedit 版本上不起作用。
但是现在我意识到从这个列表 3.8 ~ 3.10 zencoding 没有提供:https://wiki.gnome.org/Apps/Gedit/ThirdPartyPlugins-v3.8
而在 3.0 至 3.6 的列表中https://wiki.gnome.org/Apps/Gedit/ThirdPartyPlugins-v3.0
我如何降级我的 gedit 版本?
答案1
该make
命令在我的 Ubuntu Vivid 中失败。我怀疑这些库对于 Gedit 3.16 来说太新了。也许你对 Trusty 有好感。
从以下网址下载最新 3.6 版本这里
cd; wget http://ftp.gnome.org/pub/GNOME/sources/gedit/3.6/gedit-3.6.2.tar.xz
安装开发库
sudo apt-get build-dep gedit
提取档案
tar xf gedit-3.6.2.tar.xz
配置以
--prefix=/usr/local
保护您现有的安装cd gedit-3.6.2 ./configure --prefix=/usr/local
建造
make
如果前面的步骤没有错误,则通过
checkinstall
而不是使用 进行安装sudo make install
,checkinstall
它会为您创建并安装一个 deb 包sudu apt-get install checkinstall sudo checkinstall
创建桌面文件
nano ~/.local/share/applications/gedit36.desktop
添加以下行
[Desktop Entry] Name=Gedit GenericName=Text Editor X-GNOME-FullName= Comment= Exec=/usr/local/bin/gedit Icon=gedit Terminal=false Type=Application Categories=GNOME; StartupNotify=true X-Ubuntu-Gettext-Domain=gedit