development

VSCode에서 단어 줄 바꿈을 켜고 끄는 방법은 무엇입니까?

big-blog 2020. 2. 27. 22:24
반응형

VSCode에서 단어 줄 바꿈을 켜고 끄는 방법은 무엇입니까?


코드 파일을 사용할 때 줄 바꿈을 위해 더 긴 줄이 필요하지 않습니다. 그러나 .md파일의 경우 실제로 유용합니다. 그러나 바꿈이 가능 하도록 줄 바꿈을 활성화하는 옵션을 찾지 못하는 것 같습니다 .

재현하려면 충분히 작은 창으로 크기가 조정 된 VSCode를 열고 새 문서에 다음 텍스트를 입력하십시오.

This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum. This is my test lorem ipsum.
A linebreak before this. 

효과는 다음과 같습니다.

누락 된 단어 줄 바꿈의 예

가로 줄 스크롤 막대를 멀리두고 창 1의 오른쪽에 줄 1 줄을 배치하려고합니다.

내 자신의 질문에 대답하기 위해 몇 가지 일을했습니다.

  • 검색 스택 오버플로 :이 값을 쓸 때 결과가 0입니다.
  • VSCode 메뉴를 꼼꼼하게 살펴 보았습니다.
  • "wrap"과 함께 명령 팔레트를 사용하면 일치하는 명령이 없습니다.

아마도 불가능하고 기능 요청을 제출해야합니까? 아니면 뭔가 빠졌습니까?

빠르게 켜고 끌 수 있기를 원합니다. 예를 들어 @PanagiotisKanavos 는 설정에서 래핑 동작을 변경하기 위해이 솔루션 에 대해 언급 했지만이 작업을 수행하는 빠른 명령 또는 메뉴 옵션을 찾고 있습니다 (Notepad ++ 및 Sublime Text 2와 유사).


v1.0부터는 자동 줄 바꿈을 전환 할 수 있습니다.

  • 새로운 명령 editor.action.toggleWordWrap으로
  • 로부터 View메뉴 (보기> 토글 바꿈), 또는
  • 사용하여 ALT+의 Z(Mac 용 키보드 단축키 +을 Z).

다음 설정으로 제어 할 수도 있습니다.

  • editor.wordWrap
  • editor.wordWrapColumn
  • editor.wrappingIndent

파일> 환경 설정> 사용자 설정으로 이동하십시오.

기본 설정이 열리고 settings.json자동으로 열립니다 . settings.json파일에 다음을 추가 하고 저장하십시오. 기본 설정을 덮어 씁니다.

// Place your settings in this file to overwrite the default settings
{ "editor.wrappingColumn": 0 }

편집중인 설정의 스크린 샷


버전 0.3.0 부터 래핑이 명령 팔레트에 배치되었습니다. Toggle Word Wrap또는 ALT+로 활성화 할 수 있습니다 Z.


wrappingColumn에 찬성하여 사용되지 않습니다 wordWrap.

이 줄을 settings.json에 추가하여 기본적으로 wordWrap을 설정하십시오.

"editor.wordWrap": "on" 

또는 열린 사용자 설정 :

맥 : +,

윈도우 : Ctrl+,

그런 다음 "wordWrap"을 검색하거나 '일반적으로 사용되는'설정을 스크롤하여 찾은 다음 'on'을 선택하십시오.

여기에 이미지 설명을 입력하십시오


대답하기에 조금 늦었지만 미래의 방문객을위한 것입니다. 이 스크린 샷을 확인하십시오. 그것이 도움이되기를 바랍니다.

여기에 이미지 설명을 입력하십시오


Since 1.9 It's possible to select a specific language for word wrap settings (or any settings). You can find this in the command palette under:

Preferences: Configure Language Specific Settings...

Which will take you to your "settings.json" for a selected language where you might include:

"[markdown]": {
  "editor.wordWrapColumn": 100,
  "editor.wordWrap": "wordWrapColumn"
},

Not sure when it was added, but I'm using v0.10.8 and ALT+Z is keyboard shortcut for turning word wrap on and off. This satisfies the requirement of "able to turn it on and off quickly".

The setting does not persist after closing VS Code. To persist, you need to set it through Radha's answer of using the settings.json file...

// Place your settings in this file to overwrite the default settings
{ "editor.wrappingColumn": 0 }

Word wrap settings redesign

Here are the new word wrap options:

editor.wordWrap: "off" - Lines will never wrap.
editor.wordWrap: "on" - Lines will wrap at viewport width.
editor.wordWrap: "wordWrapColumn" - Lines will wrap at the value of editor.wordWrapColumn.
editor.wordWrap: "bounded" 

Lines will wrap at the minimum of viewport width and the value of editor.wordWrapColumn.


Go Prefences tab, then search as “word wrap”. The following gif is helpful too.

여기에 이미지 설명을 입력하십시오


  • Windows: control+shift + press the key "P", now in the command line type "Toggle Word Wrap" and press enter.
  • MAC: command+shift + press the key "P", now in the command line type "Toggle Word Wrap" and press enter.

I also needed the ability to toggle word wrap, so I wrote a patch:

https://github.com/Microsoft/vscode/pull/1653

I only had time to test on Linux. If anyone can help compile and test on other platforms (Mac OSX, Windows) and then help vote for it's addition to the base code, I would be grateful.

참고URL : https://stackoverflow.com/questions/31025502/how-to-switch-word-wrap-on-and-off-in-vscode



반응형