Difference between revisions of "Textmode IDE"

From Lazarus wiki
Jump to navigationJump to search
Line 12: Line 12:
  
 
See also [[Textmode IDE development]]
 
See also [[Textmode IDE development]]
 +
 +
== How to get a bigger textmode screen under windows? ==
 +
 +
Adapt the properties of the IDE shortlink (set a 7 bit wide font if needed), or, if you prefer to execute from the commandline, make a batchfile that contains
 +
 +
 +
MODE CON COLS=132 LINES=70
 +
fp

Revision as of 19:07, 26 October 2008

English (en)

How to get the fpc ide running under Mac OS X

Terminals, fonts, ESC codes, and why do I get all these funny characters: Terminal & Fonts

Noticed TCRT does not give proper results in Darwin terminal.app. Using DEC control codes, some of them can be done.

White on black: Write( ESC, '[7m' ); Bright on black: Write( ESC, '[7;1m' );


See also Textmode IDE development

How to get a bigger textmode screen under windows?

Adapt the properties of the IDE shortlink (set a 7 bit wide font if needed), or, if you prefer to execute from the commandline, make a batchfile that contains


MODE CON COLS=132 LINES=70
fp