How can I enable word wrapping in PhpStorm?

I need to enable it only for some of my files (with extension .txt). Is it possible?

有帮助吗?

解决方案

For all files (default setting for opened files): Settings/PreferencesEditorGeneralUse soft wraps in editor. You can now specify file names/extensions where this option will be enabled by default:

Enter image description here


For the currently opened file in the editor: menu → ViewActive EditorUse Soft Wraps (Note: I've assigned custom Ctrl + Alt + R + shortcut for that)

Enter image description here

For quite a while (since v2016 or so) you can also access this option via the context menu for the editor gutter area (the area with line numbers on the left side of the editor):

Enter image description here

(Note: I have customised this menu quite a bit; by default it has much less items here)


Search Everywhere (Shift 2x times) or menu HelpFind Action... (Ctrl + Shift + A on Windows using the Default keymap) can also be used to quickly change this option (instead of going into Settings/Preferences).

Enter image description here

其他提示

You have to enable Soft Wraps. Find that option through this path.

Menu ViewActive EditorUse Soft Wraps

Wrap words in PhpStorm

Right click on the line number area and choose:

Soft-Wrap All Files or Soft-Wrap Current File, i.e.:

Enter image description here

  • Menu FileSettingsEditorUse soft wraps in editor: to turn them on for all files by default.

  • Menu FileSettingsCode StyleGeneralWrap when typing reaches right margin

    .. but that's different (it will make new line).

In addition to Settings -> Editor -> Use soft wraps in editor I recommend Use soft wraps in console and Use custom soft wraps indent with a setting of 4 to make the wraps indented to match the line they started on.

In PhpStorm 2019.1.3, it is possible to enable soft wrap for some file types only.

enter image description here

In PhpStorm 2019.1.3, you should add the file type you want to make soft wrapping on.

Go to SettingsEditorGeneralSoft-wrap files, and then add any types you want:

Enter image description here

You may also want to consider the Wrap to Column plugin, which implements the equivalent to Alt + Q in Emacs and gq in Vim. This may be preferable to having very long lines that are wrapped by the editor.

This plugin can be installed from any IntelliJ IDEA-based IDE by searching for Wrap to Column.

It has the additional benefit that you can choose to wrap only sections of text that you want :-)

If using PhpStorm 2019 and higher

PhpStorm word wrapping settings screenshot

Menu FileSettingsEditorGeneral.

There is the 'Soft-wrap files' input under the 'Soft Wraps' Header.

*.md; *.txt; *.rst; .adoc;

Add the file types to this field in which files you want them to be used.

*.md; *.txt; .rst; .adoc;.php;.js

WebStorm 10.0.4

For wrapping text/code line by default, but for all types of file: menu FileSettingsEditorGeneral → section "Soft Wraps" → checkbox "Use soft wraps in editor".

For word wrapping in PhpStorm 2019.1.3, just follow below steps:

From the top navigation menu:

ViewActive EditorSoft-Wrap

That's it so simple.

I want to soft-wrap .php files. Putting that in the allowed list still was not working. (For a screenshot, see Mohammed Zayan's answer.)

I entered *.* there, allowing all the files (I am fine with that) and soft wrap worked fine.

For word wrapping in PhpStorm:

  1. Select File from the menu
  2. From File select Setting
  3. From Setting, select Editor
  4. Select General from Editor
  5. In general, checked Use soft wraps in editor from the Soft wraps section
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top