-
Notifications
You must be signed in to change notification settings - Fork 33.2k
feat(plugin): tutorial.nvim #1488
New issue
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
base: master
Are you sure you want to change the base?
Conversation
simple plugin to show a neovim tutorial on screen at all times
init.lua
Outdated
{ -- shows a floating buffer with the most useful vim keymaps | ||
'Hashino/tutorial.nvim', | ||
opts = {}, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks pretty extreme to be active by default to existing users, maybe comment it out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my rationale is that the kind of user that needs this plugin the most don't even know how to enable/disable a plugin yet.
I envision this plugin as being the first one users will remove from their configs. my goal is strictly to avoid the "can't quit vim" meme scenario
@guru245 made an update to the plugin that fixes incompatibilities with Telescope. on the which-key case, the plugin still displays but which-key shows on top, which I think is a reasonable behavior |
There's a bug that I can't quite fix yet. After last update (ignore certain buffers) the plugin buffer disappears if the buffer is focused. Will work on fixing it |
simple plugin to show a neovim tutorial on screen at all times
closes #1487