diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-11 10:35:39 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-11 10:35:39 +0200 |
commit | 24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be (patch) | |
tree | ce5d82908cecc211ad835353be903111cd6ac12a | |
parent | 27783db85a4d3c38b041e51b088ed2dbd35e96c1 (diff) | |
download | UXP-24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be.tar UXP-24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be.tar.gz UXP-24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be.tar.lz UXP-24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be.tar.xz UXP-24f8b2fd5e2384a0e9f7a8f47005bd9c248f60be.zip |
Stop also selecting trailing space when word-selecting.
This resolves #472.
-rw-r--r-- | application/palemoon/app/profile/palemoon.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 014550190..0f820e1c3 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -676,6 +676,9 @@ pref("browser.backspace_action", 2); pref("browser.backspace_action", 0); #endif +// Pale Moon never eats the space with word selection, regardless of O.S. +pref("layout.word_select.eat_space_to_next_word", false); + // this will automatically enable inline spellchecking (if it is available) for // editable elements in HTML // 0 = spellcheck nothing |