mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
show all slashcommands on /
This commit is contained in:
parent
5605439e76
commit
e06763cd59
1 changed files with 8 additions and 1 deletions
|
@ -129,7 +129,14 @@ export default class CommandProvider extends AutocompleteProvider {
|
|||
if (!selection.beginning) return completions;
|
||||
const {command, range} = this.getCurrentCommand(query, selection);
|
||||
if (command) {
|
||||
completions = this.matcher.match(command[0]).map((result) => {
|
||||
let results;
|
||||
if (command[0] == '/') {
|
||||
results = COMMANDS;
|
||||
}
|
||||
else {
|
||||
results = this.matcher.match(command[0]);
|
||||
}
|
||||
completions = results.map((result) => {
|
||||
return {
|
||||
completion: result.command + ' ',
|
||||
component: (<TextualCompletion
|
||||
|
|
Loading…
Reference in a new issue