-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Continuous Tab Expansion #200
Comments
You could do the below for tab completion. $PsFzfDesc = 'Uses PSReadline''s Completion results at any given cursor position and context ' +
'as the source for PsFzf''s module wrapper for fzf.exe'
$PsFzfParam = @{
Chord = 'Tab,Tab'
BriefDescription = 'Fzf Tab Completion'
Description = $PsFzfDesc
ScriptBlock = { Invoke-FzfTabCompletion }
}
Set-PSReadLineKeyHandler @PsFzfParam This section in the docs might help too. |
Hmm. I believe the question might have been this:
|
Ah yeah I see. Maybe the below could be helpful too [System.Management.Automation.CompletionCompleters]::CompleteFilename( 'abc' ) I assume the below code space needs to be edited to add the ending Line 235 in ec306f6
|
I can do a quick PR for that if you are accepting help @mattcargile . |
I think it would be a welcome inclusion, @SpBills . I would wait for @kelleyma49 's take on it as he is one performing the merges. |
Is it possible to have an option to have a continuous tab expansion without typing the directory separator like I only need to press tab twice for the fzf to show?
The text was updated successfully, but these errors were encountered: