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
xnoremap <silent> m :lua require('tsht').nodes()<CR>
works as expected but
xnoremap <silent> m <cmd>lua require('tsht').nodes()<CR>
does not expand the visual selection
The text was updated successfully, but these errors were encountered:
You should use this:
keymap('v', '<CR>', ':<C-U>lua require("tsht").nodes()<CR>', { desc = 'treesitter nodes', })
Looks like a typo in the readme.
Sorry, something went wrong.
No branches or pull requests
works as expected but
does not expand the visual selection
The text was updated successfully, but these errors were encountered: