For my git commits I use notepad++ and I would like to limit the number of characters in a line to 72 characters.
Normally, notepad++ show a sentence in a line until \n character, but I would like to automatically enter the content to the next line if the number of words exceeds a threshold. The Line mode just shows the vertical edge without entering to the new line.
Could you suggest me how to do it?
Thank you.
Asked
Active
Viewed 8,998 times
2

David Sopko
- 5,263
- 2
- 38
- 42

Karim
- 252
- 1
- 4
- 17
1 Answers
5
Are you looking for word wrap
?
if it is the case then the steps are as follows :
- Select “View” from menu bar.
- From the dropdown menu click on “Word wrap” option.
- The same steps are used to switch between Word wrap On & Off.

PKey
- 3,715
- 1
- 14
- 39
-
3That word wrap only controls how the text is shown on the screen, it does not limit the length of lines. You can easily see this by altering the width of the Notepad++ window. – AdrianHHH May 06 '17 at 09:08