1. 22 10月, 2018 2 次提交
  2. 17 10月, 2018 6 次提交
  3. 16 10月, 2018 2 次提交
  4. 15 10月, 2018 5 次提交
  5. 13 10月, 2018 2 次提交
  6. 12 10月, 2018 9 次提交
  7. 11 10月, 2018 7 次提交
  8. 09 10月, 2018 3 次提交
  9. 08 10月, 2018 1 次提交
  10. 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
  11. 04 10月, 2018 2 次提交
    • M
      Removing or marking unused parameters · 1e5a5727
      Matt Bierner 提交于
      1e5a5727
    • M
      Switch to use standard @types/node types instead of our customized version · f7456ebf
      Matt Bierner 提交于
      Using a custom version of the node typings is causing a lot of pain while trying to upgrade our build to use `@types` instead of the `d.ts` files we have to maintain. I believe we primarily maintain our own version for two reason:
      
      - Custom require function
      - setTimeout and other timer functions return NodeJs.timer instead of a number
      
      These can both be delt with, the first by using interface augmentation and the second by switching to use any types for timer. I believe that the pain of maintaining our own node `d.ts` outweighs the benefits here
      
      This change switches us to use the standard @types/node package for our node typings
      f7456ebf