emmet-vim icon indicating copy to clipboard operation
emmet-vim copied to clipboard

Remap to shift tab

Open Neats29 opened this issue 8 years ago • 4 comments

Hi, How could I remap <c-y>, to shift tab? I have the following but it doesn't work... nnoremap <S-Tab> <c-y>,

Thanks a lot.

Neats29 avatar Aug 10 '16 19:08 Neats29

why nnoremap?

mattn avatar Aug 13 '16 15:08 mattn

@mattn well inoremap doesn't work either, if that's what you mean....

Neats29 avatar Aug 24 '16 07:08 Neats29

Well, did you read doc? :help emmet-customize-key-mappings

mattn avatar Aug 24 '16 08:08 mattn

I add this in my .vimrc file and works:

imap <S-tab> <plug>(emmet-expand-abbr)

diegosomar avatar Feb 11 '20 01:02 diegosomar