-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Closed
Labels
Area-TerminalControlIssues pertaining to the terminal control (input, selection, keybindings, mouse interaction, etc.)Issues pertaining to the terminal control (input, selection, keybindings, mouse interaction, etc.)Area-UserInterfaceIssues pertaining to the user interface of the Console or TerminalIssues pertaining to the user interface of the Console or TerminalIssue-FeatureComplex enough to require an in depth planning process and actual budgeted, scheduled work.Complex enough to require an in depth planning process and actual budgeted, scheduled work.Product-TerminalThe new Windows Terminal.The new Windows Terminal.Resolution-Fix-CommittedFix is checked in, but it might be 3-4 weeks until a release.Fix is checked in, but it might be 3-4 weeks until a release.
Milestone
Description
Allow Search functionality to easily expand found text, and insert the expanded found text at current cursor location
as an example take a look at this Kubernetes example:
╭─root@nonprod /home/nonprod
╰─# k get po -n dev | grep notifications
oom-ent-notifications-1-0-775c6fb9dc-n476x 1/1 Running 3 71d
╭─root@nonprod /home/nonprod
╰─#
The system listed a container name - a complex generated name. I need the full container name to delete the container, for instance, what I want is to execute the following
k delete po -n dev oom-ent-notifications-1-0-775c6fb9dc-n476xNow the problem is -- how do I get the long name in? The mac iterm2 solves this by allowing a search
- User hits
ctrl+f(orctrl+shift+f) - User types in
oom-ent - System matches
oom-ent(below the line ending in grep notifications) - User presses
Tab - System highlights
oom-ent-notifications-1-0-775c6fb9dc-n476xAND copies it to clipboard - User types
k delete po -n dev[Ctrl+V] - System displays
k delete po -n dev oom-ent-notifications-1-0-775c6fb9dc-n476x - User hits
enterto execute the command.
Shift-Tab should work to select up to the beginning of the word. Shift-Tab followed by Tab should select the whole word if letters in the middle of the word are matched.
Allowing this functionality is super-useful.
F.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area-TerminalControlIssues pertaining to the terminal control (input, selection, keybindings, mouse interaction, etc.)Issues pertaining to the terminal control (input, selection, keybindings, mouse interaction, etc.)Area-UserInterfaceIssues pertaining to the user interface of the Console or TerminalIssues pertaining to the user interface of the Console or TerminalIssue-FeatureComplex enough to require an in depth planning process and actual budgeted, scheduled work.Complex enough to require an in depth planning process and actual budgeted, scheduled work.Product-TerminalThe new Windows Terminal.The new Windows Terminal.Resolution-Fix-CommittedFix is checked in, but it might be 3-4 weeks until a release.Fix is checked in, but it might be 3-4 weeks until a release.