We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
which-key.nvim is awesome, but it takes too much space on the screen when displayed.
I would like to display it like in Helix:
Here is what I currently use:
require('which-key').setup({ window = { margin = { 1, 100, 1, 0 }, }, })
It results in the following: But it depends on the window size, for example if I maximize the window it will look this way:
As alternative we could have an option to display whichkey.nvim vertically.
No response
The text was updated successfully, but these errors were encountered:
Similar to #320. I'd also like this feature.
Sorry, something went wrong.
0b5a653
Just implemented this. Margin values between 0 and 1 will be a percentage of the screen size:
Use the values below to get something similar to what you want:
{ window = { margin = { 1, 0, 0, 0.6 } }, layout = { height = { min = 4, max = 75 } }, }
Successfully merging a pull request may close this issue.
Did you check the docs?
Is your feature request related to a problem? Please describe.
which-key.nvim is awesome, but it takes too much space on the screen when displayed.
Describe the solution you'd like
I would like to display it like in Helix:
Here is what I currently use:
It results in the following:
But it depends on the window size, for example if I maximize the window it will look this way:
Describe alternatives you've considered
As alternative we could have an option to display whichkey.nvim vertically.
Additional context
No response
The text was updated successfully, but these errors were encountered: