1. 20 2月, 2021 2 次提交
  2. 12 2月, 2021 1 次提交
  3. 11 2月, 2021 3 次提交
  4. 26 1月, 2021 1 次提交
  5. 17 12月, 2020 1 次提交
  6. 26 11月, 2020 1 次提交
  7. 20 10月, 2020 1 次提交
  8. 23 9月, 2020 1 次提交
  9. 22 4月, 2020 1 次提交
    • M
      Add SyncActionDescriptor.from helper (#95731) · 7aa60aef
      Matt Bierner 提交于
      * Add SyncActionDescriptor.from
      
      There are a whole lot of places in our code where have the following pattern:
      
      ```
      actionRegistry.registerWorkbenchAction(SyncActionDescriptor.create(CreateNewLocalTerminalAction, CreateNewLocalTerminalAction.ID, CreateNewLocalTerminalAction.LABEL));
      ```
      
      Notice how the class name has to be repeated  three times.
      
      This change introduces a helper function `SyncActionDescriptor.from` that lets you instead just pass in the class:
      
      ```js
      actionRegistry.registerWorkbenchAction(SyncActionDescriptor.create(CreateNewLocalTerminalAction));
      ```
      
      * Avoid cast
      7aa60aef
  10. 15 11月, 2019 1 次提交
    • M
      Convert SyncActionDescriptor to use a `create` function (#84878) · 36a8322a
      Matt Bierner 提交于
      For #81574
      
      See #84669 for details of the problem around strict function types. This change converts `SyncActionDescriptor` to use a static `create` function. This allows us to make the `create` function generic so that it can take the correct types for strictFunctionTypes
      36a8322a
  11. 13 11月, 2019 1 次提交
  12. 04 3月, 2019 1 次提交
  13. 07 2月, 2019 2 次提交
  14. 28 11月, 2018 1 次提交
    • B
      Tweak lifecycle phases (#63899) · 24036d74
      Benjamin Pasero 提交于
      * lifecycle - signal READY earlier to allow commands to run
      
      * lifecycle - move READY phase as last thing into shell
      
      * workbench - isCreated() => isRestored()
      
      * lifecycle - tweak phase
      24036d74
  15. 19 11月, 2018 1 次提交
  16. 06 11月, 2018 1 次提交
  17. 04 10月, 2018 1 次提交
  18. 03 10月, 2018 1 次提交
  19. 09 8月, 2018 1 次提交
  20. 02 8月, 2018 1 次提交
  21. 14 11月, 2017 1 次提交
  22. 02 10月, 2017 1 次提交
  23. 25 9月, 2017 2 次提交
  24. 07 9月, 2017 1 次提交
  25. 01 8月, 2017 1 次提交
  26. 13 7月, 2017 1 次提交
  27. 12 7月, 2017 1 次提交
  28. 27 6月, 2017 1 次提交
  29. 20 6月, 2017 2 次提交
  30. 19 6月, 2017 1 次提交
  31. 06 6月, 2017 1 次提交
  32. 10 2月, 2017 1 次提交
  33. 03 2月, 2017 1 次提交
  34. 26 1月, 2017 1 次提交