Better cross platform support
Edit-MyScript will pause if edit is running in background (conext returning less than a second after launching editor) Test-MyModules which loads at stratup now has specific platform lists
This commit is contained in:
parent
7dd40b7b82
commit
8566ea6863
|
@ -71,7 +71,13 @@ foreach( $local:p in $ScriptPaths ) {
|
|||
}
|
||||
}
|
||||
|
||||
$local:sw = [System.Diagnostics.Stopwatch]::StartNew();
|
||||
Edit-TextFile $ScriptPaths
|
||||
$sw.Stop();
|
||||
|
||||
if( $sw.Elapsed.TotalSeconds -lt 1 ) {
|
||||
$null = Read-Host "Waiting before refreshing. Press <Enter> when you're done editing ( don't forget to save ;) )..."
|
||||
}
|
||||
|
||||
Get-Command Reload-MyScripts -ErrorAction SilentlyContinue |
|
||||
ForEach-Object { . $_.Definition }
|
||||
|
|
|
@ -1,9 +1,15 @@
|
|||
if( -not $global:MyModulesWarning ) {
|
||||
param([switch]$Force)
|
||||
|
||||
$local:currentSys = [SystemName]::_GetValidValues('',$true,$true);
|
||||
|
||||
if( -not $global:MyModulesWarning -or $Force ) {
|
||||
$global:MyModulesWarning = @()
|
||||
}
|
||||
[MyConfig]::GetConfigPaths('mymodules',$false) |
|
||||
ForEach-Object {
|
||||
$( Get-Content $_ | ConvertFrom-Json ).Modules
|
||||
$local:modules = $( Get-Content $_ | ConvertFrom-Json );
|
||||
$modules.Always;
|
||||
$currentSys | ForEach-Object { $modules."$_" } | Where-Object { $_}
|
||||
} | Where-Object {
|
||||
$local:m = $_
|
||||
if( $( try {
|
||||
|
|
|
@ -1,8 +1,14 @@
|
|||
{
|
||||
"Modules": [
|
||||
"Microsoft.PowerShell.UnixCompleters",
|
||||
"Always": [
|
||||
"PowerShellCookbook",
|
||||
"oh-my-posh",
|
||||
"posh-git"
|
||||
"posh-git",
|
||||
"z"
|
||||
],
|
||||
"Desktop": [
|
||||
],
|
||||
"Unix": [
|
||||
"Microsoft.PowerShell.UnixCompleters"
|
||||
]
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue