factor/basis/prettyprint/config/config.factor

21 lines
441 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
! Copyright (C) 2003, 2007 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: prettyprint.config
2008-04-20 06:15:46 -04:00
USING: arrays generic assocs io kernel math
2007-09-20 18:09:08 -04:00
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