AREPL-vscode icon indicating copy to clipboard operation
AREPL-vscode copied to clipboard

Show full exception error message when hovering over inline exception name

Open Almenon opened this issue 5 years ago • 0 comments

dependency on https://github.com/Almenon/AREPL-vscode/issues/324

I tested it with below and it worked!

        return {
            range,
            hoverMessage: `Traceback (most recent call last):
  line 2, in <module>
ValueError: foo`,
            renderOptions: {
                after: {
                    contentText: text
                }
            }
        }

Almenon avatar Jul 03 '20 21:07 Almenon