The behavior regards the display of objects has changed when the cursor gets back to the search bar and any changes has been made.
1.Toggling to the search bar from the results window blocks the whole search term.Pressing Backspace erases it completely fine. But pressing the left arrow leads to one character left. If the last character alone had to be changed it will involve another key press to the right.Can the cursor be made to remain at the end on a left arrow press.
2.With no search terms , toggling between results and search window continues to show 1 object blocked.In such a condition -nil search (cursor at start)or a change in the search query(presently working) displaying object count will be ideal.
Search bar and object
Re: Search bar and object
Should the left key move to the start of the selection and the right key move to the end of the selection?1.Toggling to the search bar from the results window blocks the whole search term.Pressing Backspace erases it completely fine. But pressing the left arrow leads to one character left. If the last character alone had to be changed it will involve another key press to the right.Can the cursor be made to remain at the end on a left arrow press.
I have implemented this for the renaming edit in the result list (see the ini option rename_move_caret_to_selection_end)
Maybe something similar?
Do you mean when the search edit has focus, the number of results should be displayed in the status bar instead of the current selection count?2.With no search terms , toggling between results and search window continues to show 1 object blocked.In such a condition -nil search (cursor at start)or a change in the search query(presently working) displaying object count will be ideal.
Re: Search bar and object
I make a search for abc. Go to results , back to search. abc is highlighted and the cursor remains at the right. Pressing back key erases it completely-FINE. If I press left key why not the cursor remain to the right of c except that the highlighting is removed. Presently it lands up at b.So if I had to change the last letter c I have to make a extra key press. But that is upto you and the how the users are accustomed to. The present behavior (not the one I am suggesting) is the universal behavior including that of the Windows edit.Should the left key move to the start of the selection and the right key move to the end of the selection?
I have implemented this for the renaming edit in the result list (see the ini option rename_move_caret_to_selection_end)
Maybe something similar?
Yes , if a person goes back with an intention to search , the blocked item may loose its significance.Do you mean when the search edit has focus, the number of results should be displayed in the status bar instead of the current selection count?
Re: Search bar and object
I understand, but the common replacement is pressing left will move the caret to the start of the selection.I make a search for abc. Go to results , back to search. abc is highlighted and the cursor remains at the right. Pressing back key erases it completely-FINE. If I press left key why not the cursor remain to the right of c except that the highlighting is removed. Presently it lands up at b.So if I had to change the last letter c I have to make a extra key press. But that is upto you and the how the users are accustomed to. The present behavior (not the one I am suggesting) is the universal behavior including that of the Windows edit.
I will consider an option to just clear the selection all together (so the caret stays at the end of the selection), move the caret to the start of the selection or like windows just move the caret to the left.
I will consider the option clear the selection when focusing the search edit.Yes , if a person goes back with an intention to search , the blocked item may loose its significance.
or maybe the selection should be retained, but the status bar will show the result count instead of the selection count?
Thanks for the suggestions.
Re: Search bar and object
I have added the ini option
Set this to 1 to enable, 0 to disable.
I know its not quite what you asked, it is just something I was playing around with...
This ini option will also be renamed to search_edit_move_caret_to_selection_end in a future update.
Code: Select all
state_search_edit_move_caret_to_selection_end
I know its not quite what you asked, it is just something I was playing around with...
This ini option will also be renamed to search_edit_move_caret_to_selection_end in a future update.
Re: Search bar and object
Okey , might be useful for some. What about an alternative 2 to keep the caret at the right end, not the present 0 choice - ie remove the highlighting but stay put there itself..void wrote: Set this to 1 to enable, 0 to disable.
I know its not quite what you asked, it is just something I was playing around with...
This ini option will also be renamed to search_edit_move_caret_to_selection_end in a future update.
Re: Search bar and object
Check out the ini option:
0 = no selection
1 = select all
2 = move caret to end
Please try adding the following line to the end of you Everything.ini when Everything is closed:
Code: Select all
select_text_mode2
1 = select all
2 = move caret to end
Please try adding the following line to the end of you Everything.ini when Everything is closed:
Code: Select all
select_text_mode2=2
Re: Search bar and object
If the option is 2 , it removes the advantage of a backspacing the entire query to start fresh. What I was looking for is something like if you press the left arrow , the cursor remains where it is (ie at the end) and the highlight goes off .Presently it slips to one character left.
Re: Search bar and object
If you had decided to bring in the result count , when the search edit gets focus , in 653b still the selection count is displayed until the search term is erased. Thanks..