Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove breakpoints from the margin in Notepad++?

Tags:

notepad++

I often select lines by clicking the line number in the margin in Notepad++ but I often click slightly to the right of the number which sets a breakpoint rather than selecting the line. I never use breakpoints in Notepad++ so I am looking for how to remove breakpoints from the margin so that I don't accidentally click it all the time.

Image of breakpoint in the margin

like image 841
Keavon Avatar asked Feb 28 '15 21:02

Keavon


People also ask

How do I remove margins from notepad?

2 it's an option in the preferences. Under the "Editing" tab. They call it "Folder Margin Style". You can now select "none".

How do I turn off breakpoints?

To disable a single breakpoint, uncheck the checkbox next to it in the breakpoints list. in the toolbar.

What is the shortcut key to clear all breakpoints?

To clear all breakpoints in the application From the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).


1 Answers

Notepad++ has bookmarks, not breakpoints. They're useful sometimes because you can set them and use F2 or Shift+F2 to navigate between them.

You can turn them off in Settings which will remove the column next to the line numbers.

Circa-2020 Versions:

  • Settings → Preferences → Editing → uncheck "Display bookmarks"

Circa-2021 Versions:

  • Settings → Preferences → Margins/Border/Edge → uncheck "Display bookmark"
like image 63
takteek Avatar answered Sep 20 '22 17:09

takteek