mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-23 14:03:44 -05:00
refactor(collab): s/featurep!/modulep!
featurep! was renamed modulep! inad6a3d0
. Close: #7420 Ref:ad6a3d0f33
Co-authored-by: lagman <lagman@users.noreply.github.com>
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
(use-package! crdt
|
||||
:commands (crdt-share-buffer crdt-connect)
|
||||
:init
|
||||
(when (featurep! +tunnel)
|
||||
(when (modulep! +tunnel)
|
||||
(setq crdt-use-tuntox t)
|
||||
(setq crdt-tuntox-password-in-url t)))
|
||||
|
@@ -1,4 +1,5 @@
|
||||
;;; tools/collab/doctor.el -*- lexical-binding: t; -*-
|
||||
|
||||
(when (and (featurep! +tunnel) (not (executable-find "tuntox")))
|
||||
(when (and (modulep! +tunnel)
|
||||
(not (executable-find "tuntox")))
|
||||
(warn! "Couldn't find tuntox command. This needs to be on your path for the +tunnel flag to work properly."))
|
||||
|
Reference in New Issue
Block a user