vi编辑器将某些页面的文本粘贴到vi编辑器页面

时间:2012-03-19 16:07:38

标签: unix vi

我正在尝试将文本粘贴到heroku vi编辑器中,就像facebook教程中的代码片段一样,但我似乎无法弄明白。 我试过了

 :"*P
 :"*p
 :p

等,我正在使用Windows 7,这一切都很重要吗?任何想法

3 个答案:

答案 0 :(得分:1)

打开vi编辑器,你想要一个空的,未命名的文件

type ':set noai nosm' (without the single-quotes) (you need the ':' char)
press the enter key
press the letter i (for insert)
now use the appropriate mouse click to paste your text
type ':wq myFileName.php' (no single-quotes)
# this 'w'rites the filename and 'q'uits the editor

现在你应该有一个包含你想要的代码的文件。

顺便说一句,这并不是一个真正符合编程问题的资格,将来使用相关网站superuser.com发布这类问题。

我希望这会有所帮助。

答案 1 :(得分:0)

首先您必须将文本复制到缓冲区,然后在您要复制的行上按yy,之后您可以将其粘贴到p。

希望有所帮助:)

答案 2 :(得分:0)

只需从网页正常选择和复制。然后右键单击要在Unix终端中粘贴的光标位置..(即vi编辑器)。

它会被粘贴。