mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
show all slashcommands on /
This commit is contained in:
parent
5605439e76
commit
e06763cd59
@ -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 New Issue
Block a user