25 lines
616 B
Factor
25 lines
616 B
Factor
|
! Copyright (C) 2014 Jon Harper.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: kernel namespaces sequences ;
|
||
|
IN: yaml.config
|
||
|
|
||
|
! Configuration
|
||
|
! The following are libyaml's emitter configuration options
|
||
|
SYMBOL: emitter-canonical
|
||
|
SYMBOL: emitter-indent
|
||
|
SYMBOL: emitter-width
|
||
|
SYMBOL: emitter-unicode
|
||
|
SYMBOL: emitter-line-break
|
||
|
|
||
|
! Set this value to keep libyaml's default
|
||
|
SYMBOL: +libyaml-default+
|
||
|
|
||
|
{
|
||
|
emitter-canonical
|
||
|
emitter-indent
|
||
|
emitter-width
|
||
|
emitter-line-break
|
||
|
} [ +libyaml-default+ swap set-global ] each
|
||
|
! But Factor is unicode-friendly by default
|
||
|
t emitter-unicode set-global
|