-
Notifications
You must be signed in to change notification settings - Fork 1
Leave editor appearance settings to each user #133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,16 +28,24 @@ | |
| "customizations": { | ||
| "vscode": { | ||
| "settings": { | ||
| "editor.fontFamily": "HackGen, 'BIZ UDPGothic', Meiryo, 'Hiragino Kaku Gothic ProN', 'SF Mono', Consolas, monospace", | ||
| "editor.fontSize": 14, | ||
| // 動作に関わる設定(研究室標準として維持。見た目系のように各ユーザへは委ねない): | ||
| // - files.autoSave / autoSaveDelay: 編集中ファイルの自動保存 | ||
| // - terminal...defaultProfile: makefile / asdf が bash ログインシェルを前提とする | ||
| // - terminal...osc52: `am s` のクリップボードコピーに必要 | ||
| "files.autoSave": "afterDelay", | ||
| "files.autoSaveDelay": 1000, | ||
| "terminal.integrated.defaultProfile.linux": "bash", | ||
| "terminal.integrated.fontSize": 14, | ||
| "terminal.integrated.fontFamily": "HackGen, 'BIZ UDPGothic', Meiryo, 'Hiragino Kaku Gothic ProN', 'SF Mono', Consolas, monospace", | ||
| "terminal.integrated.osc52": "copy", | ||
| //"workbench.colorTheme": "Default Light+", | ||
| "window.zoomLevel": 0, | ||
|
|
||
| // フォント・外観設定は各ユーザの VS Code 設定に委ねます。 | ||
| // 研究室推奨のデフォルト値を使う場合は、以下のコメントを外してください。 | ||
| // "editor.fontSize": 14, | ||
| // "editor.fontFamily": "HackGen, 'BIZ UDPGothic', Meiryo, 'Hiragino Kaku Gothic ProN', 'SF Mono', Consolas, monospace", | ||
| // "terminal.integrated.fontSize": 14, | ||
| // "terminal.integrated.fontFamily": "HackGen, 'BIZ UDPGothic', Meiryo, 'Hiragino Kaku Gothic ProN', 'SF Mono', Consolas, monospace", | ||
| // "workbench.colorTheme": "Default Light+", | ||
| // "window.zoomLevel": 0, | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ℹ️ [LOW] コメントアウトされた外観設定ブロック(42〜47行目)の末尾に空行(48行目)が追加されていますが、その直後の |
||
| // Java settings - override host settings for container | ||
| "java.jdt.ls.java.home": null, | ||
| "java.configuration.runtimes": [] | ||
|
|
@@ -51,30 +59,30 @@ | |
| "zainchen.json", // Json | ||
| "oderwat.indent-rainbow", // Indent Rainbow | ||
| "shardulm94.trailing-spaces", // Trailing Spaces | ||
|
|
||
| // Java | ||
| "redhat.java", // Language Support for Java(TM) by Red Hat | ||
| "vscjava.vscode-java-debug", // Debugger for Java | ||
| "vscjava.vscode-java-test", // Test Runner for Java | ||
| "vscjava.vscode-maven", // Maven for Java | ||
| "vscjava.vscode-java-dependency", // Project Manager for Java | ||
|
|
||
| // Python | ||
| "ms-python.python", // Python | ||
| "ms-python.debugpy", // Python Debugger | ||
| "ms-python.pylint", // Pylint | ||
| "ms-python.flake8", // Flake8 | ||
| "ms-python.black-formatter", // Black Formatter | ||
|
|
||
| // Ruby | ||
| "shopify.ruby-lsp", // Ruby LSP (Official Ruby language server) | ||
| "castwide.solargraph", // Ruby Solargraph | ||
| "koichisasada.vscode-rdbg", // VSCode rdbg Ruby Debugger | ||
|
|
||
| // Elixir | ||
| "elixir-lsp.elixir-ls", // ElixirLS: Elixir support and debugger | ||
| "mjmcloug.vscode-elixir", // vscode-elixir | ||
|
|
||
| // General programming support | ||
| "ms-vscode.vscode-json", // JSON Language Features | ||
| "ms-vscode.hexeditor", // Hex Editor | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ℹ️ [LOW]
"files.autoSave": "afterDelay"および"files.autoSaveDelay": 1000は動作に影響する設定ですが、これらも個人の好みに依存する部分があります。例えば、自動保存を好まないユーザや、遅延時間を変えたいユーザにとっては強制になります。PR の方針(見た目系は委譲、動作系は維持)に照らすと、自動保存は「動作系」として残す判断も理解できますが、意図的に残した理由をコメントで補足しておくと、将来のメンテナンス時に混乱を防げます。例: