diff options
author | John Church <[email protected]> | 2015-11-12 10:45:00 +0000 |
---|---|---|
committer | John Church <[email protected]> | 2015-11-12 11:53:01 +0000 |
commit | efc6229fce6eecf0c35e620bb5adf4b912202c56 (patch) | |
tree | a14114802cb5d7b17d6ba2c07ba1f716651244c7 /plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in | |
parent | e357519c943f8bacaf8d6b4737530ba09d79959c (diff) | |
download | pluma-efc6229fce6eecf0c35e620bb5adf4b912202c56.tar.bz2 pluma-efc6229fce6eecf0c35e620bb5adf4b912202c56.tar.xz |
Add a new Configure dialog for the Spell Check plugin.
There are three options for autocheck when a doc is loaded:
Always autocheck, Never autocheck and Remember the autocheck setting for each document
The chosen option is stored in the gsettings schema.
The default setting is to remember by document as this is what Pluma did previously.
Diffstat (limited to 'plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in')
-rw-r--r-- | plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in b/plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in new file mode 100644 index 00000000..d78d58fa --- /dev/null +++ b/plugins/spell/org.mate.pluma.plugins.spell.gschema.xml.in @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <enum id="org.mate.pluma.plugins.spell.AutocheckType"> + <value value="0" nick="never"/> + <value value="1" nick="document"/> + <value value="2" nick="always"/> + </enum> + <schema path="/org/mate/pluma/plugins/spell/" id="org.mate.pluma.plugins.spell"> + <key name="autocheck-type" enum="org.mate.pluma.plugins.spell.AutocheckType"> + <default>'document'</default> + <summary>Autocheck Type</summary> + </key> + </schema> +</schemalist> |