optimize slash command helper popup

This commit is contained in:
RossAscends 2024-04-19 21:02:02 +09:00
parent 39b305621e
commit db3d86cb29
1 changed files with 2 additions and 2 deletions

View File

@ -1822,8 +1822,8 @@ async function executeSlashCommands(text, unescape = false) {
function setSlashCommandAutocomplete(textarea) {
textarea.autocomplete({
source: (input, output) => {
// Only show for slash commands and if there's no space
if (!input.term.startsWith('/') || input.term.includes(' ')) {
// Only show for slash commands (requiring at least 1 letter after the slash) and if there's no space
if (!input.term.startsWith('/') || input.term.includes(' ') || input.term === '/') {
output([]);
return;
}