News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

CB have code refactoring plugin?

Started by Loaden, June 05, 2009, 03:55:06 PM

Previous topic - Next topic

Loaden

Hi.
Can you tell me, what's plugin for rename class/method/member?
thanks.

mariocup

Hi Loaden,

currently there is no plugin for refactoring within Code::Blocks.

Bye

Mario

Loaden

Quote from: mariocup on June 05, 2009, 04:12:31 PM
Hi Loaden,

currently there is no plugin for refactoring within Code::Blocks.

Bye

Mario
Thanks!

drac

It might have if somebody would integrate Mozilla's Pork

I've mentioned this also in the CodeCompletion Redesign forum http://forums.next.codeblocks.org/index.php/topic,10656.0.html

Cheers!

ollydbg

Quote from: drac on June 05, 2009, 07:00:55 PM
It might have if somebody would integrate Mozilla's Pork

I've mentioned this also in the CodeCompletion Redesign forum http://forums.next.codeblocks.org/index.php/topic,10656.0.html

Cheers!

From: https://developer.mozilla.org/en/Installing_Pork
Pork uses GCC to generate .i/.ii files (preprocessed C/C++) for Elsa to parse.
For code completion, I think it is a bit slow....
For code refactor( like rename some function prototype, variable name), it may work perfectly. :D
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.