From ce44871ea8fc19da0ac50d6b7a440fbca3e79163 Mon Sep 17 00:00:00 2001 From: Stefan Karpinski Date: Wed, 14 Jun 2017 22:35:28 -0400 Subject: [PATCH] base/repl: collect all repl-related file under one directory --- base/{ => repl}/LineEdit.jl | 0 base/{ => repl}/REPL.jl | 0 base/{ => repl}/REPLCompletions.jl | 0 base/{ => repl}/Terminals.jl | 0 base/{ => repl}/emoji_symbols.jl | 0 base/{ => repl}/latex_symbols.jl | 0 base/sysimg.jl | 8 ++++---- doc/src/manual/interacting-with-julia.md | 2 +- 8 files changed, 5 insertions(+), 5 deletions(-) rename base/{ => repl}/LineEdit.jl (100%) rename base/{ => repl}/REPL.jl (100%) rename base/{ => repl}/REPLCompletions.jl (100%) rename base/{ => repl}/Terminals.jl (100%) rename base/{ => repl}/emoji_symbols.jl (100%) rename base/{ => repl}/latex_symbols.jl (100%) diff --git a/base/LineEdit.jl b/base/repl/LineEdit.jl similarity index 100% rename from base/LineEdit.jl rename to base/repl/LineEdit.jl diff --git a/base/REPL.jl b/base/repl/REPL.jl similarity index 100% rename from base/REPL.jl rename to base/repl/REPL.jl diff --git a/base/REPLCompletions.jl b/base/repl/REPLCompletions.jl similarity index 100% rename from base/REPLCompletions.jl rename to base/repl/REPLCompletions.jl diff --git a/base/Terminals.jl b/base/repl/Terminals.jl similarity index 100% rename from base/Terminals.jl rename to base/repl/Terminals.jl diff --git a/base/emoji_symbols.jl b/base/repl/emoji_symbols.jl similarity index 100% rename from base/emoji_symbols.jl rename to base/repl/emoji_symbols.jl diff --git a/base/latex_symbols.jl b/base/repl/latex_symbols.jl similarity index 100% rename from base/latex_symbols.jl rename to base/repl/latex_symbols.jl diff --git a/base/sysimg.jl b/base/sysimg.jl index b7ce80453a33e..16874fadcb50a 100644 --- a/base/sysimg.jl +++ b/base/sysimg.jl @@ -360,10 +360,10 @@ using .I18n # frontend include("initdefs.jl") -include("Terminals.jl") -include("LineEdit.jl") -include("REPLCompletions.jl") -include("REPL.jl") +include("repl/Terminals.jl") +include("repl/LineEdit.jl") +include("repl/REPLCompletions.jl") +include("repl/REPL.jl") include("client.jl") # Stack frames and traces diff --git a/doc/src/manual/interacting-with-julia.md b/doc/src/manual/interacting-with-julia.md index 7cd36431a3328..d59b954535fff 100644 --- a/doc/src/manual/interacting-with-julia.md +++ b/doc/src/manual/interacting-with-julia.md @@ -202,7 +202,7 @@ end atreplinit(customize_keys) ``` -Users should refer to `base/LineEdit.jl` to discover the available actions on key input. +Users should refer to `LineEdit.jl` to discover the available actions on key input. ## Tab completion