Author Topic: Editor Bug  (Read 11817 times)

takeshimiya

  • Guest
Re: Editor Bug
« Reply #15 on: October 19, 2006, 10:40:01 pm »
First, there is a good reason why the %VAR% syntax exists. It is the Windows/DOS syntax for environment variables, and as such it is what many Windows devs are probably using (as it is the natural thing to do for them).
So with that in mind, you can't have abbreviations for batch files right now...

Second, this syntax existed well before the macros manager was redesigned and well before anything else, for that matter (revision 521).
And I really doubt anyone is using it nowadays.

Look, the problem is that different syntax for declaring variables is a half-attempt.
There are two ways that can solve most/all problems:

1) The fixed approach
Have only the $(VAR) syntax for new projects. All previous versions will be either supported, or translated to the $(VAR) syntax.
Code::Blocks projects are serializable.

2) The flexible approach
Let the user define multiple syntax for variables, with tokens or regexs.
Defaulting to:
$(VAR)
${VAR}
$VAR
%VAR%


I personally prefer the 1) approach, but I don't mind as both solves the aforementioned problems.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Editor Bug
« Reply #16 on: October 20, 2006, 09:07:04 am »
So, no changes as this would possibly break existing projects.

@Takeshi: the reason all these different forms are supported is to let the user choose what he 's more accustomed to. Windows devs probably are used to %VAR% while non-windows devs are used to one of the other three forms.
And I never heard anyone complain about this fact ;).
Be patient!
This bug will be fixed soon...

takeshimiya

  • Guest
Re: Editor Bug
« Reply #17 on: October 20, 2006, 08:05:19 pm »
And I never heard anyone complain about this fact ;).

Because it's a minor issue :wink:

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Editor Bug
« Reply #18 on: October 20, 2006, 09:17:21 pm »
And I never heard anyone complain about this fact ;).

Because it's a minor issue :wink:

What is an issue? The fact that we support all forms of variables for all platforms?  :?:
Be patient!
This bug will be fixed soon...

takeshimiya

  • Guest
Re: Editor Bug
« Reply #19 on: October 20, 2006, 11:15:21 pm »
What is an issue? The fact that we support all forms of variables for all platforms?  :?:

Well, you know that is common that developers sees something as a feature while others sees it as a bug.
Perhaps this is because in some case scenarios it behaves as a feature while in others it behaves as an issue.

In short, in this case, it's "more than one syntax to do the same" vs. "consistency" and here can be clearly seen that some prefer "consistency" (refer to the "I vote..." posts).

But, anyways, this is a minor "feature/issue" so let's move on to things with more priority. :arrow: