Almar Klein
Almar Klein
Originally reported by: **lcvisser (Bitbucket: [lcvisser](http://bitbucket.org/lcvisser), GitHub: [lcvisser](http://github.com/lcvisser))** --- _Imported from [iep.googlecode.com issue #88](https://code.google.com/p/iep/issues/detail?id=88), reported by ludo.visser_ If you spread an import over multiple lines, the auto-import breaks: import sympy,...
Originally reported by: **Anonymous** --- Matlab IDE has a feature that I uses quite often: Whenever you double-click the title-bar of a window, it maximizes, and becomes the only window...
Originally reported by: **Anonymous** --- I'd really like to see an automatic nomination indentation in accordance with pep08. [http://www.python.org/dev/peps/pep-0008/](http://www.python.org/dev/peps/pep-0008/) For example: when you're typing function call with many parameters and...
Originally reported by: **Almar Klein (Bitbucket: [almarklein](http://bitbucket.org/almarklein), GitHub: [almarklein](http://github.com/almarklein))** --- We currently do the syntax parsing ourselves. This works, but we only support Python and a bit of C. If...
* [x] Easier way to write instructions (now you really need the wasm docs)? * [x] Util to package a collection of functions in a wasm module, i.e. you just...
If the process somehow fails to remove the lockfile, e.g. because the process (or system) crashes, the lockfile is left in place. ~~I *think* that this can be dealt with...
In order to prevent that calls to `print()` are lost, `jupyter_rfb` overloads `builtins.print` via a context manager, and places printed messages below the widget. The problem, as indicated by @QuLogic...
Would it make sense for the windows/widgets to have a title? How would we show it? When we implement this, also apply corresponding updates to Vispy (https://github.com/vispy/vispy/issues/2159) and wgpu-py /...
Would be nice to have some tests using this in an actual notebook and simulating user interaction. I don't consider this super-higher priority right now. Marked this as a good...
The `gfx.Color` object stores colors internally as 4 floats in a small ctypes array (`ctypes.c_float * 4`). One reason for doing it this way is that it could be a...