mirror of https://github.com/vector-im/riot-web
never try to tab-complete yourself, doofus
parent
e7ec6166fa
commit
50e33d30b6
|
@ -455,11 +455,16 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_updateTabCompleteList: new rate_limited_func(function() {
|
_updateTabCompleteList: new rate_limited_func(function() {
|
||||||
|
var cli = MatrixClientPeg.get();
|
||||||
|
|
||||||
if (!this.state.room || !this.tabComplete) {
|
if (!this.state.room || !this.tabComplete) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
var members = this.state.room.getJoinedMembers().filter(function(member) {
|
||||||
|
if (member.userId !== cli.credentials.userId) return true;
|
||||||
|
});
|
||||||
this.tabComplete.setCompletionList(
|
this.tabComplete.setCompletionList(
|
||||||
MemberEntry.fromMemberList(this.state.room.getJoinedMembers()).concat(
|
MemberEntry.fromMemberList(members).concat(
|
||||||
CommandEntry.fromCommands(SlashCommands.getCommandList())
|
CommandEntry.fromCommands(SlashCommands.getCommandList())
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue