1. 23 9月, 2020 1 次提交
  2. 17 9月, 2020 1 次提交
  3. 16 9月, 2020 1 次提交
  4. 11 9月, 2020 1 次提交
  5. 10 9月, 2020 1 次提交
  6. 25 8月, 2020 1 次提交
  7. 30 7月, 2020 1 次提交
  8. 23 6月, 2020 1 次提交
  9. 17 6月, 2020 2 次提交
  10. 16 6月, 2020 1 次提交
  11. 13 5月, 2020 2 次提交
  12. 01 5月, 2020 1 次提交
    • E
      Fixes #96681 & more · f78c4706
      Eric Amodio 提交于
      Adds `workbench.workspaceFirstOpen` workspace setting to control applying a default layout
      Removes `firstRun` flag from `IDefaultLayout`
      Changes `IDefaultEditor` to require a `uri` rather than path+scheme - still supports a fallback until embedders can migrate
      Adds `openOnlyIfExists` property to `IDefaultEditor` for better control on if a file should be opened or not
      f78c4706
  13. 30 4月, 2020 1 次提交
  14. 29 4月, 2020 2 次提交
  15. 24 4月, 2020 1 次提交
  16. 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
  17. 07 4月, 2020 1 次提交
  18. 25 3月, 2020 1 次提交
  19. 22 1月, 2020 1 次提交
  20. 17 1月, 2020 1 次提交
    • J
      💬 Fix grammar on Welcome Page · b1b45aee
      Jason Fry 提交于
      **Why:**
      For whatever reason this particular grammar offense was really driving
      me batty. I try not to be a grammar nazi, hopefully this is a helpful
      change for others and not just my sanity :)
      
      **How:**
      Move the preposition 'out' to the start of the prepositional phrase,
      instead of the end of the phrase.
      
      Resolves #88799
      b1b45aee
  21. 16 12月, 2019 1 次提交
  22. 13 12月, 2019 1 次提交
  23. 12 12月, 2019 2 次提交
  24. 10 12月, 2019 1 次提交
  25. 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
  26. 13 11月, 2019 1 次提交
  27. 04 11月, 2019 1 次提交
  28. 09 10月, 2019 1 次提交
  29. 30 9月, 2019 1 次提交
  30. 27 9月, 2019 1 次提交
  31. 26 9月, 2019 2 次提交
  32. 25 9月, 2019 1 次提交
  33. 20 9月, 2019 1 次提交
  34. 16 9月, 2019 1 次提交
  35. 19 8月, 2019 1 次提交