diff --git a/layers/+completion/helm/config.el b/layers/+completion/helm/config.el index 0dfb104d6..3fbb191ca 100644 --- a/layers/+completion/helm/config.el +++ b/layers/+completion/helm/config.el @@ -14,10 +14,6 @@ ;; TODO: remove dotspacemacs variables backward compatbility in version ;; 0.400 or later -(defvar helm-enable-auto-resize (spacemacs|dotspacemacs-backward-compatibility - dotspacemacs-helm-resize nil) - "If non nil, `helm' will try to minimize the space it uses.") - (defvar helm-no-header (spacemacs|dotspacemacs-backward-compatibility dotspacemacs-helm-no-header nil) "if non nil, the helm header is hidden when there is only one source.") @@ -26,12 +22,6 @@ dotspacemacs-helm-position bottom) "Position in which to show the `helm' mini-buffer.") -(defvar helm-use-fuzzy (spacemacs|dotspacemacs-backward-compatibility - dotspacemacs-helm-use-fuzzy always) - "Controls fuzzy matching in helm. If set to `always', force fuzzy matching - in all non-asynchronous sources. If set to `source', preserve individual - source settings. Else, disable fuzzy matching in all sources.") - (defvar spacemacs-helm-rg-max-column-number 512 "Controls the maximum number of columns to display with ripgrep (otherwise omits a line)") diff --git a/layers/+spacemacs/spacemacs-completion/config.el b/layers/+spacemacs/spacemacs-completion/config.el index 10640c815..cdc17db3b 100644 --- a/layers/+spacemacs/spacemacs-completion/config.el +++ b/layers/+spacemacs/spacemacs-completion/config.el @@ -12,6 +12,16 @@ ;; Helm +(defvar helm-use-fuzzy (spacemacs|dotspacemacs-backward-compatibility + dotspacemacs-helm-use-fuzzy always) + "Controls fuzzy matching in helm. If set to `always', force fuzzy matching + in all non-asynchronous sources. If set to `source', preserve individual + source settings. Else, disable fuzzy matching in all sources.") + +(defvar helm-enable-auto-resize (spacemacs|dotspacemacs-backward-compatibility + dotspacemacs-helm-resize nil) + "If non nil, `helm' will try to minimize the space it uses.") + (defface spacemacs-helm-navigation-ts-face `((t :background ,(face-attribute 'error :foreground) :foreground "black"))