You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to plot benchmarks and at a certain point Visual Studio Code shows at the preview window (opens at hovering over an variable) says "Loading...".
I've excluded that its just VS Code, it could far more than my reproduction code could.
Additionally pie_charts were not affected...
Anywhere beyond 10e+7 is the border. When this happens, VSCode starts eating ram like Chrome and starts intellisense again when there is no more left, thus stariting over again. I have to comment it out, reopen it (VSCode) and then it is fine.
I tried to reproduce and could make this:
working example:
#let usual_plot_2 = {
let data_raw = (1, 2, 3, 4, 5)
let data = data_raw.enumerate()
let first_x = data.at(0).at(0)
let last_x = data.last().at(0)
let first_y = data.at(0).at(1)
let last_y = data.last().at(1)
let x_axis = axis(min: first_x, max: last_x + 1, location: "bottom")
let y_axis = axis(min: first_y, max: last_y + 1, location: "left")
let plot = plot(axes: (x_axis, y_axis), data: data)
graph_plot(plot, (100%, 50%))
}
#usual_plot_2
too large:
#let usual_plot_3 = {
let data_raw = (50000000000, 5555555555555555)
let data = data_raw.enumerate()
let first_x = data.at(0).at(0)
let last_x = data.last().at(0)
let first_y = data.at(0).at(1)
let last_y = data.last().at(1)
let x_axis = axis(min: first_x, max: last_x + 1, location: "bottom")
let y_axis = axis(min: first_y, max: last_y + 1, location: "left")
let plot = plot(axes: (x_axis, y_axis), data: data)
graph_plot(plot, (100%, 50%))
}
// #usual_plot_3
I was trying to plot benchmarks and at a certain point Visual Studio Code shows at the preview window (opens at hovering over an variable) says "Loading...".
I've excluded that its just VS Code, it could far more than my reproduction code could.
Additionally pie_charts were not affected...
Anywhere beyond 10e+7 is the border. When this happens, VSCode starts eating ram like Chrome and starts intellisense again when there is no more left, thus stariting over again. I have to comment it out, reopen it (VSCode) and then it is fine.
I tried to reproduce and could make this:
working example:
too large:
VS Code:
pie chart works fine:
The text was updated successfully, but these errors were encountered: