parent
38f5e998fc
commit
e53f614a04
1 changed files with 5 additions and 2 deletions
|
@ -1233,9 +1233,12 @@ weechat.directive('inputBar', function() {
|
|||
// get current active buffer
|
||||
var activeBuffer = models.getActiveBuffer();
|
||||
|
||||
// Empty input makes $scope.command undefined -- use empty string instead
|
||||
var input = $scope.command || '';
|
||||
|
||||
// complete nick
|
||||
var nickComp = IrcUtils.completeNick($scope.command, caretPos,
|
||||
$scope.iterCandidate, activeBuffer.getNicklistByTime(), ':');
|
||||
var nickComp = IrcUtils.completeNick(input, caretPos, $scope.iterCandidate,
|
||||
activeBuffer.getNicklistByTime(), ':');
|
||||
|
||||
// remember iteration candidate
|
||||
$scope.iterCandidate = nickComp.iterCandidate;
|
||||
|
|
Loading…
Reference in a new issue