| Summary: | highlight the position of all found search results in the scrollbar, just like google chrome does | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Delian Angelov <delian66> |
| Component: | history | Assignee: | kamisama <ujjus2001> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | 4wy78uwh, adaptee, delian66, linds.r, nate, ujjus2001 |
| Priority: | NOR | Keywords: | usability |
| Version First Reported In: | 2.8.3 | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | https://invent.kde.org/utilities/konsole/-/commit/e389807d55060ef086722ea49d8b36d6264c8ebb | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
|
Description
Delian Angelov
2012-06-21 07:51:04 UTC
I agree that is a good idea. Hi, I agree that this would be a nice to have feature for Konsole. I've already started exploring the codebase and experimenting with possible implementations. I think I might be able to get this working. Would it be okay if I work on this? Let me know if there's anything specific I should keep in mind while implementing it. Thanks. Edit: I have create a MR: https://invent.kde.org/utilities/konsole/-/merge_requests/1061(In reply to kamisama from comment #2) > Hi, I agree that this would be a nice to have feature for Konsole. I've > already started exploring the codebase and experimenting with possible > implementations. I think I might be able to get this working. > > Would it be okay if I work on this? Let me know if there's anything specific > I should keep in mind while implementing it. > > Thanks. Edit: I have create a MR: https://invent.kde.org/utilities/konsole/-/merge_requests/1061 Git commit e389807d55060ef086722ea49d8b36d6264c8ebb by Kurt Hindenburg, on behalf of Ujjwal Shekhawat. Committed on 20/02/2025 at 01:14. Pushed by hindenburg into branch 'master'. Implement scrollbar highlighting for search results This PR introduces a feature to highlight the position of search results on the scrollbar, similar to how search results are highlighted in browsers like Google Chrome, editors like VSCode. The aim is to provide users with a visual indicator on the scrollbar, helping them quickly navigate through the results. M +29 -0 src/SearchHistoryTask.cpp M +3 -0 src/SearchHistoryTask.h M +2 -0 src/profile/Profile.cpp M +4 -0 src/profile/Profile.h M +5 -0 src/session/SessionController.cpp M +2 -0 src/terminalDisplay/TerminalDisplay.cpp M +66 -2 src/terminalDisplay/TerminalScrollBar.cpp M +13 -0 src/terminalDisplay/TerminalScrollBar.h M +18 -0 src/widgets/EditProfileDialog.cpp M +3 -0 src/widgets/EditProfileDialog.h M +139 -100 src/widgets/EditProfileScrollingPage.ui https://invent.kde.org/utilities/konsole/-/commit/e389807d55060ef086722ea49d8b36d6264c8ebb |