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.
我正在 vi 编辑器中创建一个新文件,该文件将包含整个 Jquery 库代码。如何将整个库从 Notepad ++ 复制到笔记本电脑上的 vi 编辑器?我在 vi 中创建了这个名为 jquery-1.8.3.js 的新文件,我只需要将整个代码从记事本复制到该文件中.. 非常感谢!
用 Notepad++ 保存文件,用 vi 加载文件。
您可以使用以下方法之一从剪贴板粘贴到 vi 中:
"+p
"*p
有时你必须使用register +,有时你必须使用register *。
例如:如果您使用 gVim 或 MacVim,则使用+。
如果您在 shell 中使用 vim,请使用*。
正如其他人指出的那样,使用 vim 打开文件会容易得多!