Skip to content

Instantly share code, notes, and snippets.

View lpatalas's full-sized avatar

Łukasz Patalas lpatalas

View GitHub Profile
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;
@lpatalas
lpatalas / NestedModules.ps1
Created November 25, 2018 10:05
Missing NestedModules after updating manifest
$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' `