Skip to content

Latest commit

 

History

History
258 lines (213 loc) · 4.89 KB

Set-PsFzfOption.md

File metadata and controls

258 lines (213 loc) · 4.89 KB
external help file schema
PSFzf.psm1-help.xml
2.0.0

Set-PsFzfOption

SYNOPSIS

Sets the available PSFzf options.

SYNTAX

Set-PsFzfOption

DESCRIPTION

Allows the user to set various PSFzf options, such as PSReadline chords and tab expansion.

EXAMPLES

Set PSReadline Options

Set PsFzf's history and file finder keyboard shortcuts.

Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+t' -PSReadlineChordReverseHistory 'Ctrl+r'

PARAMETERS

CommonParameters

This cmdlet does not support common parameters.

-PSReadlineChordProvider

PSReadline keyboard chord shortcut to trigger file and directory selection

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-PSReadlineChordReverseHistory

PSReadline keyboard chord shortcut to trigger history selection

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-GitKeyBindings

Enables key bindings for git commands.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-TabExpansion

Enables tab expansion support

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyEdit

Enables the fe aliases for the Invoke-FuzzyEdit function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyFasd

Enables the ff aliases for the Invoke-FuzzyFasd function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyHistory

Enables the fh aliases for the Invoke-FuzzyHistory function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyKillProcess

Enables the fkill aliases for the Invoke-FuzzyKillProcess function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzySetLocation

Enables the fd aliases for the Invoke-FuzzySetLocation function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzySetEverything

Enables the cde aliases for the Set-LocationFuzzyEverything function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyScoop

Enables the fs aliases for the Invoke-FuzzyScoop function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyZLocation

Enables the fz aliases for the Invoke-FuzzySetZLocation function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableAliasFuzzyGitStatus

Enables the fgs aliases for the Invoke-FuzzyGitStatus function

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-EnableFd

uses the fd command instead of the OS specific file and directory commands

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-AltCCommand

Specifies a user supplied command that will be used in the command that is bound to the Alt-C command

# example command - use $Location with a different command:
$commandOverride = [ScriptBlock]{ param($Location) Write-Host $Location } 
# pass your override to PSFzf:
Set-PsFzfOption -AltCCommand $commandOverride
Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

INPUTS

None

OUTPUTS

None

This cmdlet does not generate any output.