Implement completion.

This commit is contained in:
CismonX 2020-11-04 15:07:54 +08:00
parent ead5e15b9d
commit afc88ae025
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
1 changed files with 13 additions and 0 deletions

View File

@ -121,6 +121,19 @@ export default class CompletionItemProvider implements vscode.CompletionItemProv
...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'),
...braceCommand('dfn', 'Indicate the introductory or defining use of a term', 1, 'term'),
command('DH', 'Generate the uppercase Icelandic letter eth, "Ð", ð', { hasEmptyArguments: true }),
command('dh', 'Generate the lower Icelandic letter eth, "ð"', { hasEmptyArguments: true }),
...lineCommand('dircategory', "Specify a part of the Info directory menu where this file's entry should go",
'dirpart'),
...blockCommand('direntry', 'Begin the Info directory menu entry for this file'),
...blockCommand('display', 'Begin a kind of example'),
...braceCommand('dmn', 'Format a unit of measure, as in 12pt', 1, 'dimension'),
...blockCommand('docbook', 'Enter Docbook completely'),
...blockCommand('documentdescription', 'Set the document description text, included in the HTML output'),
...lineCommand('documentencoding', 'Declare the input encoding', 'enc'),
...lineCommand('documentlanguage', 'Declares the current document locale', 'll_CC'),
...braceCommand('dotaccent', 'Generate a dot accent over the character', 1, 'c'),
...lineCommand('setfilename', 'Provide a name for the output files', 'info-file-name'),
...lineCommand('settitle', 'Specify the title for page headers', 'title'),