From 1ac579e08ac6e8b0f63c455eea7443ce0293b95a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 26 Mar 2025 07:55:36 -0400 Subject: [PATCH] fix: clipboard issues on Windows + WSL Ref: 5b103261f416 --- lisp/doom-start.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom-start.el b/lisp/doom-start.el index cf312b166..2a970400f 100644 --- a/lisp/doom-start.el +++ b/lisp/doom-start.el @@ -139,7 +139,7 @@ (setq default-input-method nil) ;; ...And the clipboard on Windows is often a wider encoding (UTF-16), so leave ;; Emacs to its own devices there. -(unless doom--system-windows-p +(unless (or doom--system-windows-p (featurep :system 'wsl)) (setq selection-coding-system 'utf-8))