You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have previously been using ivy with a height of 8 lines with NANO. Works.
When I use nano-minibuffer though, I only see 4 lines.
I also tried to set '(setq ivy-height 8)' parameter in the 'nano-minibuffer.el' file itself, still only 4 lines.
Except there is a little bit more. In the screenshot you can see the the upper bit of a fifth line, but then it get's cut off.
Also function wise I think I can run through all 8 Ivy lines, they are just hidden outside the window.
Steps to reproduce:
set ivy-heigth to 8 in init.el
e.g. M-x or C-x C-f
scroll down below the three shown lines
How I set nano-minibuffer up in init.el:
.
.
(require 'nano-colors) ;; dependency of nano-minibuffer
(require 'nano-minibuffer)
(setq ivy-height 8) ;; number of lines in e.g. file-selector
.
.
I actually have found a work around.
In 'nano-minibuffer.el' you can set height to 9 (8 lines +1 because of the cut off) then it works well for ivy-height 8.
Maybe the height can be set to ivy-heigth+1 instead of being constant ? I am afraid I know nothing about lisp so I would not know how to do that...
The text was updated successfully, but these errors were encountered:
I might be using it wrongly, but so far it had no effect.
This is the extract from my init.el
.
.
(setq ivy-height 8) ;; number of lines in e.g. file-selector
(setq mini-frame-default-height 12)
(require 'nano-colors) ;; dependency of nano-minibuffer
(require 'nano-minibuffer)
.
.
Sorry for the late answer. I think the problem comes from line 60 where I add a hook to inset half a line space at the top of the minibuffer (in order to have half a line-space at the bottom). If you comment this line, that may fix the problem.
Hi.
Thanks for this great theme/configuration.
I have previously been using ivy with a height of 8 lines with NANO. Works.
When I use nano-minibuffer though, I only see 4 lines.
I also tried to set '(setq ivy-height 8)' parameter in the 'nano-minibuffer.el' file itself, still only 4 lines.
Except there is a little bit more. In the screenshot you can see the the upper bit of a fifth line, but then it get's cut off.
Also function wise I think I can run through all 8 Ivy lines, they are just hidden outside the window.
Steps to reproduce:
How I set nano-minibuffer up in init.el:
I actually have found a work around.
In 'nano-minibuffer.el' you can set height to 9 (8 lines +1 because of the cut off) then it works well for ivy-height 8.
Maybe the height can be set to ivy-heigth+1 instead of being constant ? I am afraid I know nothing about lisp so I would not know how to do that...
The text was updated successfully, but these errors were encountered: