pragmagic/vscode-nim

Rename does'nt rename in type declaration

Opened this issue · 0 comments

Same as #190 but for type

type
  Directions = enum east, west, north, south
  SomeObj = object
    bar: int
    
proc foo(str: string): Directions = 
  west # rename this doesnt rename it on second line
  
proc sas() =
  var someObj = SomeObj()
  someObj.bar = 25  # rename bar here do nothing