Nikolaus Wittenstein
Nikolaus Wittenstein
Let's say I have the following skhdrc: ``` home : skhd -k "cmd - left" end : skhd -k "cmd - right" ``` This does what I'm looking for -...
I'm running the latest release of cquery (v20180718) with SublimeLSP, and I'm seeing a weird behavior. It looks like it's loading my compile_commands.json correctly, in that it processes all of...
Right now buildifier leaves single-item lists alone. That is, if it sees something like: ``` srcs = [ "foo", ], ``` or like: ``` srcs = ["foo"], ``` it will...
The `parse.file_contents` function ([mentioned here](https://github.com/PyCQA/isort/issues/1273#issuecomment-675779769)) doesn't seem to support imports that are indented (such as in a `try` block or in a function). This is in contrast to `identify.imports`, which...
(This is based on top of #35, so just look at the last commit. I can rebase if you like.) This adds a config option to align lists of arguments...
Update subword keybindings to match Sublime Text's: Mac: ``` { "keys": ["ctrl+alt+left"], "command": "move", "args": {"by": "subwords", "forward": false} }, { "keys": ["ctrl+alt+right"], "command": "move", "args": {"by": "subword_ends", "forward": true}...
[This comment](https://github.com/astral-sh/uv/issues/511#issuecomment-1831526605) discusses a second type of dependency overriding: > Replace the requirement on foo==1.2.3 in bar with foo==4.5.6. With this, you say "While bar wants foo 1.2.3, i have...
This adds a `MODULE.bazel` and associated [`WORKSPACE.bzlmod` file](https://bazel.build/external/migration#workspace.bzlmod). It also adds a `.bazelversion` file because the repo doesn't yet build with Bazel 7. I tested by building locally with `CC=clang...
I'm trying out the event stream using the API and it looks like as a subscriber I get a [callback with the new state](https://github.com/home-assistant-libs/aiohue/blob/99c36b80b3a2afbf111be913106bdbb1a4c80169/aiohue/v2/controllers/base.py#L251-L253), `cur_item`. Is there any way to...
I'd like to be able to asynchronously execute a plan, and then monitor whether the plan is still running (or get a callback when it's done; either way). The only...