Linda_pp
Linda_pp
Thank you for the suggestion. Yes, I thought about some kind of constant folding. Since type conversions of expressions of GitHub Actions workflow are quite implicit (for example, `'true' ==...
I'm sorry for delay of response. And thank you for the suggestion. Since actionlint's type system does not have union types like `"push" | "pull_request"`, currently this cannot be solved...
I agree that explicitly configuring `timeout-minutes` is useful to avoid common mistake around hanging jobs. However I feel causing an error due to lack of `timeout-minutes` configuration is opinionated. There...
Good point. actionlint currently types `github.event` as an object which accepts *any* properties. It's possible to give stricter type to `github.event`. But it is a bit challenging in the following...
Properties other than `github.event.*` are already typed strictly following the official document (e.g. `runner.tmp`). So I believe the remaining payloads which are not typed well are only `github.event.*`. Let me...
I can't remember why actually... but I think it's because members of `array_view` are `const` qualified. `array_view` represents fixed length view for various arrays. So its length is fixed with...
I did a poll on Twitter (sorry for Japanese). https://twitter.com/Linda_pp/status/1456855781500878854 101 people voted and 88 / 101 said the character is not displayed correctly.
@sharkdp > Shouldn't clear_highlights be called automatically after .print()ing? It also makes sense. https://github.com/sharkdp/bat/blob/7fe4fdf33df3aa958b3263a939a8b24b9d06f534/src/pretty_printer.rs#L242-L248 The line ranges are cloned into `config.highlighted_lines` at L248. So the line ranges in `PrettyPrinter` instance...
@saks Thank you for the point and sharing the solution. Perhaps checking `buftype` option might be more generic solution. `buftype=nofile` is set to buffer which does not represent a file...
I guess implementing `LanguageClient_textDocument_close_hover()` which ensures to close hover solves your issue. ```vim autocmd CursorHold *.cpp call LanguageClient_textDocument_close_hover() | call LanguageClient_textDocument_hover() ``` I would be glad to implement it if...