1. 13 5月, 2020 1 次提交
  2. 30 4月, 2020 1 次提交
  3. 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
  4. 20 4月, 2020 1 次提交
  5. 14 4月, 2020 1 次提交
  6. 10 3月, 2020 1 次提交
  7. 07 3月, 2020 1 次提交
  8. 03 3月, 2020 2 次提交
    • B
      Workbench editor renames (#91943) · 418d1974
      Benjamin Pasero 提交于
      * IEditor => IEditorPane
      
      * More panes:
      * IVisibleEditor => IVisibleEditorPane
      * ITextEditor => ITextEditorPane
      * ITextDiffEditor => ITextDiffEditorPane
      
      * imports - remove type alias
      
      * More pane renames
      * IEditorService#activeControl => activeEditorPane
      * IEditorService#visibleControls => visibleEditorPanes
      
      * More editor renames
      * activeTextEditorWidget => activeTextEditorControl
      * visibleTextEditorWidgets => visibleTextEditorControls
      418d1974
    • M
      ITheme -> IColorTheme · 6d4f8310
      Martin Aeschlimann 提交于
      6d4f8310
  9. 19 2月, 2020 1 次提交
  10. 18 2月, 2020 1 次提交
  11. 10 1月, 2020 1 次提交
  12. 08 1月, 2020 1 次提交
  13. 16 12月, 2019 1 次提交
  14. 15 11月, 2019 3 次提交
  15. 01 11月, 2019 1 次提交
  16. 25 10月, 2019 1 次提交
  17. 18 10月, 2019 2 次提交
  18. 17 10月, 2019 1 次提交
  19. 05 10月, 2019 1 次提交
  20. 16 9月, 2019 1 次提交
  21. 05 9月, 2019 1 次提交
  22. 02 9月, 2019 1 次提交
  23. 22 8月, 2019 1 次提交
  24. 19 8月, 2019 1 次提交
  25. 15 8月, 2019 1 次提交
  26. 25 7月, 2019 1 次提交
  27. 17 7月, 2019 1 次提交
  28. 10 7月, 2019 1 次提交
  29. 11 6月, 2019 1 次提交
  30. 28 5月, 2019 1 次提交
  31. 24 5月, 2019 1 次提交
    • M
      Clean up some usages of `IDisposable[]` · 0f32f0ef
      Matt Bierner 提交于
      Part of #74250
      
      - Extend `Disposable` in classes where it makes sense
      - Use `DisposableStore` for lists of disposables
      - Make `combinedDisposable` take arguments instead of an array (so that you can't pass in an array and then modify the array after the fact)
      0f32f0ef
  32. 14 5月, 2019 1 次提交
  33. 16 4月, 2019 3 次提交
  34. 15 4月, 2019 1 次提交