Reputation: 1779
In Vim, how would I set up a macro for Ctrl+Shift+another key? I did noremap and the mapping practically ignored the shift. I could press and the macro would go through.
Upvotes: 2
Views: 1923
Reputation: 22226
It's hard to say without seeing the actual commands you're using. What does your noremap command look like, something like this?:
noremap <s-c-F8> :[command here]<CR>
Upvotes: 2