Skip to content

Commit

Permalink
Disable VSCode persistent terminal sessions
Browse files Browse the repository at this point in the history
Persistent sessions: `terminal.integrated.enablePersistentSessions`.
Yet another obnoxious "feature" that shouldn't be enabled by default.

https://code.visualstudio.com/docs/getstarted/settings
https://code.visualstudio.com/docs/editor/integrated-terminal
https://code.visualstudio.com/updates/v1_54
https://github.com/microsoft/vscode/search?q=label%3Aterminal-persistence&type=issues

Other integrated terminal fixes and "features" I've had to disable:

- Terminal tabs:
  - 23e32a2
  - 4813726
- Rearranging `$PATH`: 3ca8e2c
- Breaking forward delete word: a71fdc7
  • Loading branch information
br3ndonland committed Dec 11, 2021
1 parent 3f97f50 commit d895455
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vscode/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@
"telemetry.telemetryLevel": "off",
"terminal.external.osxExec": "Terminal.app",
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.enablePersistentSessions": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.scrollback": 10000,
"terminal.integrated.tabs.enabled": false,
"update.mode": "manual",
Expand Down

0 comments on commit d895455

Please sign in to comment.