jtilander / niftyplugins

Visual Studio productivity plugins
MIT License
40 stars 24 forks source link

Nifty Perforce Does Not Work With the Visual Studio Python Tools #97

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install Visual Studio Python tools
2. Create a project and some file
3. Have them checked in to perforce
4. Try to use Nifty Edit on the .py file.

What is the expected output? What do you see instead?
No output, just does nothing.

What version of the product are you using? On what operating system?
1.4.0 on win 7 x64.

Please provide any additional information below.

I did fix this on my end. The fix is super trivial.
In file: ItemCommandBase.cs:line 29:

m_fileItemGUID == sel.ProjectItem.Kind

should be:

m_fileItemGUID == sel.ProjectItem.Kind.ToUpper()

Original issue reported on code.google.com by vilhelme...@gmail.com on 11 Jan 2013 at 4:07

GoogleCodeExporter commented 9 years ago
Thanks, I'll merge this in.

Original comment by jim.tila...@gmail.com on 21 Jan 2013 at 1:53

GoogleCodeExporter commented 9 years ago
Fixed in version 137

Original comment by jim.tila...@gmail.com on 21 Jan 2013 at 1:57