0


Vscode、插件历史版本下载

Vscode

一、获取vscode版本
获取当前版本vscode的commit_id:Help -> About -> Commit

二、指定版本下载

  1. Win X64 System https://update.code.visualstudio.com/版本号/win32-x64-user/stable
  2. Linux X64 https://update.code.visualstudio.com/版本号/linux-deb-x64/stable
  3. Linux Arm64 debian https://update.code.visualstudio.com/版本号/linux-deb-arm64/stable
  4. Win Arm64 debian https://update.code.visualstudio.com/版本号/win32-arm64-user/stable

三、指定commitId下载

  1. https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable

插件

  1. https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-vscode-remote/vsextensions/remote-ssh/版本号/vspackage

最后分享一下我的配置

快捷键

  1. // Place your key bindings in this file to override the defaults
  2. [
  3. {
  4. "key": "ctrl+]",
  5. "command": "workbench.action.navigateForward",
  6. "when": "canNavigateForward"
  7. },
  8. {
  9. "key": "ctrl+shift+-",
  10. "command": "-workbench.action.navigateForward",
  11. "when": "canNavigateForward"
  12. },
  13. {
  14. "key": "ctrl+[",
  15. "command": "workbench.action.navigateBack",
  16. "when": "canNavigateBack"
  17. },
  18. {
  19. "key": "ctrl+alt+-",
  20. "command": "-workbench.action.navigateBack",
  21. "when": "canNavigateBack"
  22. },
  23. {
  24. "key": "ctrl+]",
  25. "command": "-editor.action.indentLines",
  26. "when": "editorTextFocus && !editorReadonly"
  27. },
  28. {
  29. "key": "ctrl+right",
  30. "command": "-editor.action.inlineSuggest.acceptNextWord",
  31. "when": "inlineSuggestionVisible && !editorReadonly"
  32. },
  33. {
  34. "key": "ctrl+right",
  35. "command": "-gitlens.key.ctrl+right",
  36. "when": "gitlens:key:ctrl+right"
  37. },
  38. {
  39. "key": "ctrl+left",
  40. "command": "-gitlens.key.ctrl+left",
  41. "when": "gitlens:key:ctrl+left"
  42. },
  43. {
  44. "key": "ctrl+left",
  45. "command": "-list.collapseAll",
  46. "when": "listFocus && !inputFocus && !treestickyScrollFocused"
  47. },
  48. {
  49. "key": "ctrl+left",
  50. "command": "-cursorWordLeft",
  51. "when": "textInputFocus"
  52. },
  53. {
  54. "key": "ctrl+right",
  55. "command": "-cursorWordEndRight",
  56. "when": "textInputFocus"
  57. },
  58. {
  59. "key": "ctrl+shift+right",
  60. "command": "-cursorWordEndRightSelect",
  61. "when": "textInputFocus"
  62. },
  63. {
  64. "key": "shift+alt+i",
  65. "command": "-editor.action.insertCursorAtEndOfEachLineSelected",
  66. "when": "editorTextFocus"
  67. },
  68. {
  69. "key": "ctrl+right",
  70. "command": "cursorLineEnd"
  71. },
  72. {
  73. "key": "ctrl+left",
  74. "command": "cursorLineStart"
  75. },
  76. {
  77. "key": "ctrl+b",
  78. "command": "-workbench.action.toggleSidebar"
  79. }
  80. ]

配置

  1. {
  2. "terminal.integrated.fontSize": 15,
  3. "security.workspace.trust.untrustedFiles": "open",
  4. "editor.minimap.enabled": false,
  5. "workbench.colorTheme": "Visual Studio 2017 Light - C++",
  6. "gnuGlobal.completion": "Disabled",
  7. "gnuGlobal.autoUpdate": "Disabled",
  8. "gnuGlobal.encoding": "utf-8",
  9. "gnuGlobal.globalExecutable": "/usr/local/bin/global",
  10. "gnuGlobal.gtagsExecutable": "/usr/local/bin/gtags",
  11. "editor.fontSize": 16,
  12. "window.zoomLevel": 0.5,
  13. "RainbowBrackets.depreciation-notice": false,
  14. "outline.showVariables": false,
  15. "workbench.editor.enablePreview": false,
  16. "workbench.settings.applyToAllProfiles": [
  17. "editor.stickyScroll.maxLineCount"
  18. ],
  19. "editor.stickyTabStops": true,
  20. "editor.stickyScroll.maxLineCount": 7,
  21. "editor.stickyScroll.defaultModel": "foldingProviderModel",
  22. "window.title": "${dirty}${activeEditorLong}${separator}${profileName}",
  23. "cmake.pinnedCommands": [
  24. "workbench.action.tasks.configureTaskRunner",
  25. "workbench.action.tasks.runTask"
  26. ],
  27. "editor.fontFamily": "JetBrains Mono, 'Droid Sans Mono', 'monospace', monospace",
  28. "cmake.showOptionsMovedNotification": false,
  29. "workbench.editor.tabSizing": "shrink",
  30. "git.openRepositoryInParentFolders": "never"
  31. }
标签: vscode ide 编辑器

本文转载自: https://blog.csdn.net/weixin_43538042/article/details/142417441
版权归原作者 骜蛟 所有, 如有侵权,请联系我们删除。

“Vscode、插件历史版本下载”的评论:

还没有评论