我希望能夠突出顯示要分別縮進/反向縮進和縮進的行。Vim - 使用標籤縮進多行
" for command mode reverse tab
nmap <S-Tab> <<
" for insert mode reverse tab
imap <S-Tab> <Esc><<i
" for command mode multiple line reverse tab(doesn't work)
nmap <Tab> i<
" for insert mode multiple line reverse tab(doesn't work)
imap <Tab> <
" for command mode tab
nmap <Tab> >>
" for command mode multiple line tab(doesn't work)
nmap <Tab> i>
" for insert mode multiple line tab(doesn't work)
imap <Tab> >
在我願意使用vim作爲我的主編輯器之前,這是我需要的最後一件事。
因此?究竟是什麼問題? –