Conversation
|
Hi @glangford, can you please add specs to this? Thanks! |
|
Specs updated. |
Additional commentary on Git statusNote that this PR also fixes the latent problem of git status being incorrectly shown on paste. The solution is included as part of Because the file status in cache is null, the parent directory status was also incorrect. (Repro in master by copying and pasting files into a directory, change focus to another app, then change focus back). So an additional commit would be to change status = repo.getCachedPathStatus(@path) ? repo.getPathStatus(@path)rather than just status = repo.getCachedPathStatus(@path)Let me know if this sounds ok. Referenceshttps://github.com/atom/tree-view/blob/master/lib/file.coffee#L55 |

Fix #573