Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: takeshimiya on January 11, 2006, 06:04:13 pm

Title: Syntax highlighting for the forum
Post by: takeshimiya on January 11, 2006, 06:04:13 pm
Mind adding syntax highlighting for SMF?
http://www.simplemachines.org/community/index.php?topic=50945.0 (http://www.simplemachines.org/community/index.php?topic=50945.0)

:)
Title: Re: Syntax highlighting for the forum
Post by: Michael on January 11, 2006, 06:09:17 pm
It would be an useful addition IMHO :).

Michael
Title: Re: Syntax highlighting for the forum
Post by: Game_Ender on January 16, 2006, 06:50:13 am
I third the notion.
Title: Re: Syntax highlighting for the forum
Post by: sethjackson on January 16, 2006, 06:18:57 pm
I'm all for it.  :D
Title: Re: Syntax highlighting for the forum
Post by: David Perfors on January 16, 2006, 07:14:32 pm
me to..
Title: Re: Syntax highlighting for the forum
Post by: Ceniza on January 16, 2006, 07:32:39 pm
And me _o/
Title: Re: Syntax highlighting for the forum
Post by: rickg22 on January 16, 2006, 10:53:49 pm
I'm against it.


... just kidding :P muahahaha. Yeah, I'm in favor, too.
Title: Re: Syntax highlighting for the forum
Post by: mandrav on January 16, 2006, 11:10:56 pm
How 's this?

Code: cpp
#include <iostream>

int main(int argc, char** argv)
{
    std::cout << "Hello world!" << std::endl;
    return 0;
}
Title: Re: Syntax highlighting for the forum
Post by: thomas on January 16, 2006, 11:20:00 pm
Hmm... does it show "Created by GeSHI" every time?  :?
Title: Re: Syntax highlighting for the forum
Post by: killerbot on January 16, 2006, 11:22:31 pm
we'll see
Code: cpp
int main()
{
  int x = 0,
} // end of main

seems so
Title: Re: Syntax highlighting for the forum
Post by: yop on January 16, 2006, 11:27:11 pm
Hmm... does it show "Created by GeSHI" every time?  :?
But the code is at last readable :) See the good side of it
Edit: Yiannis did some magic again I guess and it dissapeared
Title: Re: Syntax highlighting for the forum
Post by: takeshimiya on January 17, 2006, 12:32:09 am
Thanks Yiannis :D. The parser isn't the best, but yes, it's more readable.

Testing :)

Some C++
Code: cpp
void cbEditor::ToggleBreakpoint(int line, bool notifyDebugger)
{
    if (HasBreakpoint(line))
        RemoveBreakpoint(line, notifyDebugger);
    else
        AddBreakpoint(line, notifyDebugger);
}

Some Diff
Code: diff
Index: cbeditor.cpp
===================================================================
--- cbeditor.cpp (revision 1717)
+++ cbeditor.cpp (working copy)
@@ -548,7 +548,7 @@
  // FIXME: how to display a mark with an offset???
  m_pControl->SetMarginWidth(1, 16);
     m_pControl->SetMarginType(1, wxSCI_MARGIN_SYMBOL);
-    m_pControl->SetMarginSensitive(1, 1);
+    // FIXME: Make this an option: m_pControl->SetMarginSensitive(1, 1);
     m_pControl->SetMarginMask(1, (1 << BOOKMARK_MARKER) |
                                  (1 << BREAKPOINT_MARKER) |
                                  (1 << DEBUG_MARKER) |

Some DOS
Code: dos
@echo off
echo Creating output directory tree

copy /y setup\codeblocks.exe.manifest output > nul
strip output\*.exe

Some INI
Code: ini
nSelProfile=0
[keyprof0]
desc=Our primary keyprofile
name=Primary
bind542-type4660=New file|Create a new source file|Ctrl+N|
bind606-type4660=New project...|Create a new project based on a template|Ctrl+Shift+N|

Some XML
Code: xml
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocksConfig version="1">
<style16>
<BOLD bool="1" />
<ITALICS bool="0" />
<UNDERLINED bool="1" />
<ISSTYLE bool="1" />
<NAME>
<str>Matching brace highlight</str>
</NAME>
</style16>
</CodeBlocksConfig>

:D

Just a note: Bash highlighting brokes Apache, it gives the error:
Code
Error 406: Not Acceptable
An appropriate representation of the requested resource /index.php could not be found on this server.
Title: Re: Syntax highlighting for the forum
Post by: Urxae on January 17, 2006, 12:50:14 am
Just a note: Bash highlighting brokes Apache, it gives the error:
Code
Error 406: Not Acceptable
An appropriate representation of the requested resource /index.php could not be found on this server.

Try leaving off the first line. The forums don't like the names of shell interpreters :(.
Title: Re: Syntax highlighting for the forum
Post by: rickg22 on January 17, 2006, 01:26:58 am
We could alter that code... i think...

anyway, that light cyan burns my eyes, can it be changed to something more friendly?
Title: Re: Syntax highlighting for the forum
Post by: sethjackson on January 17, 2006, 01:41:42 am
We could alter that code... i think...

anyway, that light cyan burns my eyes, can it be changed to something more friendly?

Yeah someone please fix it I'm going blind.....  :lol:
Title: Re: Syntax highlighting for the forum
Post by: Michael on January 17, 2006, 01:44:24 am
anyway, that light cyan burns my eyes, can it be changed to something more friendly?

Yes, I agree. Something more eyes-friendly :D.

Michael