mirror of
https://github.com/slap-editor/slap.git
synced 2024-11-04 04:52:21 +03:00
Adds "search wrapped" message
This commit is contained in:
parent
9bfeb1d861
commit
935e7d6aab
@ -210,9 +210,9 @@ Slap.prototype._initHandlers = function () {
|
||||
} else {
|
||||
pos = textUtil.find(self.editor.lines(), pattern);
|
||||
if (pos) {
|
||||
if (Coordinate.linear.cmp(pos, self.editor.cursor()) === 0) {
|
||||
self.message("this is the only occurrence", 'info');
|
||||
}
|
||||
self.message(Coordinate.linear.cmp(pos, self.editor.cursor()) !== 0
|
||||
? "search wrapped"
|
||||
: "this is the only occurrence", 'info');
|
||||
self.editor.select(null, pos);
|
||||
} else {
|
||||
self.message("no matches", 'warning');
|
||||
|
Loading…
Reference in New Issue
Block a user