We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f7eb5c + 7c8ddab commit 5d79fa5Copy full SHA for 5d79fa5
fortls/objects.py
@@ -427,9 +427,9 @@ def get_placeholders(arg_list: list[str]):
427
for i, arg in enumerate(arg_list):
428
opt_split = arg.split("=")
429
if len(opt_split) > 1:
430
- place_holders.append(f"{opt_split[0]}=${{{i+1}}}:{{{opt_split[1]}}}")
+ place_holders.append(f"{opt_split[0]}=${{{i+1}:{opt_split[1]}}}")
431
else:
432
- place_holders.append(f"${{{i+1}}}:{{{arg}}}")
+ place_holders.append(f"${{{i+1}:{arg}}}")
433
arg_str = f"({', '.join(arg_list)})"
434
arg_snip = f"({', '.join(place_holders)})"
435
return arg_str, arg_snip
0 commit comments