Tom Hughes

Results 7 issues of Tom Hughes

Following on to the request in #180, I'd like the plugin to be able to allow specifying multiple remote names (or match with regex). The plugin would then show the...

When opening or copying the URL with gitlink, I'd like to be able to choose between two different custom hosts that I have configured with the same base URL. For...

Stripped down test case: ```bash #!/bin/bash keep_parents=( "/some/path" "/other/path" ) my_function() { local find_args=( "${S}" -mindepth 1 ) for p in "${keep_parents[@]}"; do find_args+=( ! -path "${p}" ) done }...

Example: ``` def method(self): """Short description @returns: some return val """ pass ``` Gets converted to: ``` def method(self): """Short description Returns: s: some return val """ pass ```

In an Electron-based app, I encountered an issue where one user was unable to update. The logs in `ShipIt_stderr.log` showed this message over and over: ``` Installation error: Error Domain=SQRLShipItRequestErrorDomain...

Fixes #228 In the case where this._push(frame) returns null (i.e., the frame is too large for the window and split or the window size is

Fix GOAWAY deserialization when debug data is present. Additional debug data is allowed to be included in the GOAWAY frame: https://http2.github.io/http2-spec/#GOAWAY. We now put that data into `frame.debug_data` instead of...