JamesWTruher / UnixCompleters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PSUnixUtilCompleters

PowerShell parameter completers for native commands on Linux and macOS.

This module uses completers supplied in traditional Unix shells to complete native utility parameters in PowerShell.

Completions with apt example

Currently, this module supports completions from zsh and bash. By default it will look for zsh and then bash to run completions (since zsh's completions seem to be generally better).

Basic usage

To enable unix utility completions, install this module and add the following to your profile:

Import-Module PSUnixUtilCompleters

There is also an alternate command, Import-PSUnixUtilCompleters, that has the same functionality but is discoverable by command completion.

This will register argument completers for all native commands found in the usual Unix util directories.

Given the nature of native completion results, you may find this works best with PSReadLine's MenuComplete mode:

Import-Module PSUnixUtilCompleters

Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete

Further configuration

If you wish to set a preferred shell, you can do so by setting an environment variable:

$env:COMPLETION_SHELL_PREFERENCE = 'bash'

# OR

$env:COMPLETION_SHELL_PREFERENCE = '/bin/bash'

Import-Module PSUnixUtilCompleters

Note that you must do this before you load the module, and that setting it after loading will have no effect.

If you want to change the completer after loading, you can do so from PowerShell like so:

Set-PSUnixUtilCompleter -ShellType Zsh

# Or if you have a shell installed to a particular path
Set-PSUnixUtilCompleter -Shell "/bin/zsh"

# You can even write your own utility completer by implementing `IUnixUtilCompleter`
$myCompleter = [MyCompleter]::new()
Set-PSUnixUtilCompleter -Completer $myCompleter

Unregistering UNIX util completions

The PSUnixUtilCompleters module will unregister completers for all the commands it registered completers for when removed:

Remove-Module PSUnixUtilCompleters

As with loading, there is also a convenience command provided for this:

Remove-PSUnixUtilCompleters

Building the module yourself

PSUnixUtilCompleters comes with a PowerShell build script, which you can invoke to build the module yourself with:

./build.ps1 -Clean

This will output the built module to out/PSUnixUtilCompleters.

Credits

All the zsh completions provided by this module are made possible by the work of @Valodim's zsh completion project, zsh-capture-completion, which this module invokes to get completion results.

The bash completions provided by this module are adapted from the work done by @mikebattista for his PowerShell-WSL-interop PowerShell module.

About

License:MIT License


Languages

Language:C# 77.2%Language:PowerShell 22.8%