JunoLab / Juno.jl

MIT License
144 stars 23 forks source link

[BUG] Juno is not duplicating error message to REPL correctly #578

Open AzamatB opened 4 years ago

AzamatB commented 4 years ago

Details

Steps to reproduce

  1. Select Show Errors in REPL under the UI Options of julia-client settings
  2. evaluate in the editor (by pressing Cmd + Enter) using DataFrames; df = DataFrame(a=1); df[2,3]. The error that gets duplicated to REPL is incorrect: Message to the right (correct): ERROR: BoundsError: attempt to access 1×1 DataFrame at index [2, 3] Message in the REPL (incorrect): ERROR: BoundsError: attempt to access DataFrame at index [2, 3] (<- not printing dimensions) If I paste the code into REPL directly it generates the error message correctly.
pfitzseb commented 4 years ago

I can't repro this: image

AzamatB commented 4 years ago

Strange... Here's what I'm getting:

Screen Shot 2020-05-11 at 4 57 42 PM