我有一个 CSS 选择器,例如:
#page-site-index .toolbar .items {
如何捕获“.toolbar .items”部分并将其用于替换 Vim S&R 的部分,所以这个选择器可以变成:
#page-site-index .toolbar .items, #page-site-login .toolbar .items {
就像是:
%s:/#page-site-index \(.toolbar .items\)/#page-site-index (the captured string), #page-site-login (the captured string)/g
顺便说一句,我正在使用 Vim 的终端版本。