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
diff --git a/config.h b/config.h | |
index 53ab366..6102012 100644 | |
--- a/config.h | |
+++ b/config.h | |
@@ -54,7 +54,7 @@ static unsigned int blinktimeout = 800; | |
/* | |
* thickness of underline and bar cursors | |
*/ | |
-static unsigned int cursorthickness = 2; | |
+static unsigned int cursorthickness = 1; |
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
$originalManifestPath = Join-Path $PSScriptRoot 'Original.psd1' | |
$updatedManifestPath = Join-Path $PSScriptRoot 'Updated.psd1' | |
'function Get-Root { Write-Host "Root" }' | Set-Content -Path 'RootModule.psm1' | |
'function Get-Nested { Write-Host "Nested" }' | Set-Content -Path 'NestedModule.psm1' | |
New-ModuleManifest ` | |
-Path $originalManifestPath ` | |
-NestedModules @('NestedModule.psm1') ` | |
-RootModule 'RootModule.psm1' ` |