Currently I can search the console buffer in alacritty using Ctrl+Shift+F, which highlights all matching results. However its not clear for me how to jump back and forth between the results? In vim for example you can do this with n for next match and N for previous. Is there something similar in alacritty?
Asked
Active
Viewed 1,054 times
1 Answers
3
- For scroll to next, you can use
Enter
- For scroll to previous, you can use
Shift+Enter
Another list of actions described below:
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }

whalemare
- 1,107
- 1
- 13
- 30