This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Replace 'smart autocomplete' with a purpose-built QuickSearchField module #7227
Merged
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9e74dde
Replace 'smart autocomplete' with a purpose-built QuickSearchField mo…
peterflynn 3c1a8f2
Merge remote-tracking branch 'origin/master' into pflynn/better-quick…
peterflynn 61b0edf
- Fix bug: pressing Enter to close Quick Open or Goto Line inserted n…
peterflynn 210a282
Remove smart-auto-complete from codebase. Add unit tests for QuickSea…
peterflynn 72aa412
Merge remote-tracking branch 'origin/master' into pflynn/better-quick…
peterflynn 7b7670f
Size width of Quick Open dropdown more crisply.
peterflynn f341ff5
Merge remote-tracking branch 'origin/master' into pflynn/better-quick…
peterflynn 767a1da
QuickSearchField / Quick Open tweaks
peterflynn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,11 +120,12 @@ define(function (require, exports, module) { | |
} | ||
|
||
/** | ||
* Select the selected item in the current document | ||
* Scroll top the selected item in the current document (unless no query string entered yet, | ||
* in which case the topmost list item is irrelevant) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. documentation doesn't match the current function signature |
||
* @param {?SearchResult} selectedItem | ||
*/ | ||
function itemFocus(selectedItem) { | ||
if (!selectedItem) { | ||
function itemFocus(selectedItem, query) { | ||
if (!selectedItem || query.length < 2) { | ||
return; | ||
} | ||
var fileLocation = selectedItem.fileLocation; | ||
|
@@ -134,8 +135,8 @@ define(function (require, exports, module) { | |
EditorManager.getCurrentFullEditor().setSelection(from, to, true); | ||
} | ||
|
||
function itemSelect(selectedItem) { | ||
itemFocus(selectedItem); | ||
function itemSelect(selectedItem, query) { | ||
itemFocus(selectedItem, query); | ||
} | ||
|
||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the comment doesn't match the current signature anymore.