Ajay Mehta

Results 22 comments of Ajay Mehta

I think the approach of using a regex for LaTeX similar to what was done for cross-references in [this PR](https://github.com/tjmahr/WrapRmd/pull/17) would work. ``` r re_latex [1] "$\alpha + \beta$" ```...

So, the value in the .gitconfig file has `\\` as path separator but as stated in my previous comment, `git config --get core.excludesFile` returns **c:\users\ajay\.gitconfig** with `\` as separator which...

Yes, you are right. I should have been **more specific** saying that single `\` is a problem when followed by certain characters such that it forms an escape sequence. For...

Thanks for the primer on escaping, @Bobronium. I understand how escaping works but not how it is done in JS/TS 😃 A PR to fix this would be great.

Awesome 👍 On Mon, Aug 15, 2022, 9:15 AM Arseny Boykov ***@***.***> wrote: > A PR to fix this would be great. > > There is one! > > —...

/demo ```powershell Get-Date ``` [Workflow run](https://github.com/Amadevus/pwsh-script/actions/runs/1025389165)

It doesn't work with dotnet CLI tooling. Blocked by [this issue ](https://github.com/dotnet/msbuild/issues/10266).

Another approach for getting package references: ```lua local output = vim.fn.system("dotnet list [] --format json") local pkgs = vim.json.decode(output) ``` `pkgs` is a table that you can iterate to get...

Getting `PropertyGroup` for projects needs to take account of possible [`Directory.Build.props` files](https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-by-directory?view=vs-2022#directorybuildprops-and-directorybuildtargets).

1. I have seen multiple solution files in the same repo to handle cases where you want to include/exclude different projects, e.g. one solution file for all projects and another...