Author Topic: New Issues?  (Read 3687 times)

ThomasLehmann

  • Guest
New Issues?
« on: September 02, 2008, 11:21:10 am »
Hi,

some issue I would like to know whether those will be
introduced in on of the next versions....

1) a) Enable of directing output of console applications into
        an output window of the IDE. (see SciTe - Scintilla Editor)
    b) On assertions I would like to jump to the relating file
        and line...

2) I have programmed with the scripting language of Vim as
    well as with the one of the Visual Studio to allow good
    documenting of function, methods, classes a.s.o

    I would have started for Code::Blocks too but I'm missing
    the documentation for the scripting capabilities.
    Can you help?
    Are there any small examples on howto manipulate the
    current file?

so far,

kindly
Thomas

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: New Issues?
« Reply #1 on: September 02, 2008, 12:28:46 pm »
Hi,

    I would have started for Code::Blocks too but I'm missing
    the documentation for the scripting capabilities.
    Can you help?

Typing "scripting" in the wiki search box gives interesting results such as this one.

Dje

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: New Issues?
« Reply #2 on: September 02, 2008, 04:03:21 pm »
1) a) Enable of directing output of console applications into
        an output window of the IDE. (see SciTe - Scintilla Editor)

already supported, check out "tools -> configure tools". I also have a plugin (called ShellExtensions) that offers a little more flexibility (project page in my sig)

Quote
    b) On assertions I would like to jump to the relating file
        and line...

this one is a little trickier. In my ShellExtensions, I parse python error messages using a reg exp to provide hot links to the relevant files/lines. Eventually the reg exp will be customizable, which means you could adapt it to parse the output of any console program.

ThomasLehmann

  • Guest
Re: New Issues?
« Reply #3 on: September 05, 2008, 01:18:03 pm »

Quote
already supported, check out "tools -> configure tools".

Yeah, but this is for tools only. Using the standard keys or buttons of the IDE
for running the current project the console will be opened instead of using
and internal output window. How can manage this; is there also an option for that?

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: New Issues?
« Reply #4 on: September 05, 2008, 03:19:28 pm »

Quote
already supported, check out "tools -> configure tools".

Yeah, but this is for tools only. Using the standard keys or buttons of the IDE
for running the current project the console will be opened instead of using
and internal output window. How can manage this; is there also an option for that?


not currently. someone would need to add this feature to the compiler plugin (it provides the build/run ui).