Fix the spellbot (#8259)

This commit is contained in:
Mike Griese 2020-11-13 11:45:08 -06:00 committed by GitHub
parent d28a4da596
commit 6115f8db82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 16 deletions

View file

@ -4,6 +4,7 @@ alignof
bitfield bitfield
bitfields bitfields
CLASSNOTAVAILABLE CLASSNOTAVAILABLE
cmdletbinding
COLORPROPERTY COLORPROPERTY
CXICON CXICON
CYICON CYICON
@ -53,6 +54,7 @@ roundf
RSHIFT RSHIFT
rx rx
schandle schandle
semver
serializer serializer
SIZENS SIZENS
spsc spsc

View file

@ -62,3 +62,4 @@ SUMS$
^src/tools/U8U16Test/(?:fr|ru|zh)\.txt$ ^src/tools/U8U16Test/(?:fr|ru|zh)\.txt$
^\.github/actions/spell-check/ ^\.github/actions/spell-check/
^\.gitignore$ ^\.gitignore$
^doc/reference/master-sequence-list.csv$

View file

@ -355,6 +355,7 @@ consoleapi
CONSOLECONTROL CONSOLECONTROL
CONSOLEENDTASK CONSOLEENDTASK
consolegit consolegit
consolehost
CONSOLEIME CONSOLEIME
consoleinternal consoleinternal
Consoleroot Consoleroot
@ -636,6 +637,7 @@ dpiy
DRAWFRAME DRAWFRAME
DRAWITEM DRAWITEM
DRAWITEMSTRUCT DRAWITEMSTRUCT
drcs
dropdown dropdown
DROPDOWNLIST DROPDOWNLIST
DROPFILES DROPFILES
@ -2421,6 +2423,7 @@ ucdxml
uch uch
UCHAR UCHAR
ucs ucs
UDK
UDKs UDKs
UDM UDM
uer uer

View file

@ -34,7 +34,7 @@ param(
[string]$ConsoleAdapterPath = $(join-path $solutionRoot "src\terminal\adapter\adaptDispatch.hpp"), [string]$ConsoleAdapterPath = $(join-path $solutionRoot "src\terminal\adapter\adaptDispatch.hpp"),
[parameter(ParameterSetName="file")] [parameter(ParameterSetName="file")]
[parameter(ParameterSetName="stdout")] [parameter(ParameterSetName="stdout")]
[string]$TerminalAdapterPath = $(join-path $solutionRoot "src\cascadia\terminalcore\terminaldispatch.hpp") [string]$TerminalAdapterPath = $(join-path $solutionRoot "src\cascadia\terminalcore\terminalDispatch.hpp")
) )
if ($PSCmdlet.ParameterSetName -eq "stdout") { if ($PSCmdlet.ParameterSetName -eq "stdout") {
@ -53,7 +53,7 @@ $terminal = @{}
$prefix = "https://vt100.net/docs/vt510-rm/" $prefix = "https://vt100.net/docs/vt510-rm/"
$repo = "https://github.com/oising/terminal/tree/master" $repo = "https://github.com/oising/terminal/tree/master"
$conhostUrl = $ConsoleAdapterPath.TrimStart($SolutionRoot).replace("\", "/") $conhostUrl = $ConsoleAdapterPath.TrimStart($SolutionRoot).replace("\", "/")
$terminalurl = $TerminalAdapterPath.TrimStart($SolutionRoot).replace("\", "/") $terminalUrl = $TerminalAdapterPath.TrimStart($SolutionRoot).replace("\", "/")
function Read-SourceFiles { function Read-SourceFiles {
# extract base interface # extract base interface
@ -92,7 +92,7 @@ function Get-SequenceIndexMarkdown {
Emit markdown Emit markdown
TODO: TODO:
- autogenerate TOC - auto-generate TOC
#> #>
@" @"
# VT Function Support # VT Function Support
@ -125,7 +125,7 @@ function Get-SequenceIndexMarkdown {
* [ANSI](#ansi) * [ANSI](#ansi)
* [DEC Private](#dec-private) * [DEC Private](#dec-private)
* [Editing Functions](#editing-functions) * [Editing Functions](#editing-functions)
* [OLTP Features](#oltp-features) * [OLTP Features](#OLTP-features)
* [Rectangular Area Operations](#rectangular-area-operations) * [Rectangular Area Operations](#rectangular-area-operations)
* [Data Integrity](#data-integrity) * [Data Integrity](#data-integrity)
* [Macros](#macros) * [Macros](#macros)
@ -133,7 +133,7 @@ function Get-SequenceIndexMarkdown {
* [Cursor Save Buffer](#cursor-save-buffer) * [Cursor Save Buffer](#cursor-save-buffer)
* [Terminal State Interrogation](#terminal-state-interrogation) * [Terminal State Interrogation](#terminal-state-interrogation)
* [Keyboard Processing Functions](#keyboard-processing-functions) * [Keyboard Processing Functions](#keyboard-processing-functions)
* [Soft Key Mapping (UDK)](#soft-key-mapping-udk) * [Soft Key Mapping (UDK)](#soft-key-mapping-UDK)
* [Soft Fonts (DRCS)](#soft-fonts-drcs) * [Soft Fonts (DRCS)](#soft-fonts-drcs)
* [Printing](#printing) * [Printing](#printing)
* [Terminal Communication and Synchronization](#terminal-communication-and-synchronization) * [Terminal Communication and Synchronization](#terminal-communication-and-synchronization)