Skip to content

Commit

Permalink
base/repl: collect all repl-related file under one directory
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed Jun 18, 2017
1 parent 5431b5e commit ce44871
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions base/sysimg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/src/manual/interacting-with-julia.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

3 comments on commit ce44871

@dhoegh
Copy link
Contributor

@dhoegh dhoegh commented on ce44871 Jun 25, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@StefanKarpinski it seems that the history of all the files involved in this move is gone, hence you stand as the only committer to the files. It makes back tracking of old work a bit harder. Is it not possible to move the files and keep the commit history?

@kmsquire
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haven't looked myself (and can't right now), but maybe you need to use --follow?

https://stackoverflow.com/a/2314757

@StefanKarpinski
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File move is entirely heuristic in git: a move is just rm + add with similar enough content. You do need to give the --follow argument (and maybe -M -M -C) to tell git to follow moved files.

Please sign in to comment.