浏览代码

Use string length for ivy sort

master
10sr 4 年前
父节点
当前提交
55dd12af18
签署人:: 10sr GPG 密钥 ID: C384BB17CBB19347
共有 1 个文件被更改,包括 10 次插入2 次删除
  1. +10
    -2
      emacs.el

+ 10
- 2
emacs.el 查看文件

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




正在加载...
取消
保存