-
-
Notifications
You must be signed in to change notification settings - Fork 336
Closed
Description
Hi,
It seem that the font lock works unexpectedly when using ivy--regex-ignore-order.
I guess file and expand should be highlighted ?
Minimum config for reproducing can be
(require 'package)
(setq package-archives '(("marmalade" . "http://marmalade-repo.org/packages/")
("gnu" . "http://elpa.gnu.org/packages/")
("melpa" . "https://melpa.org/packages/")
("org" . "http://orgmode.org/elpa/")))
(package-initialize)
(unless (and (file-exists-p (expand-file-name "elpa/archives/marmalade" user-emacs-directory))
(file-exists-p (expand-file-name "elpa/archives/gnu" user-emacs-directory))
(file-exists-p (expand-file-name "elpa/archives/melpa" user-emacs-directory))
(file-exists-p (expand-file-name "elpa/archives/org" user-emacs-directory)))
(package-refresh-contents))
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(setq use-package-verbose t
use-package-enable-imenu-support t)
(require 'use-package)
(use-package swiper
:ensure t
:bind (("C-s" . swiper))
:init (setq ivy-height 15
ivy-count-format "(%d/%d) "
ivy-use-virtual-buffers t
ivy-initial-inputs-alist nil
ivy-re-builders-alist '((t . ivy--regex-ignore-order))
swiper-include-line-number-in-search t))
Thanks !
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
