[解決済み] なぜvimが私のコードをラップするのを止められないのですか?
2022-05-04 10:01:36
質問
Pythonのコードをvimがラップするのを止められません。もし私が
:set nowrap
のように、しかし、まだラップされます。
を打つことができます。 J をクリックすると、分割されたコード行が統合されるので、本当のキャリッジリターンが挿入されているように見えます。ただ、その理由と停止方法がわかりません。
解決方法を教えてください。
'textwidth' 'tw' number (default 0)
local to buffer
{not in Vi}
Maximum width of text that is being inserted. A longer line will be
broken after white space to get this width. A zero value disables
this. 'textwidth' is set to 0 when the 'paste' option is set. When
'textwidth' is zero, 'wrapmargin' may be used. See also
'formatoptions' and |ins-textwidth|.
When 'formatexpr' is set it will be used to break the line.
NOTE: This option is set to 0 when 'compatible' is set.
'wrapmargin' 'wm' number (default 0)
local to buffer
Number of characters from the right window border where wrapping
starts. When typing text beyond this limit, an <EOL> will be inserted
and inserting continues on the next line.
Options that add a margin, such as 'number' and 'foldcolumn', cause
the text width to be further reduced. This is Vi compatible.
When 'textwidth' is non-zero, this option is not used.
See also 'formatoptions' and |ins-textwidth|. {Vi: works differently
and less usefully}
長い行を自動で折り返し、次の行に送ることを指す場合は、次のようにします。
:set textwidth=0
:set wrapmargin=0
関連
-
[解決済み] Netbeans IDE用Vimプラグイン [終了しました]。
-
[解決済み] viで複数行を素早くインデントする
-
[解決済み] vimでシステムのクリップボードからペースト(とコピー)するには?
-
[解決済み] Vimでクリップボードにコピーする方法は?
-
[解決済み] Vimで縦割りから横割りに高速で切り替えるには
-
[解決済み] Vimの中で端末を動かすにはどうしたらいいですか?
-
[解決済み] Vimで行全体を上下に移動させる
-
[解決済み】VIMがファイル末尾に改行を追加するのを止めるには?
-
[解決済み】Vimの場合、なぜ୧⃛(๑⃙⃘◡̈๑⃙⃘)୨⃛は改行されるの?
-
[解決済み] vim エディタで使用される vimrc ファイルを見つけるにはどうしたらいいですか?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み] .vimrcファイルはどこですか?
-
[解決済み] Vimの効果的な使い方:ワイルドメニュー
-
[解決済み] Vimで行末に移動するにはどうしたらいいですか?
-
[解決済み] .vimrcファイル内の<leader>とは何ですか?
-
[解決済み] Viでファイル全体のインデントを修正するには?
-
[解決済み] VimとCtagsのヒントとコツ [終了しました]。
-
[解決済み] vimで特定の文字にジャンプするには?
-
[解決済み] vimの "変更可能 "がオフになっている
-
[解決済み] vimdiff使用時に異なるcolorchemeを読み込む
-
[解決済み] Vimで、二重引用符の中をすべて削除するにはどうしたらいいですか?