vscode-nim icon indicating copy to clipboard operation
vscode-nim copied to clipboard

Autocomplete in String Interpolation

Open iambudi opened this issue 4 years ago • 0 comments

Hi, thank you for this great vscode extension. I'm wndering if this already supported: when using fmt for string interpolation how to allow autoclose bracket and autocomplete variables?


import strformat
type User = object
    name: string

const john = User(name: "John Wick")

# typing `{` will add `}` and typing john. will popup `name`
echo fmt"First user is {john.name}" 

Thank you in advance.

iambudi avatar Aug 23 '20 05:08 iambudi