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;
|
if (!selection.beginning) return completions;
|
||||||
const {command, range} = this.getCurrentCommand(query, selection);
|
const {command, range} = this.getCurrentCommand(query, selection);
|
||||||
if (command) {
|
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 {
|
return {
|
||||||
completion: result.command + ' ',
|
completion: result.command + ' ',
|
||||||
component: (<TextualCompletion
|
component: (<TextualCompletion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue