Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Plugin/Argument

nchernoff

Administrator
May
42
2
Staff member
Plugin/Argument

So what does the plugin COMMAND see if the user issues:
Code:
COMMAND_NAME<space><space><space>parameter

Answer:

Code:
COMMAND_NAME<space><space><space>parameter

In most cases it will therefore be nessesary to trim spaces from string. In Ada the TakeCmd.Strings.To_Ada function will do that for you - if you like.

What does a plugin function see if the user issues:

Code:
@FUNCTION_NAME[<space><space>parameter<space><space>]

Answer:

Code:
@FUNCTION_NAME[<space><space>parameter<space><space>]
 
Back
Top