Topic: Entering spaces into Text Registers (1 of 3), Read 17 times
Conf: VEDIT Macro Language Support
From: Peter Rejto
Date: Thursday, November 27, 2008 09:16 AM

I would like to enter a space and then the predefined string value, PATHNAME, into a Text Register. I can do that
and here are the details:

Reg_Set(10," ",APPEND)
Reg_SeT(12, PATHNAME )
Reg_Set(10,@12,APPEND)


My question is: Can I bypass the

Reg_Set(10," ",APPEND)

command? In other words, I already left a "space" before PATHNAME and should Vedit see this space.

This is really a minor item! I thought no harm done asking it.

Thanks,

-peter

 


Topic: Re: Entering spaces into Text Registers (2 of 3), Read 15 times
Conf: VEDIT Macro Language Support
From: Christian Ziemski
Date: Thursday, November 27, 2008 03:49 PM

On 27.11.2008 15:23 in vedit-macro-language Peter Rejto wrote:
>
> I would like to enter a space and then the predefined string value,
> PATHNAME, into a Text Register. I can do that and here are the
> details:
>
> Reg_Set(10," ",APPEND)
> Reg_SeT(12, PATHNAME )
> Reg_Set(10,@12,APPEND)
>
> My question is: Can I bypass the
>
> Reg_Set(10," ",APPEND)

Not that I know.

But you can shorten it a bit:

Reg_Set(10," ", APPEND)
Reg_Set(10, PATHNAME, APPEND)


Christian

 


Topic: Re: Entering spaces into Text Registers (3 of 3), Read 14 times
Conf: VEDIT Macro Language Support
From: Peter Rejto
Date: Thursday, November 27, 2008 11:09 PM

On 11/27/2008 3:49:37 PM, Christian Ziemski wrote:


>Reg_Set(10," ", APPEND)
>Reg_Set(10, PATHNAME, APPEND)

Christian,

Thanks. I did not know that I can APPEND predifined string variables to Text Registers.

-peter