diff --git a/basis/command-line/command-line-docs.factor b/basis/command-line/command-line-docs.factor index 07930ad34b..6bcdd4f4af 100644 --- a/basis/command-line/command-line-docs.factor +++ b/basis/command-line/command-line-docs.factor @@ -129,12 +129,10 @@ $nl "\"factor-rc\" rc-path print" "\"factor-boot-rc\" rc-path print" } -"Here is an example " { $snippet ".factor-boot-rc" } " which sets up GVIM editor integration, adds an additional vocabulary root (see " { $link "vocabs.roots" } "), and increases the font size in the UI by setting the DPI (dots-per-inch) variable:" +"Here is an example " { $snippet ".factor-boot-rc" } " which sets up GVIM editor integration:" { $code - "USING: editors.gvim vocabs.loader ui.freetype namespaces sequences ;" + "USING: editors.gvim namespaces ;" "\"/opt/local/bin\" \\ gvim-path set-global" - "\"/home/jane/src/\" vocab-roots get push" - "100 dpi set-global" } ; ARTICLE: "cli" "Command line arguments" diff --git a/basis/tools/deploy/deploy-tests.factor b/basis/tools/deploy/deploy-tests.factor index e465578903..012b540511 100644 --- a/basis/tools/deploy/deploy-tests.factor +++ b/basis/tools/deploy/deploy-tests.factor @@ -1,9 +1,9 @@ +USING: tools.test system io io.encodings.ascii io.pathnames +io.files io.files.info io.files.temp kernel tools.deploy.config +tools.deploy.config.editor tools.deploy.backend math sequences +io.launcher arrays namespaces continuations layouts accessors +urls math.parser io.directories tools.deploy.test ; IN: tools.deploy.tests -USING: tools.test system io.pathnames io.files io.files.info -io.files.temp kernel tools.deploy.config tools.deploy.config.editor -tools.deploy.backend math sequences io.launcher arrays namespaces -continuations layouts accessors io.encodings.ascii urls math.parser -io.directories tools.deploy.test ; [ t ] [ "hello-world" shake-and-bake 500000 small-enough? ] unit-test