AvinZarlez / unity-tools

A Visual Studio Code Extension to provide some tools for Unity development
https://marketplace.visualstudio.com/items?itemName=Tobiah.unity-tools
MIT License
31 stars 8 forks source link

On the Mac CMD+' does not bring up Unity Docs #3

Closed ConjecturDev closed 8 years ago

ConjecturDev commented 8 years ago

On OS X, your documentation says to use CMD+' to open documentation, unfortunately, this does not work. We found that if you do CTRL+' (The windows way) it works. But this is not documented in the extension. Is this intended, if so, you should update. If it's not, this is a bug that needs fixing.

In package.json, on line 55, it has CTRL regardless of OS

       "key": "ctrl+'",
        "when": "editorTextFocus && editorLangId == 'csharp'",
        "command": "extension.unityOpenDocs"
      },
      {
        "key": "ctrl+shift+'",
        "when": "editorTextFocus && editorLangId == 'csharp'",
        "command": "extension.unitySearchDocs"
AvinZarlez commented 8 years ago

Oops! Definitely a bug. I'll fix this tomorrow.

AvinZarlez commented 8 years ago

Fixed in 0.1.3

Thanks for pointing out the error on my part!