editorconfig gedit
version 3.8 and above
这是 gedit 的 EditorConfig 插件。
点击此处下载最新版本
旧版本的 EditorConfig Gedit 插件可以作为存档文件从标签页面下载。
该插件也可以通过 Git 下载,如下所示:
git clone git://github.com/editorconfig/editorconfig-gedit.git
首先,确保您的计算机上安装了核心 EditorConfig Python Core 库。
接下来,通过执行install.sh
脚本安装与您的 Gedit 版本兼容的插件。 install.sh
脚本应该为您的 Gedit 版本安装适当的插件。如果这不起作用,可以使用以下说明手动安装插件。
安装插件后,必须在 Gedit 中启用它。要启用该插件,请导航至编辑->首选项->插件并检查 EditorConfig 插件。
要手动安装 gedit 3 插件,请执行以下复制命令:
cp -Lr editorconfig.plugin editorconfig_gedit3.py editorconfig_plugin ~/.local/share/gedit/plugins/
要手动安装 gedit 2 插件,请执行以下复制命令:
cp -Lr editorconfig.gedit-plugin editorconfig_gedit2.py editorconfig_plugin ~/.gnome2/gedit/plugins/
如果 gedit 抱怨加载程序,您可能需要将文件 editorconfig.plugin 中的“python3”更改为“python”。
EditorConfig Gedit 插件完全支持以下 EditorConfig 属性:
部分支持以下属性:
使用 Gedit 插件时, tab_width
不能设置为与indent_size
不同的值。当indent_style
为“tab”时,将使用 tab 进行缩进,使用tab_width
进行缩进大小,以保持制表符的正确宽度。当indent_style
设置为“space”时, tab_width
属性将被忽略,制表符始终设置为indent_size
的宽度。
目录editorconfig-core-py
是一个子树。使用更新它
git subtree pull --prefix editorconfig-core-py https://github.com/editorconfig/editorconfig-core-py master