Vim's global command with patterns joined by comma

From the docs, the syntax of the :global command is:

:[range]g[lobal]/{pattern}/[cmd]
                        Execute the Ex command [cmd] (default ":p") on the
                        lines within [range] where {pattern} matches.

I've also come across such usages of :g:

:g/apples/+1,/peaches/ s/^/# /g
:g/start/+1,$ sort n

Есть ли /apples/+1,/peaches/ here belong to the {pattern}? Где этот синтаксис задокументирован?

1 ответ

Решение

Я только что нашел объяснение этому использованию :global в Vim Tips Wiki:

:g/apples/,/peaches/ s/^/# /g
    Insert "# " at the start of each line in all identified blocks. 
    :g/apples/ identifies each line containing "apples". 
    In each such line, .,/peaches/ s/^/# /g is executed 
    (the . is assumed; it means the current line, where "apples" occurs). 

Так ,/peaches/ здесь определяет диапазон для команды замещения. Несколько запутанная часть (которую я не нашел упомянутой в документах) состоит в том, что начальная '.' необязательно в диапазоне. Добавление этого делает команду более очевидной:

:g/apples/.,/peaches/s/^/# /g
Другие вопросы по тегам