我想在 vim 中搜索一个模式,并在它出现的每一行上,将文本添加到行尾。例如,如果搜索模式是print(
并且要添加的文本是)
:
from __future__ import print_function
print('Pausing 30 seconds...'
print("That's not a valid year!"
应该成为
from __future import print_function
print('Pausing 30 seconds...')
print("That's not a valid year!")