RESOLVED FIXED 145885
Web Inspector: When autocompleting, pressing tab twice shouldn't insert a tab character
https://bugs.webkit.org/show_bug.cgi?id=145885
Summary Web Inspector: When autocompleting, pressing tab twice shouldn't insert a tab...
Nikita Vasilyev
Reported 2015-06-11 11:03:14 PDT
Created attachment 254732 [details] Animated GIF of the problem It is very unlikely that someone would want to insert a tab character not for indentation.
Attachments
Animated GIF of the problem (11.06 KB, image/gif)
2015-06-11 11:03 PDT, Nikita Vasilyev
no flags
Patch (5.65 KB, patch)
2015-06-19 18:23 PDT, Devin Rousso
no flags
Patch (10.48 KB, patch)
2015-06-20 22:16 PDT, Devin Rousso
no flags
Patch (4.08 KB, patch)
2015-06-20 22:29 PDT, Devin Rousso
no flags
[Video] Expected behavior (165.31 KB, video/mp4)
2015-06-22 20:12 PDT, Nikita Vasilyev
no flags
Patch (4.20 KB, patch)
2015-06-29 15:47 PDT, Devin Rousso
no flags
Patch (9.03 KB, patch)
2015-07-01 19:33 PDT, Devin Rousso
no flags
Radar WebKit Bug Importer
Comment 1 2015-06-11 11:03:52 PDT
Chris Chiera
Comment 2 2015-06-15 10:02:48 PDT
To add, this bug also occurs in the styles panel. If you type for instance, "mar tab" it auto completes margin: and jumps to the value properly. You enter a value such as 10px then click tab again but rather than now jumping to add a new rule, it simply adds a tab which would serve 0 purpose in css. Occurring in Safari 8.1. Working in Chrome.
Devin Rousso
Comment 3 2015-06-19 18:23:35 PDT
Nikita Vasilyev
Comment 4 2015-06-19 18:42:29 PDT
https://bug-145885-attachments.webkit.org/attachment.cgi?id=254732 shows the problem in the console. This patch tackles the problem only in the styles panel; it should go into a new separate bug.
Devin Rousso
Comment 5 2015-06-20 22:16:56 PDT
Devin Rousso
Comment 6 2015-06-20 22:27:09 PDT
Sorry Nikita, I didn't see your last comment. I just created a new ticket for the styles sidebar tabbing functionality. I'll remove that code from this patch.
Devin Rousso
Comment 7 2015-06-20 22:29:40 PDT
Timothy Hatcher
Comment 8 2015-06-22 14:25:33 PDT
Comment on attachment 255312 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255312&action=review > Source/WebInspectorUI/UserInterface/Views/ConsolePrompt.js:169 > + _handleShiftTabKey: function(codeMirror) How does this differ from the built-in goWordLeft, goWordRight support in CodeMirror? (Control-Option-F & Control-Option-B) Maybe we should just wire up to those commands. That would just be: "Shift-Tab": "goWordLeft", "Tab": "goWordRight" Also, how does this handle autocompletion use of the Tab key?
Nikita Vasilyev
Comment 9 2015-06-22 20:12:03 PDT
Created attachment 255393 [details] [Video] Expected behavior Let me explain what this issue is all about. Steps to reproduce: 1. Open Console 2. Type "wind", suggestion popover with only one item, window, should show up. 3. Press Tab key, it should autocomplete 4. Press Tab again Actual: A tab character gets inserted after window, e.g. "window\t|" Expected: Nothing happens on the seconds Tab key press, e.g. "window|" This would match Firefox DevTools' (video attached) and Chrome DevTools' behavior. Regarding the patch: once again, there should a separate issue for that. I’m not against it, but it’s outside of the scope of this issue.
Devin Rousso
Comment 10 2015-06-29 15:47:58 PDT
Timothy Hatcher
Comment 11 2015-06-30 09:33:33 PDT
Comment on attachment 255785 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255785&action=review > Source/WebInspectorUI/ChangeLog:11 > + (WebInspector.ConsolePrompt.prototype._handleOnKeyEvent): Pressing any key other than tab will remove > + the "<- no results" if it exists. I don't think this is needed. You could just call InspectorFrontendHost.beep() if tab is pressed and does nothing, that is more inline with what happens on Mac for invalid keypresses. > Source/WebInspectorUI/UserInterface/Views/ConsolePrompt.js:194 > + if (trimmedLine.endsWith(".")) { > + this._completionController._completeAtCurrentPosition(true); > + return; > + } This is using private API and is making assumptions (endsWith(".")) about the completion controller that might not always be correct. It would be best to have a public API like "completeAtCurrentPositionIfNeeded".
Nikita Vasilyev
Comment 12 2015-06-30 23:43:41 PDT
This patch works as expected. Showing Firefox's style "<- no results" might be a bit excessive. On a slightly related topic, I have found an another autocomplete bug: https://bugs.webkit.org/show_bug.cgi?id=146496
Devin Rousso
Comment 13 2015-07-01 19:33:30 PDT
Timothy Hatcher
Comment 14 2015-07-01 20:40:52 PDT
Comment on attachment 255986 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255986&action=review > Source/WebInspectorUI/UserInterface/Models/WrappedPromise.js:26 > +WebInspector.WrappedPromise = class WrappedPromise Neat! > Source/WebInspectorUI/UserInterface/Views/ConsolePrompt.js:170 > + this._completionController.completeAtCurrentPositionIfNeeded().then(function(result) { Nice and clean this way.
Joseph Pecoraro
Comment 15 2015-07-01 21:20:32 PDT
+Brian. Your thoughts on the WebInspector.WrappedPromise? I prefer it for most async work that can't easily be resolved via an event. Think it will hit any anti-patterns?
WebKit Commit Bot
Comment 16 2015-07-01 21:31:51 PDT
Comment on attachment 255986 [details] Patch Clearing flags on attachment: 255986 Committed r186217: <http://trac.webkit.org/changeset/186217>
WebKit Commit Bot
Comment 17 2015-07-01 21:31:56 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.