emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/crdt 2bc5389ba9 26/44: add `crdt-author' to default tra


From: ELPA Syncer
Subject: [elpa] externals/crdt 2bc5389ba9 26/44: add `crdt-author' to default tracked text properties
Date: Sat, 2 Jul 2022 22:57:34 -0400 (EDT)

branch: externals/crdt
commit 2bc5389ba96db51d79a476cd9b2282a21e98fbe6
Author: Qiantan Hong <qhong@alum.mit.edu>
Commit: Qiantan Hong <qhong@alum.mit.edu>

    add `crdt-author' to default tracked text properties
---
 crdt.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/crdt.el b/crdt.el
index 6b5800bdac..c24f916487 100644
--- a/crdt.el
+++ b/crdt.el
@@ -81,12 +81,12 @@
   :type 'file)
 
 (defcustom crdt-tls-certificate
-  (concat user-emacs-directory "crdt-tls.pem")
+  (locate-user-emacs-file "crdt-tls.pem")
   "Path to TLS certificate file used for TLS-secured server."
   :type 'file)
 
 (defcustom crdt-tls-private-key
-  (concat user-emacs-directory "crdt-tls.pem")
+  (locate-user-emacs-file "crdt-tls.pem")
   "Path to TLS private key file used for TLS-secured server."
   :type 'file)
 
@@ -115,7 +115,7 @@ See `crdt-new-session'.'"
   "Override local commands with corresponding remote commands when available."
   :type 'boolean)
 
-(defcustom crdt-region-alpha 0.5
+(defcustom crdt-region-alpha 0.2
   "Alpha value for highlighting selections."
   :type 'float)
 
@@ -428,7 +428,7 @@ and CRDT--DISABLE-OVERLAY-SPECIES to modify this variable
 as those functions handle bookkeeping of
 adding/removing actively tracked overlays.")
 
-(defvar-local crdt--enabled-text-properties nil
+(defvar-local crdt--enabled-text-properties '(crdt-author)
   "A list of text properties that are tracked and synchronized.")
 
 ;;; Global variables



reply via email to

[Prev in Thread] Current Thread [Next in Thread]