Editor gutters should have a context menu. So you can add / modify breakpoints directly from the sidebar.
<rdar://problem/14811085>
Created attachment 209385 [details] [PATCH] Proposed Fix
Created attachment 209386 [details] [IMAGE] New Context Menus
Comment on attachment 209385 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=209385&action=review > Source/WebInspectorUI/UserInterface/SourceCodeTextEditor.js:704 > + contextMenu.appendItem(WebInspector.UIString("Add Breakpoint"), addBreakpoint.bind(this)); Would anyone prefer the wording "Create Breakpoint"? Xcode does not have an equivalent of this menu item for adding/creating a breakpoint.
Comment on attachment 209385 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=209385&action=review >> Source/WebInspectorUI/UserInterface/SourceCodeTextEditor.js:704 >> + contextMenu.appendItem(WebInspector.UIString("Add Breakpoint"), addBreakpoint.bind(this)); > > Would anyone prefer the wording "Create Breakpoint"? Xcode does not have an equivalent of this menu item for adding/creating a breakpoint. I like Add better. > Source/WebInspectorUI/UserInterface/SourceCodeTextEditor.js:723 > + contextMenu.appendItem(WebInspector.UIString("Reveal in Debugger Navigator"), revealInSidebar); I think Debugger Navigator sounds funny. This would read better as Debugger Navigation Sidebar.
Committed <http://trac.webkit.org/changeset/154550>.