# REPL emits columns when \`show(;allrows=true)\` is executed in Debug Console

**URL:** https://discourse.julialang.org/t/repl-emits-columns-when-show-allrows-true-is-executed-in-debug-console/94154
**Category:** VS Code
**Tags:** question, debugging
**Created:** [February 6, 2023, 6:04pm UTC](https://discourse.julialang.org/t/repl-emits-columns-when-show-allrows-true-is-executed-in-debug-console/94154 "2023-02-06T18:04:02Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mkarikom](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mkarikom/32/7096_2.png) [@mkarikom](https://discourse.julialang.org/u/mkarikom)
#### Post date: [February 6, 2023, 6:04pm UTC](https://discourse.julialang.org/t/repl-emits-columns-when-show-allrows-true-is-executed-in-debug-console/94154/1 "2023-02-06T18:04:02Z")

</div>

Steps to reproduce:

1. debug some script in vscode where a DataFrame `df` is generated
2. type `show(df,allcols=true)` in the Debug Console like

```julia
show(df,allcols=true)
nothing

```

1. check the output in Terminal and see something like this:

```julia
Row │ pw pdn ds dsdn     
     │ Any Any Any Any      
─────┼───────────────────────────────────────────────────────────────────────────────────────────────────────────────────
  ⋮ │ ⋮ ⋮ ⋮ ⋮
                                                                                                           2 rows omitted

```
