phpstorm에서 단어 줄 바꿈
phpstorm에서 Word wraping을 어떻게 활성화합니까? 확장자가 .txt 인 일부 파일에 대해서만 활성화해야합니다. 가능합니까?
모든 파일 (열린 파일의 기본 설정) : Settings/Preferences | Editor | General | Use soft wraps in editor
편집기에서 현재 열린 파일의 경우 : Menu | View | Active Editor | Use Soft Wraps
최신 IDE 버전에서는 편집기 거터 영역 (편집기 왼쪽에 줄 번호가있는 영역)의 상황에 맞는 메뉴를 통해이 옵션에 액세스 할 수도 있습니다.
Search Everywhere
( Shift 2x times) 또는 Help | Find Action...
( Ctrl + Shift+ A기본 키맵을 사용하는 Windows의 경우)를 사용하여 설정 / 환경 설정 대신이 옵션을 빠르게 변경할 수 있습니다.
소프트 랩을 활성화해야합니다. 이 경로를 통해 해당 옵션을 찾으십시오.
보기> 활성 편집기> 소프트 랩 사용
Right click
줄 번호 영역에서 다음을 선택하십시오.
Soft-Wrap All Files
또는 Soft-Wrap Current File
, 즉 :
File | Settings | Editor --> Use soft wraps in editor
: 기본적으로 모든 파일에 대해 설정합니다.File | Settings | Code Style | General --> Wrap 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.
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 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 :-)
In PhpStorm 2019.1.3, it is possible to enable soft wrap for some file types only.
WebStorm 10.0.4
For wrapping text/code line by deafault, but for all types of file: File -> Settings -> Editor -> General -> section "Soft Wraps" -> checkbox "Use soft wraps in editor"
(imho)
In PhpStorm 2019.1.3 You should add file type you want to make soft wrapping on it
go to Settings -> Editor -> General -> Soft-wrap files then add any types you want
For Word Wrapping in Php Storm 2019.1.3 Just follow below steps:
from top nagivation menu
View -> Active Editor -> Soft-Wrap
that's it so simple.
Php Storm에서 단어 줄 바꿈의 경우 1. 메뉴에서 파일을 선택하십시오. 2. 파일 선택 설정에서 3. 설정에서 편집기를 선택하십시오. 4. 편집기에서 일반을 선택하십시오. 5. 일반적으로 소프트 랩핑 섹션에서 편집기에서 소프트 랩 사용을 선택하십시오.
참고 URL : https://stackoverflow.com/questions/10351608/word-wrapping-in-phpstorm
'IT' 카테고리의 다른 글
스도쿠 광장에서 볼록 결함을 제거하는 방법? (0) | 2020.05.21 |
---|---|
프로그래밍 방식으로 EditText의 입력 유형을 PASSWORD에서 NORMAL로 또는 그 반대로 변경 (0) | 2020.05.21 |
가장 많이 사용되지 않는 데이터 시각화 (0) | 2020.05.21 |
특정 부분 문자열 다음에 문자열 얻기 (0) | 2020.05.21 |
jq를 사용하여 json에서 여러 필드를 직렬로 구문 분석 및 표시 (0) | 2020.05.21 |