Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. This command is in Vi, but Vim only simulates it:
  2.  
  3. *:o* *:op* *:open*
  4. :[range]o[pen] Works like |:visual|: end Ex mode.
  5. {Vi: start editing in open mode}
  6.  
  7. :[range]o[pen] /pattern/ As above, additionally move the cursor to the
  8. column where "pattern" matches in the cursor
  9. line.
  10.  
  11. Vim does not support open mode, since it's not really useful. For those
  12. situations where ":open" would start open mode Vim will leave Ex mode, which
  13. allows executing the same commands, but updates the whole screen instead of
  14. only one line.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement