前提・実現したいこと
現在djangoの勉強でyoutubeを見ながらコードを記述している状態です。
htmlのページを作成しているときにfor文を使用し、ctrl + s で保存すると
改行していたものが、解除されてしまいます。
自動改行自体は普段から重宝しているので設定を触って自動改行を解除する、
という手段はできれば避けたいです。
追記
使用エディタはvscodeになります。
該当のソースコード
python
1 {% for post in posts %} 2 {{ post.title }} 3 {{ post.author }} 4 {{ post.date_posted }} 5 {{ post.content }} 6 {% endfor %}
上記の状態から保存すると下記のようになってしまいます。
python
1 {% for post in posts %} {{ post.title }} {{ post.author }} {{ post.date_posted }} {{ post.content }} {% endfor %}
試したこと
インデントを使用したり消したり
pylint_djangoのプラグイン追加
補足情報(FW/ツールのバージョンなど)
python3.9
vscode1.51.1
appdirs 1.4.4
asgiref 3.3.1
astroid 2.4.2
certifi 2020.11.8
colorama 0.4.4
distlib 0.3.1
Django 3.1.4
filelock 3.0.12
isort 5.6.4
lazy-object-proxy 1.4.3
mccabe 0.6.1
MouseInfo 0.1.3
numpy 1.19.4
opencv-contrib-python 4.4.0.46
Pillow 8.0.1
pip 20.3
pipenv 2020.11.15
PyAutoGUI 0.9.52
PyGetWindow 0.0.9
pylint 2.6.0
PyMsgBox 1.0.9
pyperclip 1.8.1
PyRect 0.1.4
PyScreeze 0.1.26
PyTweening 1.0.3
pytz 2020.4
setuptools 49.2.1
six 1.15.0
sqlparse 0.4.1
toml 0.10.2
virtualenv 20.2.1
virtualenv-clone 0.5.4
wrapt 1.12.1
回答1件
あなたの回答
tips
プレビュー