1. 08 5月, 2021 2 次提交
    • A
      Remove extension dir scan catch · 51d294e1
      Asher 提交于
      Now that we are creating the directories these shouldn't error. If they
      are somehow missing (if the user deletes them after VS Code starts for
      example) then I think we should surface that to the user.
      51d294e1
    • A
      Make sure directories exist · 9ff29d17
      Asher 提交于
      Fixes #3040.
      9ff29d17
  2. 07 5月, 2021 1 次提交
    • A
      Squashed 'lib/vscode/' changes from 631dbe250bc..cfa2e218100 · 372a8f14
      Akash Satheesan 提交于
      cfa2e218100 Make sure we actually update the local resource roots (#122957)
      206524cbf6f Merge pull request #122941 from microsoft/roblou/fix122701
      0ce07162f07 Use the scoped context key service for notebook editor context keys Fix #122701
      4fbe56e36b3 Merge pull request #122933 from microsoft/aeschli/122466
      32a743d2af9 [JSON] Schema not found error on opening package.json. For #122279
      0676e9a727e Fix port theme color typo (#122915)
      85f8ebf1687 Fix context on LabelTunnelAction (#122856)
      5913f53cab5 Block windows/iframes from preventing the unload (#122835) (#122869)
      acd78c82ac6 Ensure that notebook cell URIs work (#122747)
      4e185d89863 Merge pull request #122764 from microsoft/roblou/fix122407
      7eb7814b56c Try to block webviews from cancelling unloads (#122758)
      25092105030 Hardcode keybinding string to fix #122407
      b084e6f4a73 Fix currently active indicator preventing editor switching (#122742)
      bc2373aaa54 Merge pull request #122732 from microsoft/r156_tabs
      d7a86f269a8 Disable tabs by default
      
      git-subtree-dir: lib/vscode
      git-subtree-split: cfa2e218100323074ac1948c885448fdf4de2a7f
      372a8f14
  3. 06 5月, 2021 8 次提交
  4. 05 5月, 2021 4 次提交
  5. 04 5月, 2021 1 次提交
  6. 22 4月, 2021 3 次提交
    • A
      Catch socket close during protocol handshake · 16fc315a
      Asher 提交于
      zlib errors can cause the protocol handshake to not reject (until the
      timeout).
      16fc315a
    • A
      Move connection logic into connection class · f0bafa38
      Asher 提交于
      - Moved everything I could into the class itself.
      - Improve the logging situation a bit.
      - Switch some trace logs to debug.
      - Get debug port from message arguments.
      f0bafa38
    • A
      Improve protocol class · ae6089f8
      Asher 提交于
      - Move destroy logic into the class itself
      - Improve logging a bit
      - Remove the record option; we should always do this when using
        permessage-deflate.
      - Let debug port be null (it can be null in the message args).
      - Add setSocket so we don't have to initiate a connection to set it.
      - Move inflate bytes logic into the class itself.
      ae6089f8
  7. 16 4月, 2021 3 次提交
  8. 14 4月, 2021 3 次提交
    • A
      fix(lib/vscode): fix lint errors · 9f256cd8
      Akash Satheesan 提交于
      9f256cd8
    • A
      093743e3
    • A
      Get terminals working · 5ebb096d
      Asher 提交于
      - Instead of a single listener per terminal that handles all events VS
        Code now has a single listener per event that handles that event for
        all terminals.
      - Refactor Terminal to extend TerminalProcess to avoid duplicating
        methods. This required some modifications to TerminalProcess to access
        the pid and title and to set the ID.
      - Remove our async change to shutdown. This was necessary to avoid
        disposing too early but shutdown already calls dispose so it turns out
        we didn't need to call it ourselves.
      - Rename methods to match the command strings.
      - Fix getting system shell (uses process.env).
      - Use a single bufferer. Since it already supports buffering for
        multiple terminals there's no need to have one per terminal.
      - Remove replay/reconnect logic. It's broken and unused so there doesn't
        seem much point in trying to refactor it to fit the changes right now.
      
      While terminals work now there are still a lot of todos.
      5ebb096d
  9. 09 4月, 2021 8 次提交
  10. 07 4月, 2021 1 次提交
  11. 01 4月, 2021 1 次提交
    • A
      Fix tsc watch restarting when it shouldn't · 101c2a01
      Asher 提交于
      It seems reaching into lib/vscode for the types caused tsc to establish
      watches that caused it to restart over and over while vscode was
      building.
      
      The strategy used here is to symlink it instead which is the same thing
      we do for the proxy agent.
      101c2a01
  12. 26 3月, 2021 1 次提交
  13. 24 3月, 2021 3 次提交
  14. 23 3月, 2021 1 次提交