Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/nls/root/strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ define({
"BUTTON_REPLACE_ALL" : "All\u2026",
"BUTTON_STOP" : "Stop",
"BUTTON_REPLACE" : "Replace",

"BUTTON_NEXT" : "\u25B6",
"BUTTON_PREV" : "\u25C0",
"BUTTON_NEXT_HINT" : "Next Match",
"BUTTON_PREV_HINT" : "Previous Match",

"OPEN_FILE" : "Open File",
"SAVE_FILE_AS" : "Save File",
Expand Down
42 changes: 38 additions & 4 deletions src/search/FindReplace.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,16 @@ define(function (require, exports, module) {
}

var queryDialog = Strings.CMD_FIND +
": <input type='text' style='width: 10em'/> <div class='message'><span id='find-counter'></span> " +
"<span style='color: #888'>(" + Strings.SEARCH_REGEXP_INFO + ")</span></div><div class='error'></div>";
": <input type='text' style='width: 10em'/>" +
"<div class='navigator'>" +
"<button id='find-prev' class='btn' title='" + Strings.BUTTON_PREV_HINT + "'>" + Strings.BUTTON_PREV + "</button>" +
"<button id='find-next' class='btn' title='" + Strings.BUTTON_NEXT_HINT + "'>" + Strings.BUTTON_NEXT + "</button>" +
"</div>" +
"<div class='message'>" +
"<span id='find-counter'></span> " +
"<span style='color: #888'>(" + Strings.SEARCH_REGEXP_INFO + ")</span>" +
"</div>" +
"<div class='error'></div>";

/**
* If no search pending, opens the search dialog. If search is already open, moves to
Expand All @@ -203,6 +211,15 @@ define(function (require, exports, module) {
// occurrence.
var searchStartPos = cm.getCursor(true);

//Helper method to enable next / prev navigation in Find modal bar.
function enableFindNavigator(show) {
if (show) {
$(".modal-bar .navigator").css("display", "inline-block");
} else {
$(".modal-bar .navigator").css("display", "none");
}
}

// Called each time the search query changes while being typed. Jumps to the first matching
// result, starting from the original cursor position
function findFirst(query) {
Expand All @@ -215,13 +232,17 @@ define(function (require, exports, module) {
if (!state.query) {
// Search field is empty - no results
$("#find-counter").text("");
enableFindNavigator(false);
cm.setCursor(searchStartPos);
if (modalBar) {
getDialogTextField().removeClass("no-results");
}
return;
}

//Flag that controls the navigation controls.
var enableNavigator = false;

// Highlight all matches
// (Except on huge documents, where this is too expensive)
if (cm.getValue().length < 500000) {
Expand All @@ -243,19 +264,24 @@ define(function (require, exports, module) {
cursor = getSearchCursor(cm, state.query, {line: cursor.to().line + 1, ch: 0});
}
}

if (resultCount === 0) {
$("#find-counter").text(Strings.FIND_NO_RESULTS);
} else if (resultCount === 1) {
$("#find-counter").text(Strings.FIND_RESULT_COUNT_SINGLE);
$("#find-counter").text(Strings.FIND_RESULT_COUNT_SINGLE);
} else {
$("#find-counter").text(StringUtils.format(Strings.FIND_RESULT_COUNT, resultCount));
enableNavigator = true;
}

} else {
$("#find-counter").text("");
enableNavigator = true;
}

//Enable Next/Prev navigator buttons if necessary
enableFindNavigator(enableNavigator);

state.posFrom = state.posTo = searchStartPos;
var foundAny = findNext(editor, rev);

Expand Down Expand Up @@ -291,6 +317,14 @@ define(function (require, exports, module) {
$(cm.getWrapperElement()).removeClass("find-highlighting");
});

modalBar.getRoot().on("click", function (e) {
if (e.target.id === "find-next") {
_findNext();
} else if (e.target.id === "find-prev") {
_findPrevious();
}
});

var $input = getDialogTextField();
$input.on("input", function () {
findFirst($input.val());
Expand Down
8 changes: 8 additions & 0 deletions src/styles/brackets.less
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,13 @@ a, img {
}
}

.modal-bar .navigator {
display: none;
button {
margin: 2px 1px 3px;
}
}

// Search result highlighting - CodeMirror highlighting is pretty constrained. Highlights are
// blended on TOP of the selection color. The "current" search result is indicated by selection,
// so we want the selection visible underneath the highlight. To do this, the highlight must be
Expand All @@ -904,6 +911,7 @@ a, img {
}
#find-counter {
font-weight: @font-weight-semibold;
padding: 0 5px;
}


Expand Down