Ver a proveniência

Use string length for ivy sort

master
10sr há 4 anos
ascendente
cometimento
55dd12af18
Assinados por: 10sr ID da chave GPG: C384BB17CBB19347
1 ficheiros alterados com 10 adições e 2 eliminações
  1. +10
    -2
      emacs.el

+ 10
- 2
emacs.el Ver ficheiro

@@ -2664,13 +2664,21 @@ Any output will be written to current buffer."
(define-key help-map "o" 'my-counsel-describe-symbol)
)

(defun my-ivy-length (x y)
"Ivy sort to order by string length."
(<= (length (if (consp x) (car x) x))
(length (if (consp y) (car y) y))))
;; (my-ivy-length "a" (cons "bc" t))
;; (my-ivy-length "a" (cons "c" t))

(with-eval-after-load 'ivy
(ivy-configure 'my-counsel-describe-symbol
:sort-fn #'ivy-string<)
:sort-fn 'my-ivy-length)
)
(with-eval-after-load 'counsel
(ivy-configure 'counsel-M-x
:initial-input "")
:initial-input ""
:sort-fn 'my-ivy-length)
)




Carregando…
Cancelar
Guardar