Yevgnen

Results 122 comments of Yevgnen

At least if it has some percentage information, that would be very nice.

Try this: ```el ;; https://docs.python.org/3/reference/lexical_analysis.html#numeric-literals (defvar highlight-numbers-py-bindigit '(any "01")) (defvar highlight-numbers-py-octdigit '(any "0-7")) (defvar highlight-numbers-py-hexdigit '(any "0-9" "a-f" "A-F")) (defvar highlight-numbers-py-nonzerodigit '(any "1-9")) (defvar highlight-numbers-py-decinteger '(or (and (eval highlight-numbers-py-nonzerodigit) (0+...

Hello, that looks interesting. However, I got some ``` Debugger entered--Lisp error: (wrong-type-argument stringp nil) string-width(nil) ivy-rich-normailze-width(nil 4 nil) ivy-rich-format-column(#(".SpechtLite/" 0 12 (dirp t)) (ivy-rich-file-group (:width 4 :face font-lock-doc-face))) #f(compiled-function...

Sorry for late reply. Yes, I'm on macOS 10.14. Here are the eval results of the corresponding functions ``` (file-attributes "~/.SpechtLite/") ;; (t 35 501 20 (23510 48289 185291 400000)...

@CeleritasCelery Hi, how about this function ```elisp (defun ivy-rich-counsel-find-file-truename (candidate) (let ((type (car (file-attributes (directory-file-name (expand-file-name candidate ivy--directory)))))) (if (stringp type) (concat "-> " (expand-file-name type ivy--directory)) ""))) ``` and...

@CeleritasCelery Yes, it should be. But currently `ivy-rich-display-transformers-list` can only set with ivy-like commands. It would be much easier to set if it supports to set with 'old transformers' because...

Can you try to profile this by using `profile-start` and `profile-report`?

Hi, you can use `C-u TAB` to fully expand a node to provide all details.

As noted in [README](https://github.com/Yevgnen/ivy-rich#4-faq) and #28, I'm afraid it is not possible to find an easy solution currently. But there's some [efforts](https://github.com/Yevgnen/ivy-rich/issues/28) tried by the community. If anyone has suggestions...