matdexir
matdexir
Hi Guys, I found a little workaround/hack that only requires 4 lines of lua code. ```lua local ok, hl = pcall(vim.api.nvim_get_hl_by_name, "Normal", true) if hl["background"] == nil then bg =...
Hi @aaronmondal I was thinking of taking on this issue if still available. Before proceeding, I was wondering: should it support both versions or only the human readable version?
Hi, Sorry for the late response! Didn't have enough time to dive into the issue. Here's a sample of how I think it would go: [preview gist](https://gist.github.com/matdexir/8b0285a63ec744f55d76131de643149a) _Note: I haven't...
Hi @allada Yes I wanted to take this one on. I live in a GMT+8 timezone so there may be delay in my response.
Hi @allada, Is there a specific test suite for this feature? Can't seem to get `bazel test ...` to run properly.
I am currently trying to get `bazel test ...` to run but for some reasons it fails. Here are the relevant logs: ``` ERROR: /home/matdexir/Files/Projects/nativelink/nativelink-config/BUILD.bazel:9:13: Rustfmt nativelink-config/nativelink-config.rustfmt.ok failed: (Exit 1):...
The most convenient solution I came up with was: ``` fn visit_str(self, v: &str) -> Result { let expanded = (*shellexpand::env(v).map_err(de::Error::custom)?).to_string(); let byte_size = Byte::parse_str(expanded, true).map_err(de::Error::custom)?; let byte_size_u128 = byte_size.as_u128();...
I'm currently missing a test case for duration values. I haven't found any config files that could make use of duration units from [here](https://github.com/TraceMachina/nativelink/tree/main/nativelink-config/examples). Any idea on where I could...
That's odd :thinking: It works all fine on my local machine. Could you give me a reproducible build with docker? FYI. I am using nix OS for dev. Here are...
I think that it should be fixed now. I also have updated it to match the latest release. Let me know if the issue still lingers NOTE: Currently `nativelink-store` tests...