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
I'm having the identical issue as the user who reported #214
Essentially, pressing "." does not repeat my prior leap action, but the action before that.
My lazy.nvim configuration is as follows:
return { "ggandor/leap.nvim", dependencies = {"tpope/vim-repeat"}, config = function(_, opts) local leap = require('leap') leap.create_default_mappings() end }
I tried your recommended sanity check by running :lua vim.fn['repeat#set']('diw', -1), and after doing that . does indeed repeat the diw action.
:lua vim.fn['repeat#set']('diw', -1)
.
diw
Is there perhaps a configuration piece I am missing that I need to enable the functionality?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm having the identical issue as the user who reported #214
Essentially, pressing "." does not repeat my prior leap action, but the action before that.
My lazy.nvim configuration is as follows:
I tried your recommended sanity check by running
:lua vim.fn['repeat#set']('diw', -1)
, and after doing that.
does indeed repeat thediw
action.Is there perhaps a configuration piece I am missing that I need to enable the functionality?
The text was updated successfully, but these errors were encountered: