diff options
| author | Victor Kareh <[email protected]> | 2025-10-15 14:36:45 -0400 |
|---|---|---|
| committer | Victor Kareh <[email protected]> | 2026-03-09 08:37:00 -0400 |
| commit | 5d0124afa9c8adc95f8ad3c163f7190d8d2690a3 (patch) | |
| tree | 15892088ff03fcd6e9335ab33a8925ac3b431505 /data | |
| parent | 01ba5fede9ab601002c4e4d122b0585e16b3f3ce (diff) | |
| download | pluma-5d0124afa9c8adc95f8ad3c163f7190d8d2690a3.tar.bz2 pluma-5d0124afa9c8adc95f8ad3c163f7190d8d2690a3.tar.xz | |
pluma-window: Add right-side panel support
Add a third panel on the right side of the editor window, enabling
a three-panel layout with left, right, and bottom panes.
The right panel is hidden by default and its state persists across
sessions. The main use case is enabling plugins for previews, document
outline viewers, or tag lists, similar to other IDEs.
Diffstat (limited to 'data')
| -rw-r--r-- | data/org.mate.pluma.gschema.xml.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/org.mate.pluma.gschema.xml.in b/data/org.mate.pluma.gschema.xml.in index 45dd196e..78a57c41 100644 --- a/data/org.mate.pluma.gschema.xml.in +++ b/data/org.mate.pluma.gschema.xml.in @@ -170,6 +170,11 @@ <summary>Bottom Panel is Visible</summary> <description>Whether the bottom panel at the bottom of editing windows should be visible.</description> </key> + <key name="right-panel-visible" type="b"> + <default>false</default> + <summary>Right Panel is Visible</summary> + <description>Whether the right panel at the right of editing windows should be visible.</description> + </key> <key name="max-recents" type="u"> <default>5</default> <summary>Maximum Recent Files</summary> @@ -285,6 +290,16 @@ <summary>bottom-panel-active-page</summary> <description>The pluma bottom-panel-active-page</description> </key> + <key name="right-panel-size" type="i"> + <default>200</default> + <summary>right-panel-size</summary> + <description>The pluma right-panel-size</description> + </key> + <key name="right-panel-active-page" type="i"> + <default>0</default> + <summary>right-panel-active-page</summary> + <description>The pluma right-panel-active-page</description> + </key> <key name="filter-id" type="i"> <default>0</default> <summary>filter-id</summary> |
