nyngwang
nyngwang
@nicolo-ribaudo I think this can be closed as we have [`exclude`](https://babeljs.io/docs/babel-preset-env#exclude) for exactly this purpose.
when testing: (still the current [`HEAD`](https://github.com/neovim/neovim/commit/e124672ce9a81e0ca32e6c30ea3730ad5fe981af), just checked.) ``` NVIM v0.10.0-dev-316+ge124672ce Build type: Release LuaJIT 2.1.0-beta3 ```
I'm sorry that I cannot provide minimal.lua at the moment since it requires adding LSP config in it too. My dotfiles is kinda complex. The following script is the full...
> What does `:set numberwidth` say? `:set numberwidth?` gives me `numberwidth=4`. I suspect this is related: I'm using a plugin to [auto-save](https://github.com/nyngwang/suave.lua/blob/3ac3d4096974ea0aefa9c713f47aaaff1088b30d/lua/suave/utils/autocmd.lua#L5_L19) the current buf for me. Is there any...
But I never set `numberwidth` explicitly in my dotfiles. Did you mean I should add one line in my dotfiles to set it to `1`? Oops, I just found that:...
But setting it to `1` doesn't help. I got the same result as the DEMO in my OP.
I just created a workaround for this, which I think could be added to statuscol.nvim: ```lua vim.api.nvim_create_autocmd({ 'CursorHold' }, { callback = function () vim.wo.numberwidth = vim.wo.numberwidth end }) ```...
Understood. I think I will keep my workaround locally. I, unfortunately, don't have enough time to produce the minimal.lua recently... You could keep this open and wait for someone who...
@davisyoshida Does this Repo. works on graph mode?
> @me You can just use tensorflow's built in stuff for graph mode. @davisyoshida Did you mean the provided `@tf.recompute_grad`? --- And now I'm facing a situation that needs some...