Skip to content

Commit

Permalink
Merge branch 'dev/migrie/fhl/scratchpad-pane' into dev/migrie/f/sui-p…
Browse files Browse the repository at this point in the history
…anes
  • Loading branch information
zadjii-msft committed Feb 28, 2024
2 parents 092b355 + 25a8851 commit 17075d6
Show file tree
Hide file tree
Showing 181 changed files with 6,961 additions and 10,345 deletions.
2 changes: 2 additions & 0 deletions .github/actions/spelling/allow/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ ptys
pwshw
qof
qps
Remappings
Retargets
rclt
reimplementation
reserialization
Expand Down
6 changes: 6 additions & 0 deletions .github/actions/spelling/allow/apis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ COLORPROPERTY
colspan
COMDLG
commandlinetoargv
commoncontrols
comparand
COPYFROMRESOURCE
cstdint
CXICON
CYICON
Expand All @@ -42,6 +44,7 @@ endfor
ENDSESSION
enumset
environstrings
EXACTSIZEONLY
EXPCMDFLAGS
EXPCMDSTATE
filetime
Expand All @@ -59,6 +62,7 @@ Hashtable
HIGHCONTRASTON
HIGHCONTRASTW
hinternet
HIGHQUALITYSCALE
HINTERNET
hotkeys
href
Expand All @@ -75,6 +79,7 @@ IBox
IClass
IComparable
IComparer
ICONINFO
IConnection
ICustom
IDialog
Expand All @@ -84,6 +89,7 @@ IExplorer
IFACEMETHOD
IFile
IGraphics
IImage
IInheritable
IMap
IMonarch
Expand Down
1 change: 1 addition & 0 deletions .github/actions/spelling/excludes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
^src/terminal/parser/ut_parser/Base64Test.cpp$
^src/terminal/parser/ut_parser/run\.bat$
^src/tools/benchcat
^src/tools/ConsoleBench
^src/tools/integrity/dirs$
^src/tools/integrity/packageuwp/ConsoleUWP\.appxSources$
^src/tools/RenderingTests/main\.cpp$
Expand Down
11 changes: 11 additions & 0 deletions .github/actions/spelling/expect/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ AFew
AFill
AFX
AHelper
ahicon
ahz
AImpl
AInplace
Expand Down Expand Up @@ -429,6 +430,7 @@ DECRQM
DECRQPSR
DECRQSS
DECRQTSR
DECRQUPSS
DECRSPS
decrst
DECSACE
Expand Down Expand Up @@ -843,6 +845,9 @@ IGNORELANGUAGE
IHosted
iid
IIo
ILC
ILCo
ILD
ime
IMPEXP
inbox
Expand Down Expand Up @@ -1340,11 +1345,14 @@ pgomgr
PGONu
pguid
phhook
phico
phicon
phwnd
pidl
PIDLIST
pids
pii
piml
pinvoke
pipename
pipestr
Expand Down Expand Up @@ -1676,6 +1684,8 @@ slpit
SManifest
SMARTQUOTE
SMTO
snapcx
snapcy
SOLIDBOX
Solutiondir
somefile
Expand Down Expand Up @@ -1901,6 +1911,7 @@ UPDATEDISPLAY
UPDOWN
UPKEY
UPSS
upss
uregex
URegular
usebackq
Expand Down
444 changes: 23 additions & 421 deletions OpenConsole.sln

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- template: steps-ensure-nuget-version.yml

- task: NuGetAuthenticate@0
- task: NuGetAuthenticate@1
inputs:
nuGetServiceConnections: 'Terminal Public Artifact Feed'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ extends:
cloudvault: # https://aka.ms/obpipelines/cloudvault
enabled: false
globalSdl: # https://aka.ms/obpipelines/sdl
asyncSdl:
enabled: true
tsaOptionsFile: 'build/config/tsa.json'
tsa:
enabled: true
configFile: '$(Build.SourcesDirectory)\build\config\tsa.json'
Expand Down
2 changes: 1 addition & 1 deletion build/pipelines/templates-v2/steps-restore-nuget.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steps:
- template: steps-ensure-nuget-version.yml

- task: NuGetAuthenticate@0
- task: NuGetAuthenticate@1

- script: |-
echo ##vso[task.setvariable variable=NUGET_RESTORE_MSBUILD_ARGS]/p:Platform=$(BuildPlatform)
Expand Down
10 changes: 5 additions & 5 deletions doc/cascadia/profiles.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2782,15 +2782,15 @@
"description": "When set to true, marks added to the buffer via the addMark action will appear on the scrollbar.",
"type": "boolean"
},
"experimental.repositionCursorWithMouse": {
"default": false,
"description": "When set to true, you can move the text cursor by clicking with the mouse on the current commandline. This is an experimental feature - there are lots of edge cases where this will not work as expected.",
"type": "boolean"
},
"experimental.pixelShaderPath": {
"description": "Use to set a path to a pixel shader to use with the Terminal. Overrides `experimental.retroTerminalEffect`. This is an experimental feature, and its continued existence is not guaranteed.",
"type": "string"
},
"useAtlasEngine": {
"description": "Windows Terminal 1.16 and later ship with a new, performant text renderer. Set this to false to revert back to the old text renderer.",
"type": "boolean",
"default": true
},
"fontFace": {
"default": "Cascadia Mono",
"description": "[deprecated] Define 'face' within the 'font' object instead.",
Expand Down
2 changes: 1 addition & 1 deletion src/buffer/out/Row.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ til::CoordType CharToColumnMapper::GetLeadingColumnAt(ptrdiff_t offset) noexcept
offset = clamp(offset, 0, _lastCharOffset);

auto col = _currentColumn;
const auto currentOffset = _charOffsets[col];
const auto currentOffset = _charOffsets[col] & CharOffsetsMask;

// Goal: Move the _currentColumn cursor to a cell which contains the given target offset.
// Depending on where the target offset is we have to either search forward or backward.
Expand Down
Loading

0 comments on commit 17075d6

Please sign in to comment.