From bcd54ddbf4f047621d30aa5c869d0909da768a93 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 20 Mar 2024 11:31:48 -0400 Subject: [PATCH] Broader DotSettings matcher --- fake_home/.rofi-list-git-repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fake_home/.rofi-list-git-repos.py b/fake_home/.rofi-list-git-repos.py index 07540da..879e899 100755 --- a/fake_home/.rofi-list-git-repos.py +++ b/fake_home/.rofi-list-git-repos.py @@ -41,7 +41,7 @@ def get_project_type(project) -> (str, str): return ("clion", None) if file.endswith(".csproj"): return ("rider", file) - if file.endswith("DotSettings"): + if "DotSettings" in file: # Allow .csproj to override this value ret = ("rider", None) if file.endswith(".py"):