Author Topic: Syntax highlighting for the forum  (Read 12663 times)

takeshimiya

  • Guest
Syntax highlighting for the forum
« on: January 11, 2006, 06:04:13 pm »

Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: Syntax highlighting for the forum
« Reply #1 on: January 11, 2006, 06:09:17 pm »
It would be an useful addition IMHO :).

Michael

Offline Game_Ender

  • Lives here!
  • ****
  • Posts: 551
Re: Syntax highlighting for the forum
« Reply #2 on: January 16, 2006, 06:50:13 am »
I third the notion.

sethjackson

  • Guest
Re: Syntax highlighting for the forum
« Reply #3 on: January 16, 2006, 06:18:57 pm »
I'm all for it.  :D

Offline David Perfors

  • Developer
  • Lives here!
  • *****
  • Posts: 560
Re: Syntax highlighting for the forum
« Reply #4 on: January 16, 2006, 07:14:32 pm »
me to..
OS: winXP
Compiler: mingw
IDE: Code::Blocks SVN WX: 2.8.4 Wish list: faster code completion, easier debugging, refactoring

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: Syntax highlighting for the forum
« Reply #5 on: January 16, 2006, 07:32:39 pm »
And me _o/

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: Syntax highlighting for the forum
« Reply #6 on: January 16, 2006, 10:53:49 pm »
I'm against it.


... just kidding :P muahahaha. Yeah, I'm in favor, too.

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Syntax highlighting for the forum
« Reply #7 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;
}
Be patient!
This bug will be fixed soon...

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Syntax highlighting for the forum
« Reply #8 on: January 16, 2006, 11:20:00 pm »
Hmm... does it show "Created by GeSHI" every time?  :?
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: Syntax highlighting for the forum
« Reply #9 on: January 16, 2006, 11:22:31 pm »
we'll see
Code: cpp
int main()
{
  int x = 0,
} // end of main

seems so

Offline yop

  • Regular
  • ***
  • Posts: 387
Re: Syntax highlighting for the forum
« Reply #10 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
Life would be so much easier if we could just look at the source code.

takeshimiya

  • Guest
Re: Syntax highlighting for the forum
« Reply #11 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.
« Last Edit: January 17, 2006, 12:36:22 am by Takeshi Miya »

Offline Urxae

  • Regular
  • ***
  • Posts: 376
Re: Syntax highlighting for the forum
« Reply #12 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 :(.

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: Syntax highlighting for the forum
« Reply #13 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?

sethjackson

  • Guest
Re: Syntax highlighting for the forum
« Reply #14 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: