reibitto
reibitto
This idea originated from #126 Basically, if the structure of the error is preserved, it'll be possible to write a custom render function for `Help`. This can have uses such...
This idea came up once before here: https://github.com/zio/zio/pull/1838#issuecomment-535629515 Basically for when you want to run individual tests/suites with a TestAspect. I like this idea for cases where you don't want...
@hmemcpy told me to report this one. Basically I was using scalatest's `in` which takes in an `=> Any` (well, the default ones at least look like that). A method...
Methods like `#::` and `prepend` on `NonEmptyLazyList` are not call-by-name currently, which causes misuse of it to blow up eagerly. For example: ```scala val lazyList = 1 #:: 2 #::...
You should be able to set shortcuts for your commands (for example, cmd+G for Google, etc). If a single shortcut is bound to multiple commands, select the one with the...
The README is going to continue to grow as more commands are added. And I want to add more details about each command. That's why it probably makes sense to...
The file that needs to be modified is [SwitchWindowCommand.scala](https://github.com/reibitto/command-center/blob/81663de8615a67cbdf03f119a26ab8ddbd4c8925/core/src/main/scala/commandcenter/command/SwitchWindowCommand.scala#L12) I don't know if jna-platform has all the functions necessary to make this possible for macOS and Linux. If they're not...
Some ideas for additional actions: - [ ] Minimize all windows for a particular monitor - [ ] ["Almost maximize"](https://github.com/rxhanson/Rectangle#almost-maximize) like in Rectangle - [ ] Refactor `GlobalAction` to be...
Currently the window manager actions are written for Windows. We should also support macOS and Linux. It's mostly a matter of porting [these methods](https://github.com/reibitto/command-center/blob/70ca2b716ff3569b83b59b95076728cc0a09d68b/emulator-core/src/main/scala/commandcenter/GlobalActions.scala) and adding cases for `OS.MacOS` and...
I don't know the feasibility of this, but looking into alternative terminal emulators might be nice. The Swing one I created seems to work fine and all, but I imagine...