dotnet/roslyn

Undo should not result in a "rename" tracking session

Aperta

#26.673 aperta il 7 mag 2018

 (1 commento) (0 reazioni) (0 assegnatari)C# (4257 fork)batch import
Area-IDEBugFeature - Renamehelp wanted

Metriche repository

Star
 (20.414 stelle)
Metriche merge PR
 (Merge medio 6g 17h) (256 PR mergiate in 30 g)

Descrizione

Due to perf issues of bringing up the rename prompt, I've been making use of renaming tracking feature to rename symbols because it's much faster. However, I keep getting into states where it gets "confused" and cannot get it to auto rename to the name I want. Here's an example:

Steps to Reproduce:

  1. Using editor, rename Class -> NewClass
    public class Class
    {
    }

Should look like this: image

  1. Press ESC (or start typing) to dismiss renaming tracking
  2. Press CTRL+Z to undo rename
  3. Rename Class -> NewerClass
  4. Drop down lightbulb

Expected Behavior: To get code fix to rename Class to NewerClass

Actual Behavior: Get a code fix that asks me to rename NewClass to NewerClass

image

Guida contributor