config: allow disabling the primary selection
This commit is contained in:
parent
e70be28e22
commit
9c165ab56c
13 changed files with 63 additions and 2 deletions
|
|
@ -891,6 +891,10 @@
|
|||
"focus-history": {
|
||||
"description": "Configures the focus-history settings.\n\n- Example:\n\n ```toml\n [focus-history]\n only-visible: true\n same-workspace: true\n ```\n",
|
||||
"$ref": "#/$defs/FocusHistory"
|
||||
},
|
||||
"middle-click-paste": {
|
||||
"type": "boolean",
|
||||
"description": "Configures whether middle-click pasting is enabled.\n\nChanging this has no effect on running applications.\n\nThe default is `true`.\n"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
|
|||
|
|
@ -1816,6 +1816,16 @@ The table has the following fields:
|
|||
|
||||
The value of this field should be a [FocusHistory](#types-FocusHistory).
|
||||
|
||||
- `middle-click-paste` (optional):
|
||||
|
||||
Configures whether middle-click pasting is enabled.
|
||||
|
||||
Changing this has no effect on running applications.
|
||||
|
||||
The default is `true`.
|
||||
|
||||
The value of this field should be a boolean.
|
||||
|
||||
|
||||
<a name="types-Connector"></a>
|
||||
### `Connector`
|
||||
|
|
|
|||
|
|
@ -2650,6 +2650,15 @@ Config:
|
|||
only-visible: true
|
||||
same-workspace: true
|
||||
```
|
||||
middle-click-paste:
|
||||
kind: boolean
|
||||
required: false
|
||||
description: |
|
||||
Configures whether middle-click pasting is enabled.
|
||||
|
||||
Changing this has no effect on running applications.
|
||||
|
||||
The default is `true`.
|
||||
|
||||
|
||||
Idle:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue