Skip to content

Instantly share code, notes, and snippets.

@latish
Forked from Kevnz/conemu.ps1
Created December 11, 2013 23:52
Show Gist options
  • Save latish/7920773 to your computer and use it in GitHub Desktop.
Save latish/7920773 to your computer and use it in GitHub Desktop.
function tab
{
$path = Get-Location
$end = "-new_console:d:" + $path.Path
& "C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe" $end
}
function pane
{
$path = Get-Location
$end = "-new_console:s:d:" + $path.Path
& "C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe" $end
}
function dual-panes
{
pane
pane
}
set-alias duo dual-panes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment