Как игнорировать пробел после комментариев при расчете уровня отступа в Vim - PullRequest
5 голосов
/ 21 марта 2012

Рассмотрите возможность написания комментария в стиле JavaDoc, который включает в себя список с отступом (когда установлен expandtab и softtabstop=2):

/**
 * First line:
 *   - Indented text
 */

В настоящее время после ввода First line: и нажатия return Vim правильно вставит *<space>. Однако, когда я нажимаю tab для отступа второй строки, вместо двух вставляется только один пробел.

Можно ли это исправить, поэтому пробел после * будет игнорироваться при расчете отступа?

1 Ответ

1 голос
/ 05 сентября 2012

Я все еще новичок в VimScript, но я приготовил это для вас. Попробуйте и дайте мне знать, что вы думаете.

function AdjustSoftTabStop()
    " Only act if we are in a /* */ comment region
    if match(getline('.'), '\s*\*') == 0
        " Compensate for switching out of insert mode sometimes removing lone
        " final space
        if match(getline('.'), '\*$') != -1
            " Put back in the space that was removed
            substitute/\*$/\* /
            " Adjust position of the cursor accordingly
            normal l
        endif
        " Temporary new value for softtabstop; use the currect column like a
        " base to extend off of the normal distance
        let &softtabstop+=col('.')
    endif
endfunction

function ResetSoftTabStop()
    " Note that you will want to change this if you do not like your tabstop
    " and softtabstop equal.
    let &softtabstop=&tabstop
endfunction

" Create mapping to call the function when <TAB> is pressed. Note that because
" this is mapped with inoremap (mapping in insert mode disallowing remapping of
" character on the RHS), it does not result in infinite recursion.
inoremap <TAB> <ESC>:call AdjustSoftTabStop()<CR>a<TAB><ESC>:call ResetSoftTabStop()<CR>a
...