问题 vim 中不能使用 .*?。 解法 可使用 .\{-},代替 .*,实现非贪婪匹配。 详细说明 输入 :help non-greedy,可以看到如下帮助文档: non-greedy If a "-" appears immediately after the "{", then a shortest match first algorithm is used (see example bel
一、全部反转 原始文本: line 1 line 2 line 3 line 4 反转后的文本: line 4 line 3 line 2 line 1 反转命令: :g/^/m0 二、反转指定行 原始文本: line 1 line 2 line 3 line 4 line 5 line 6 我要反转第2-5行。 反转后的文本: line 1 line 5 line 4 line 3
今天更新了 homebrew,启动 vim 时报错: ➜ design git:(newdesign) vi dyld: Library not loaded: /usr/local/lib/libruby.2.2.0.dylib Referenced from: /usr/local/bin/vim Reason: image not found 31578 abort vim 在 St