소스 검색

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




불러오는 중...
취소
저장