44 lines
1.1 KiB
PowerShell
44 lines
1.1 KiB
PowerShell
[CmdletBinding(SupportsShouldProcess)]param(
|
|
[switch]$sudo,
|
|
[Parameter(Position = 0, ValueFromPipelineByPropertyName, ValueFromPipeline, ValueFromRemainingArguments = $true)]
|
|
[string[]]$Path
|
|
)
|
|
|
|
begin {
|
|
$PathForEditor = @()
|
|
}
|
|
process {
|
|
foreach( $local:P in $Path ) {
|
|
$PathForEditor += $P | Get-Path -Expand
|
|
}
|
|
}
|
|
|
|
end {
|
|
$local:editors = $env:EDITOR,'nvim','code'
|
|
$local:editor = $null
|
|
foreach( $local:testEditor in $editors ) {
|
|
if( $(try{Get-Command -ListImported -Type Application $testEditor -ErrorAction SilentlyContinue}catch{}) ) {
|
|
$editor = $testEditor
|
|
break;
|
|
}
|
|
}
|
|
|
|
if( $editor -match 'vim?$' ) {
|
|
$editor += ' -p'
|
|
}
|
|
|
|
if( $editor -match 'code(\.exe)?$' ) {
|
|
if( -not (Get-Process -Name 'code' -ErrorAction SilentlyContinue) ) {
|
|
Invoke-ExpressionEx -sudo:$sudo $editor
|
|
}
|
|
}
|
|
|
|
Write-Verbose $($Path | Out-String)
|
|
|
|
$local:arguments = $PathForEditor | Foreach-Object { "'$_'" }
|
|
if( $Path ) { $arguments = "$arguments" }
|
|
|
|
if( $PSCmdlet.ShouldProcess( "Edit ($editor): $arguments" ) ) {
|
|
Invoke-ExpressionEx -sudo:$sudo $editor "$arguments"
|
|
}
|
|
} |