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 want to create a mapping such as this:
nmap <silent> <expr> <tab> sneak#is_sneaking() ? (FOO ? '<Plug>(SneakStreak)<cr>' : '<Plug>(SneakStreakBackward)<cr>') : '<Plug>Sneak_s'
I’m missing the FOO part though. Could sneak expose the current sneak direction as well?
FOO
The text was updated successfully, but these errors were encountered:
Yes, I meant to do this earlier this week. Expect it within the next few hours. Thanks.
Sorry, something went wrong.
4fbc04c
@lydell Try it like this:
nmap <silent> <expr> <tab> sneak#is_sneaking() \ ? (sneak#state().rptreverse ? '<Plug>(SneakStreakBackward)<cr>' : '<Plug>(SneakStreak)<cr>') \ : '<Plug>Sneak_s'
Thanks a lot!
No branches or pull requests
I want to create a mapping such as this:
I’m missing the
FOO
part though. Could sneak expose the current sneak direction as well?The text was updated successfully, but these errors were encountered: