简体   繁体   中英

How to stop lines of code from automatically shifting to the next line whenever I resize the window of the editor?

I am using Sublime Text 2. When I am on an HTML file. If I resize the window. The code at the very end shifts down to the next line. How do I stop this from happening? I want the code to continue onward, so I will have to scroll side to side to see the rest of the code and not have the shift to the next line.

I have taken screenshots to better illustrate what I am referring to.

完整的代码窗口

After window has been resized. Notice the number lines? How do I stop that? I'd rather scroll right to see the rest of the code instead of having the code jump to the next line.

调整大小的窗口

I noticed this only happens in an HTML file.

Look in the default Preferences.sublime-settings file for the setting below:

// Disables horizontal scrolling if enabled.
// May be set to true, false, or "auto", where it will be disabled for
// source code, and otherwise enabled.
"word_wrap": "auto",

If you want the default for word wrap to be off for all syntax types:

Copy "word_wrap": "auto", into your user Preferences.sublime-settings file

If you want the default for word wrap to be off for code and off for HTML but on for other syntax types:

Copy "word_wrap": "auto", into the HTML.sublime-settings file


Set it to "word_wrap": "false", .

Now your default for HTML will be word wrap is off .

You can change this anytime by toggling the Word Wrap item in the View menu or by launching the Control Panel and typing enough of word wrap until the Word Wrap: Toggle item is selected and hitting Return .

只需在“查看”菜单中取消选中“自动换行”即可。

  1. Open an HTML file with sublime
  2. Choose Preferences > Settings-More > Syntax Specific - User
  3. A file named HTML.sublime-settings will open
  4. Insert the following:

{
    "word_wrap": "false"
}

  1. save the file

You can specify a particular number of columns to display before wrapping, irrespective of the window width. Put your desired number of columns in the relevant preferences file:

"wrap_width": 80,

This is probably not what you want with HTML, but it helps with readability for things like Markdown, TeX, or plain text when the author didn't use line breaks.

set --> "word_wrap": "false" in "Sublime Text > Preferences > Settings".

It's instant change.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM