From b00289b015ef9970d8e3de8429cd7b66df380f95 Mon Sep 17 00:00:00 2001 From: CismonX Date: Tue, 9 Feb 2021 16:40:24 +0800 Subject: [PATCH] Fix completion of block command `@detailmenu`. --- src/providers/completion_item.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/completion_item.ts b/src/providers/completion_item.ts index 8f4e1ef..132ab1f 100644 --- a/src/providers/completion_item.ts +++ b/src/providers/completion_item.ts @@ -120,7 +120,7 @@ export default class CompletionItemProvider implements vscode.CompletionItemProv ...lineCommandX('defun', 'Format a description for a function', 'function-name', 'arguments'), ...lineCommandX('defvar', 'Format a description for a variable', 'variable-name'), ...lineCommandX('defvr', 'Format a description for any kind of variable', 'category', 'name'), - command('detailmenu', 'Mark the (optional) detailed node listing in a master menu'), + ...blockCommand('detailmenu', 'Mark the (optional) detailed node listing in a master menu'), ...braceCommand('dfn', 'Indicate the introductory or defining use of a term', 1, 'term'), command('DH', 'Generate the uppercase Icelandic letter eth, "Ð", ð', { hasEmptyBrace: true }), command('dh', 'Generate the lower Icelandic letter eth, "ð"', { hasEmptyBrace: true }),