# This usually works in insert mode
SHIFT + INSERT
# However sometimes my "CTRL + c" on other application doesn't get contents into Vim's "clipboard".
# The solution is to use Vim's multiline insert mode
:i or :in or :insert
# This will bring up lines which you can paste from Ubuntu's clipboard by "CTRL + SHIFT + v" to you heart's content.
# Finish the multilines with a "." at the end
# NOTE: better to turn off Vim's "autoindent" with "!"
:in!
This is first line
This is 2nd line
This is last line
.
# A similar method would be append instead of insert
:a, :append
Friday, October 2, 2009
Insert contents from clipboard into Vim
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2009
(143)
-
▼
October
(26)
- Update rubygems using gem
- String value not displayed in input text field in ...
- Format string for titles
- Specify form method when generating url route for ...
- Error using validation hooks with before_save call...
- Deleting a word backwards in Bash and Vim
- Swap CAPS LOCK with CONTROL key
- Reloading ALSA
- Uncompressing 7zip (.7z) files in Ubuntu
- Select commits from another branch using git cherr...
- Share simple internet web browsing via SSH X forwa...
- Fix static noise problem in Skype on Ubuntu
- Record & playback a Vim macro
- Stash changes away in Git to work on urgent matter...
- Insert Pivotal Tracker story id into Git commit me...
- Check git log for a particular branch
- View changes made by upstream in Git
- Restart Gnome session from command line
- Be careful with button_to in RESTful routes
- Rename current branch in Git
- Reload vimrc in Vim
- Insert contents from clipboard into Vim
- Yank all lines in Vim
- Git branching and merging workflow for agile team
- Resize Gnu Screen window
- Setup object first before testing validates_unique...
-
▼
October
(26)
No comments:
Post a Comment