From 726a2635876b2ab547b7f7905ec07a968a523604 Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Wed, 5 Aug 2020 17:21:51 +0200 Subject: [PATCH 1/2] Document fast_inject --- docs/configuration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 67b92e3..1d2dd8b 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -181,4 +181,5 @@ Option | Description | Possible Values | Default | App-Specific `passive_key` | Change the key used to trigger passive mode | `CTRL`, `ALT`, `SHIFT`, `META`, `LEFT_CTRL`, `LEFT_ALT`, `LEFT_SHIFT`, `LEFT_META`, `RIGHT_CTRL`, `RIGHT_ALT`, `RIGHT_SHIFT`, `RIGHT_META`, `OFF`| `OFF` | No `secure_input_notification` | Enable/Disable the Secure Input notification on macOS | `true`/`false` | `true` | No `show_icon` | Show/Hide the icon in the status bar on macOS and Windows | `true`/`false` | `true` | No -`show_notifications` | Show/Hide the notifications| `true`/`false` | `true` | No \ No newline at end of file +`show_notifications` | Show/Hide the notifications| `true`/`false` | `true` | No +`fast_inject` | Use improved text injection mechanism | `true`/`false` | `true`| No From af6399a820690aa8c8933e9d0f87a296f11ffe0e Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Fri, 7 Aug 2020 23:47:15 +0200 Subject: [PATCH 2/2] Use more specific description of fast_inject Also document it being app-specific --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 1d2dd8b..7b38322 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -182,4 +182,4 @@ Option | Description | Possible Values | Default | App-Specific `secure_input_notification` | Enable/Disable the Secure Input notification on macOS | `true`/`false` | `true` | No `show_icon` | Show/Hide the icon in the status bar on macOS and Windows | `true`/`false` | `true` | No `show_notifications` | Show/Hide the notifications| `true`/`false` | `true` | No -`fast_inject` | Use improved text injection mechanism | `true`/`false` | `true`| No +`fast_inject` | Use a faster injection mechanism (Linux only). It uses XSendEvent API rather than XTestFakeKeyEvent API, which is faster but incompatible with some applications.| `true`/`false` | `true`| Yes