Move helm variable from helm layer to spacemacs-completion layer

This commit is contained in:
Kalle Lindqvist 2018-06-12 01:55:06 +02:00 committed by syl20bnr
parent f436680c9f
commit 378fa687a1
2 changed files with 10 additions and 10 deletions

View File

@ -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)")

View File

@ -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"))