Lukas Geiger

Results 129 comments of Lukas Geiger
trafficstars

Hydrogen shouldn't register a keybinding for `ctrl-c`. Could you check which package registers this key binding by executing "Key Binding Resolver: Toggle" from the command palette and then pressing `ctrl-c`?

> Needed to know a clean and less messy way of running R code in atom. You can run R code with hydrogen if you install the IR kernel: https://nteract.io/kernels/r

Oh OK cool, Rbox uses Hydrogen to execute code and adds some custom keybindings. You can open a issue or a PR on [their repo](https://github.com/saeidamiri1/rbox) to remove the windows keybinding...

Great idea, but unfortunately I'm not sure if this is possible, since as far as I know Atom windows run in a separate process so we cannot easily move the...

Does it work in a saved file? If it does it's probably related to #1064 What command did you use to interrupt the kernel?

> @lgeiger no pressure, just wondering out of interest, are you not going to maintain `ide-python` anymore given that `atom-ide-ui` isn't developed and maintained by Facebook anymore? @hermidalc Thanks for...

> The most pressing thing right now regarding this issue is that ide-python does not work anymore with newer versions of pyls, so would consider this a semi-critical issue. I...

autopep8 should use the pycodestyle config so there is no need to add a configuration file. The language server supports both formatting ranges as well as the entire document. So...

`autopep8` should use the `pycodestyle` config so if you change the `pycodestyle` config autopep8 will respect that. I've personally been very happy with [`pyls-black`](https://github.com/rupert/pyls-black) for running black formatting and disabled...

I don't think the language server has support for the aggressive option: https://github.com/palantir/python-language-server/blob/develop/pyls/plugins/autopep8_format.py Feel free to send a PR, and we can start supporting it in `ide-python` as well