2
私はちょうどテキストエディタブラケットを使い始めました。私が<
と入力すると、>
は終了タグ<
/p >
で自動的に完成します。環境設定ページを調整しようとしましたが、エディタを終了してバックアップを開いた後、環境設定ファイルが誤った.jsonファイルにあるというエラーがスローされます。ブラケットがオートコンプリートを無効にする
{
"brackets-eslint.gutterMarks": false,
"closeBrackets": false,
"smartIndent": false,
"brackets-eslint.useLocalESLint": false,
"fonts.fontSize": "12px",
"fonts.fontFamily": "'SourceCodePro-Medium', MS ゴシック, 'MS Gothic', monospace"
// Sets the tag closing options
"closeTags": {
// An array of tags that should not be auto-closed
"dontCloseTags": ["footer", "img", "p", "section", "article"],
// An array of tags that when opened has a blank line
"indentTags": [],
// Close when/of closing tag is typed
"whenClosing": true,
// Close when > of opening tag is typed
"whenOpening": true
}
ヘルプがありますか?