お世話になります。
現在twigでコードを書いているのですが、気づくと改行した際に自動でインデントしていたのにしてくれなくなりました。
HTMLでは以前できていたのに、今はHTMLやPHPもできない状態です。
わかる方がいらっしゃいましたら教えていただけると非常に助かります。
お手数おかけいたしますが、よろしくお願いいたします。
該当の.twigの状況です。
該当のソースコード
私のVScodeの設定です。
settings.json
1{ 2 "editor.suggestSelection": "first", 3 "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", 4 "workbench.iconTheme": "vscode-icons", 5 "workbench.settings.useSplitJSON": true, 6 "liveServer.settings.donotShowInfoMsg": true, 7 "plantuml.commandArgs": [ 8 "-Xmx2g", 9 "-DPLANTUML_LIMIT_SIZE=16384" 10 ], 11 "plantuml.render": "PlantUMLServer", 12 "[html]": { 13 }, 14 "workbench.activityBar.visible": true, 15 "editor.minimap.enabled": true, 16 "html.format.indentHandlebars": true, 17 "html.format.indentInnerHtml": true, 18 "[javascript]": { 19 "editor.defaultFormatter": "vscode.typescript-language-features" 20 }, 21 "workbench.colorTheme": "GitHub Dark", 22 "window.zoomLevel": 0, 23 "auto-close-tag.fullMode": true, 24 "auto-close-tag.SublimeText3Mode": true, 25 "[css]": { 26 }, 27 "vs-kubernetes": { 28 "vs-kubernetes.minikube-path.mac": "/Users/piyotaro/.vs-kubernetes/tools/minikube/darwin-amd64/minikube" 29 }, 30 "timeline.excludeSources": [], 31 "editor.renderControlCharacters": false, 32 "emmet.triggerExpansionOnTab": true, 33 "emmet.excludeLanguages": [ 34 35 "markdown" 36 ], 37 "emmet.includeLanguages": { 38 "twig": "html", 39 "vue": "html", 40 "vue": "css" 41 }, 42 "files.autoSave": "afterDelay", 43 "editor.fontSize": 14, 44 "editor.tabSize": 2, 45 "editor.wordWrap": "on", 46 "editor.fontFamily": "Space Mono, 'MyricaM M', Menlo, Monaco, 'Courier New', monospace", 47 "phpcs.standard": "", 48 "intelephense.phpdoc.classTemplate": { 49 50 "summary": "$1", 51 "tags": [ 52 "@package ${1:$SYMBOL_NAMESPACE}" 53 ] 54 }, 55 "yaml.schemas": { 56 "file:///Users/piyotaro/.vscode/extensions/atlassian.atlascode-2.8.3/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 57 }, 58 "settingsSync.ignoredExtensions": [ 59 ], 60 "editor.codeActionsOnSave": null, 61 "window.openFilesInNewWindow": "off", 62 "editor.multiCursorModifier": "ctrlCmd", 63 "editor.snippetSuggestions": "top", 64 "editor.renderWhitespace": "all", 65 "json.schemas": [ 66 ], 67 "editor.formatOnSave": true, 68 "editor.formatOnPaste": true, 69 "editor.formatOnType": true, 70 "explorer.sortOrder": "mixed", 71 "[yaml]": { 72 "editor.insertSpaces": true, 73 "editor.tabSize": 2, 74 "editor.quickSuggestions": { 75 "other": true, 76 "comments": false, 77 "strings": true 78 }, 79 "editor.autoIndent": "full" 80 }, 81 "editor.trimAutoWhitespace": false, 82 "autoprefixer.formatOnSave": true, 83 "csscomb.formatOnSave": true, 84}
試したこと
"editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": true,
上記の部分を false にしてみたり true にしてみたり、
ワークスペースに参考サイトを見ながら書いた内容もあったのですが、
そちらがあると混乱しそうでしたので一度すべて削除いたしました。
今はユーザーの設定のみです。
補足情報(ツールのバージョンなど)
Visual Studio Code のバージョンは 1.50.1 です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。