foxale

Results 13 comments of foxale

I've done some digging in the meantime, and [here](https://github.com/codemirror/CodeMirror/issues/2840) is the workaround for anyone who comes across this issue: ```js document.querySelector('.CodeMirror').CodeMirror.constructor.Vim.map('jk', '', 'insert') ```

It looks like the color is predefined in _[codemirror.css](https://codemirror.net/lib/codemirror.css)_ ```css .cm-fat-cursor .CodeMirror-cursor { width: auto; border: 0 !important; background: #7e7; } .cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } .cm-fat-cursor-mark { background-color:...

I also need to have all Python libraries installed. But.. why?

I don't have anything running on those ports. The error message does not appear when using other kedro commands like `kedro jupyter lab`, `kedro lint`, etc. However, it appears while...

After a quick debug session, it seems the problem is with `run_server` function, specifically [this line](https://github.com/kedro-org/kedro-viz/blob/7018ebbfef522f71168f0e798614a5fbaf1e0bac/package/kedro_viz/server.py#L82): ```python catalog, pipelines, session_store_location = kedro_data_loader.load_data( path, env, extra_params ) ```

Thanks for the proposed solution, that makes sense. Isn't that still a bug though? Like, `kedro-viz` is completely independent from `kedro-mlflow`, so why would you need to change the source...

So I had a while to think about it, and I think it's still (at least just a little bit) on `kedro-viz`. This package is related only to "core" kedro...

Same here, Big Sur 11.4 Edit: In my case it was the same problem as described here: https://github.com/pqrs-org/Karabiner-Elements/issues/2636 My IT department worked out the details and now I have it...

This is exactly what we were looking for today. We were thinking about parametrizing pandas-profiling package, in a way that allows you to decide which dataset to profile and how....