Ryo Kitagawa
Ryo Kitagawa
This plugin doesn't work when `TabNine::config` is typed. This is because `asyncomplete.vim` call `complete` command only when specified characters such as `.` and `:` so on are typed. https://www.tabnine.com/semantic For...
resolve #26
Use webhook and publish error when BerglasSecret is applied.
Hi @tjdevries, Thank you for the nice plugin! I use this plugin in Windows10. And, I cloned `lua_language_server` to `${vim.fn.stdpath('cache')}/nvim_lsp/sumneko_lua/` by myself. But, nvim_lsp returns errors as the following. This...
Currently, `Labels` returns `*zerolog.Event`. So, we can't call Labels command more than once. I want to do it as follows. Do you think about this? ```go // prepare common label...
```python from luigi.util import inherits class Config(luigi.Config): hoge: int = luigi.IntParameter() @inherits(Config) class Hoge(gokart.TaskOnKart): ... Hoge(hoge=1) # mypy error ```
## Expected ```python T = Literal["foo", "bar"] t: T = luigi.ChoiceParameter(choices=typing.get_args(T), var_type=str) # ok ``` ## Actual ```python T = Literal["foo", "bar"] t: T = luigi.ChoiceParameter(choices=typing.get_args(T), var_type=str) # mypy: error...