]> gitweb.factorcode.org Git - factor.git/blob - extra/readline-listener/readline-listener-docs.factor
Reformat
[factor.git] / extra / readline-listener / readline-listener-docs.factor
1 ! Copyright (C) 2011 Erik Charlebois.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
4 IN: readline-listener
5
6 HELP: readline-listener
7 { $description "Invokes a listener that uses libreadline for editing, history and word completion." } ;
8
9 ARTICLE: "readline-listener" "Readline listener"
10 { $vocab-link "readline-listener" }
11 $nl
12 "By default, the terminal listener does not provide any command history or completion. This vocabulary uses libreadline to provide a listener with history, word completion and more convenient editing facilities."
13 $nl
14 { $code "\"readline-listener\" run" }
15 ;
16
17 ABOUT: "readline-listener"