21 lines
441 B
Factor
21 lines
441 B
Factor
|
! Copyright (C) 2003, 2007 Slava Pestov.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
IN: prettyprint.config
|
||
|
USING: arrays generic assocs io kernel math
|
||
|
namespaces sequences strings io.styles vectors words
|
||
|
continuations ;
|
||
|
|
||
|
! Configuration
|
||
|
SYMBOL: tab-size
|
||
|
SYMBOL: margin
|
||
|
SYMBOL: nesting-limit
|
||
|
SYMBOL: length-limit
|
||
|
SYMBOL: line-limit
|
||
|
SYMBOL: string-limit
|
||
|
|
||
|
global [
|
||
|
4 tab-size set
|
||
|
64 margin set
|
||
|
string-limit off
|
||
|
] bind
|