Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: GVIM Editor

From: louisaturk:eudoramail at: 12-Mar-2002 20:07

Andreas, as you are trying to learn vim, maybe you'd like to have that command
>explained. > >a) VIM has a system known as "registers" - you can think of it as >quick buffers. registers are named by a single character which can be >any of {a-zA-Z0-9.%#:-"} > >registers are accessed by "x - x beeing a valid register name >(character) > >b) copy/paste/delete [y, p, d] can be optionally used with explicit >source/destination register. you can yank a piece of test into >register a and another text into b and then paste one of those texts >whenever you want. > >c) + is the register refering to the clipboard (and therefore is a >read-only register) > >now "+p should be clear ;)
Many thanks. That does help. But I still can't get my pastes into the right spot. Also, I just remembered that I also have Cygwin installed on this same computer, and a unix version of vim running under Cygwin. Version 6.0.11. So I tried using it, and the result is different but still wrong. The text is now placed after the rebol block I am trying to place the text in. For example: [{I want the text here}]but instead it is placed here. Louis