branch: externals/crdt commit 2bc5389ba96db51d79a476cd9b2282a21e98fbe6 Author: Qiantan Hong <qh...@alum.mit.edu> Commit: Qiantan Hong <qh...@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