[Solved] Stop codeblocks from crashing on OSX.
1. Disable mis-behaving plugins.
In CodeBlocks: MenuBar->Plugins->Manage Plugins
Disable: Code completion, Keyboard shortcuts
2. Edit the codeblocks configuration file directly to change the font size.
(Don't use Settings->Editor to change the font size)
Note: CodeBlocks must not be running while you edit.
Edit ~/Library/Application Support/codeblocks/default.conf
Search for FONT
To change the font size from 10 to 12, change:
<![CDATA[0;10;75;90;90;0;Monaco;0]]>
to:
<![CDATA[0;12;75;90;90;0;Monaco;0]]>
Search for LOG_FONT_SIZE
To change the log font size, change 8 to something else:
<LOG_FONT_SIZE int="8" />
Now, start CodeBlocks to see how you like new font size settings.