]> gitweb.factorcode.org Git - factor.git/blob - basis/prettyprint/config/config.factor
Create basis vocab root
[factor.git] / basis / prettyprint / config / config.factor
1 ! Copyright (C) 2003, 2007 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 IN: prettyprint.config
4 USING: arrays generic assocs io kernel math
5 namespaces sequences strings io.styles vectors words
6 continuations ;
7
8 ! Configuration
9 SYMBOL: tab-size
10 SYMBOL: margin
11 SYMBOL: nesting-limit
12 SYMBOL: length-limit
13 SYMBOL: line-limit
14 SYMBOL: string-limit
15
16 global [
17     4 tab-size set
18     64 margin set
19     string-limit off
20 ] bind