1. 20 3月, 2019 2 次提交
  2. 19 3月, 2019 3 次提交
  3. 15 3月, 2019 1 次提交
  4. 14 3月, 2019 1 次提交
  5. 11 3月, 2019 2 次提交
  6. 06 3月, 2019 2 次提交
  7. 20 2月, 2019 1 次提交
  8. 15 2月, 2019 1 次提交
  9. 14 2月, 2019 1 次提交
  10. 13 2月, 2019 5 次提交
  11. 12 2月, 2019 2 次提交
  12. 11 2月, 2019 1 次提交
  13. 08 2月, 2019 1 次提交
  14. 07 2月, 2019 2 次提交
  15. 22 1月, 2019 1 次提交
  16. 11 1月, 2019 1 次提交
  17. 13 12月, 2018 1 次提交
  18. 03 12月, 2018 1 次提交
  19. 12 11月, 2018 1 次提交
  20. 06 10月, 2018 1 次提交
    • M
      Add retrigger characters to SignatureHelpProvider · 2f51e971
      Matt Bierner 提交于
      Introduces the concept of a re-trigger character to the signature help provider. This is a seperate set of characters that are registered with the provider. Typing a retrigger character fires a new signature help request if signature help is already showing.
      
      #54972
      2f51e971
  21. 03 10月, 2018 1 次提交
  22. 02 10月, 2018 1 次提交
  23. 11 9月, 2018 1 次提交
    • M
      Initial work on signature help context (#58135) · d33b1c30
      Matt Bierner 提交于
      * Initial work on signature help context
      
      Fixes #54972
      
      Adds `SignatureHelpContext`. This tells providers why signature help was requested
      
      TODO:
      
      - [ ] Better understand semantics of retrigger. Should `retrigger` be an flag instead of a `triggerReason`?
      - [ ]  Fix skipped test
      - [ ] Add more tests for trigger reasons / trigger characters
      
      * Fix unit test
      
      * Make sure we retrigger sig help if it is already showing
      
      * Add test for dismiss and re-invoke
      
      * Extract some constants
      
      * Extract createMockEditor
      d33b1c30
  24. 04 9月, 2018 3 次提交
  25. 03 9月, 2018 1 次提交
  26. 19 7月, 2018 1 次提交
    • M
      Finalize definition link (#54424) · 44cd521c
      Matt Bierner 提交于
      Finalize the definition link api
      
      - Gives fields more explicit names (target and origin)
      - Moves api to vscode.d.ts
      - Makes other definition providers (such as type definition provider and implementation provider) also return definition links
      
      Fixes #54101
      44cd521c
  27. 21 6月, 2018 1 次提交
    • M
      Definition link API (#52230) · 0532c31e
      Matt Bierner 提交于
      * Definition link
      
      Add a new `DefinitionLink` type. This type allows definition providers to return additional metadata about a definition, such as the defining span.
      
      Hook up this new provider for typescript
      
      This PR replaces #48001
      
      * Correctly mark field optional
      
      * Small code fixes
      
      - Use lift
      - Remove unused param
      
      * Adding documentation
      0532c31e