Note, some things tagged as TabularEditor2 vs 3 have a decent level of overlap, that it's worth checking out the other
I almost always have multiple windows up. My config will
if I use the file -> exit menu,
- all windows close
- It quits without prompting for unsaved files
- the next time I open it all windows are restored including never-saved-files
If I click X on a window to close it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Configuration> | |
| <ViewDefinitions> | |
| <View> | |
| <Name>Utility.PullRequest</Name> | |
| <ViewSelectedBy> | |
| <TypeName>Utility.PullRequest</TypeName> | |
| </ViewSelectedBy> | |
| <CustomControl> | |
| <CustomEntries> | |
| <CustomEntry> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function playTerm { | |
| param( | |
| [string]$InputText ='' ) | |
| $InputText -replace '␛', [char]0x1b | |
| # Or if Pwsh | |
| # $InputText -replace '␛', "`e" | |
| } | |
| $Music = @{} | |
| $Music.March = '␛[3;20;7;7;7,~␛[3;15;3,~␛[3;5;10,~␛[3;20;7,~␛[3;15;3,~␛[3;5;10,~␛[3;40;7,~␛[3;20;14;14;14,~␛[3;15;15,~␛[3;5;10,~␛[3;20;6,~␛[3;15;3,~␛[3;5;10,~␛[3;40;7,~␛[3;20;19;7;19,~␛[3;10;18;17,~␛[3;5;16;15,~␛[3;10;16;0;8,~␛[3;20;13,~␛[3;10;12;11,~␛[3;5;10;9,~␛[3;10;10;0;3,~␛[3;20;6,~␛[3;15;3,~␛[3;5;10,~␛[3;20;7,~␛[3;15;3,~␛[3;5;10,~␛[3;40;7,~' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add-Type -TypeDefinition @' | |
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| namespace Kernel32 | |
| { | |
| public enum FileInfoLevel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Disable shell integration when the language mode is restricted | |
| # Prevent installing more than once per session | |
| if ($ExecutionContext.SessionState.LanguageMode -ne "FullLanguage" -or (Test-Path variable:global:__VSCodeOriginalPrompt)) { | |
| return; | |
| } | |
| $Global:__VSCodeOriginalPrompt = $function:Prompt | |
| function global:prompt { | |
| $ExitCode = $? ? 0 : ($LASTEXITCODE -ne 0) ? $LASTEXITCODE : 1 | |
| @( |