Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 ex 命令在 vi 中使用大写字母缩进每一行?我使用的具体版本是 elvis。我需要为作业做这个。我已经搜索了帮助,但仍在试图弄清楚如何导航它。我以美国宪法为例。
您可以同时使用全局命令和替换命令:
:g/^[A-Z]/s/^/^I/
在这里,^I使用 [Control-V][TAB] 获得。
^I