Author Topic: Plugins wiki-page cleanup  (Read 29888 times)

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
« Last Edit: November 07, 2011, 03:02:11 am by Alpha »

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Plugins wiki-page cleanup
« Reply #1 on: August 28, 2011, 06:14:27 am »
I think most of the wiki content can copied from the C::B manual, see:
http://www.codeblocks.org/user-manual
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.

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #2 on: August 28, 2011, 11:07:20 pm »
Thanks, I will look into it.

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #3 on: August 31, 2011, 04:35:46 am »
I did some searching, and it seems (according to this post) that the Aligner plugin was merged into Editor Tweaks.  Unless somebody says otherwise, I will assume Aligner no longer exists and will remove it from the plugins list.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: Plugins wiki-page cleanup
« Reply #4 on: August 31, 2011, 01:19:43 pm »
I did some searching, and it seems (according to this post) that the Aligner plugin was merged into Editor Tweaks.  Unless somebody says otherwise, I will assume Aligner no longer exists and will remove it from the plugins list.

yes it is obsolete, it was merged into editortweaks
« Last Edit: August 31, 2011, 05:10:59 pm by killerbot »

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #5 on: August 31, 2011, 03:30:37 pm »
Thanks for the conformation; I will remove the link on the wiki-page.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Plugins wiki-page cleanup
« Reply #6 on: August 31, 2011, 03:40:44 pm »
Please don't remove the link, but make it point to the EditorTweaks, or put a message that the aligner has been merge to the EditorTweaks plugin.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #7 on: August 31, 2011, 04:40:46 pm »
Understood, I will do that instead.

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #8 on: September 01, 2011, 02:50:38 pm »
Please don't remove the link, but make it point to the EditorTweaks, or put a message that the aligner has been merge to the EditorTweaks plugin.
While we are at it: I recall a OccurrencesHighlighter plugin. Was that merged into EditorTweaks (or the core... or somewhere else), too?
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: Plugins wiki-page cleanup
« Reply #9 on: September 01, 2011, 03:03:06 pm »
Please don't remove the link, but make it point to the EditorTweaks, or put a message that the aligner has been merge to the EditorTweaks plugin.
While we are at it: I recall a OccurrencesHighlighter plugin. Was that merged into EditorTweaks (or the core... or somewhere else), too?
It's part of core (cbEditorInternalData).

Offline danselmi

  • Developer
  • Almost regular
  • *****
  • Posts: 203
Re: Plugins wiki-page cleanup
« Reply #10 on: September 01, 2011, 04:08:08 pm »
Please don't remove the link, but make it point to the EditorTweaks, or put a message that the aligner has been merge to the EditorTweaks plugin.
While we are at it: I recall a OccurrencesHighlighter plugin. Was that merged into EditorTweaks (or the core... or somewhere else), too?
It's part of core (cbEditorInternalData).
No, it is not. Beside the OccurrenceHighlighting in cbEditorInternalData there is an additional OccurrencesHighlihter plugin:
http://forums.codeblocks.org/index.php/topic,12569.msg85128.html#msg85128

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Plugins wiki-page cleanup
« Reply #11 on: September 02, 2011, 09:42:43 am »
http://forums.codeblocks.org/index.php/topic,12569.msg85128.html#msg85128
That's what I meant! What is the difference? I would prefer to separate this functionality into a plugin generally (if possible) and remove it from the core. Would that be feasible?
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline danselmi

  • Developer
  • Almost regular
  • *****
  • Posts: 203
Re: Plugins wiki-page cleanup
« Reply #12 on: September 02, 2011, 11:26:57 am »
What is the difference?
The plugin does highlight on all open editors and has a list which words to highlight. The internal function is highlighting the selected text in the current editor.

The plugin is very simple (no configuration possible).

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #13 on: September 03, 2011, 04:48:02 am »
KeyMacs seems to be a 3rd Party Plugin, not a Contrib Plugin.  Could someone confirm this?  (If it 3rd Party, I will move the placement of its link.)

Beside the OccurrenceHighlighting in cbEditorInternalData there is an additional OccurrencesHighlihter plugin:
http://forums.codeblocks.org/index.php/topic,12569.msg85128.html#msg85128
Is this plugin of enough importance for me to add a page for it on the wiki?

Offline Alpha

  • Developer
  • Lives here!
  • *****
  • Posts: 1513
Re: Plugins wiki-page cleanup
« Reply #14 on: September 03, 2011, 06:51:45 pm »
KeyMacs seems to be a 3rd Party Plugin, not a Contrib Plugin.
On further inspection, it appears to have become/merged into the Abbreviations plugin; is this correct?