GitXplorerGitXplorer
p

REPLTreeViews.jl

public
30 stars
3 forks
5 issues

Commits

List of commits on branch master.
Unverified
969f04ce641d137ad9c4231f490a362a0fbdf8a2

add readme/license

ppfitzseb committed 5 years ago
Unverified
a53bf3f6d2502574823be2eb0e535846d1dc5692

fix project.toml

ppfitzseb committed 5 years ago
Unverified
866a27fa3ef41f392fea8a1162d51b68ac7eeede

add project.toml

ppfitzseb committed 6 years ago
Unverified
c8e20e0f3c97ddbbcf5d3cda46b5fc81c549fa42

better default printing for a few types

ppfitzseb committed 6 years ago
Unverified
234d92eda1da99144e0583e63c2a391f16756325

add REPLTreeViewDisplay, fix depwarns

ppfitzseb committed 6 years ago
Unverified
693818920d5070553ac6420b88ea1d2c6047cacd

fix stuff

ppfitzseb committed 6 years ago

README

The README file for this repository.

REPLTreeViews.jl

This package provides an experimental macro to interactively show complex data structures in the REPL.

Use @ishow to show the argument:

julia> @ishow Dict(:a => rand(10), :b => Dict(:c => 3))
Dict{Symbol,Any}
 ▼  a
    ▼  Array{Float64,1}
          0.6010674310215398
          0.1621627174514002
          0.9886458128892404
          0.3731520463002518
          0.7318310542335174
          0.4109065883177705
          0.09802040153654223
          0.25096526653794693
          0.6469920970392866
          0.9278104891830838
[▼] b
    ▶  Dict{Symbol,Int64}

You can navigate with the cursor keys, expand/collapse items with Enter, and quit the interactive display with q.