Giter Site home page Giter Site logo

Comments (29)

hoothin avatar hoothin commented on June 8, 2024 3

You can double click the word frame in search input to change its behaviour.

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024 1

Thanks for report. It's a know issue, cause that's not a actual text node, but a css text.
image
I could load the text from github and highlight with a special code, but that's too ugly.
I will fix it after I have a good idea.

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

Use regExp like /gpu/ /GPU/

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

You can get only exact word if you input 'GPU', without 'NoGPU' 'YesGPU'

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Is it possible to add an option for the search panel to work the same way as the standard search panel in the browser, that is, not distinguishing between exact and compound words?

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

I've updated to change content from str to /str/i automatically if your input text has no space.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Thanks a lot.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Another issue.

image

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Thanks a lot.

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

I tried to add support for these situation. But there may be some additional bugs introduced.
I have tested it for a while now and welcome to give it a try.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

I apologize, in my previous post I didn't provide a link to the page where I took the screenshot.
https://github.com/Ixiko/AHK-libs-and-classes-collection/blob/master/classes/class_LoadPictureType.ahk

image

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

Sorry I didn't count the scroll bar. You can try again.
image

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024
SearchJumper-FindBar-github-Video_2023-11-06_150939.webm

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

Thanks for test & report, I didn't test switching with enter. It's fixed now.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Thanks for work.

SearchJumper-FindBar-github-2-Video_2023-11-07_064924.webm

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

In addition to the fact that the number of found words on the page changes, also note that every now and then SearchJumper misses, not exactly hitting the word with a crosshair, and sometimes, as it were, thinks halfway to the word.

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

It's ordinary behaviour and as same as build-in find in page of firefox. Github is build with React and the dom will refresh when you scroll even though the page seems to be unchanged.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

OK, I got it.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Is there a way to search by entire phrase rather than by words?

SearchJumper-FindBar-github-3-Video_2023-11-07_091518.webm

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

$o or $c. Like $c+Github Copilot. You can see detail when you hover mouse on the input bar.
I think it's a nice idea to add whole phrase through "add words" window.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Is it possible make it switchable, like the "Pin search text" and "Sidebar to locate" icons on the right?

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

Sorry, but I don't like the switchable function of sth like "case sensitive", "whole phrase".
What about ignore delimiter when input phrase contains space?

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

It’s just that with such a switch it would be convenient to switch between searching for the entire phrase and words individually. For example, the user initially enter github copilot and find the entire phrase; if they need to find individual words, click on the icon and a search for individual words occurs. If the entire phrase will be searched only if the delimiters contain spaces, then in order to search by words, you will need to manually remove the delimiters.
At the same time, separators can be used to indicate that when switching to word search mode, words will be searched individually or jointly.
For example, the phrase about+ignore delimiter+when input will initially be searched in its entirety, switching to a word search will search about ignore delimiter when input. If about +ignore delimiter +when input was entered, i.e. there will be a space before +, then switching to a word search will search for about ignore when delimiter input.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Another page with a Find bar bug.
https://habr.com/ru/articles/548064/
search query: general.smoothScroll.durationToIntervalRatio

image
image

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

It's not a bug, the words are in different elements. To join all the text node for finding cross element will cost much CPU time. So I ignore this situation.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Then there is a situation where the user cannot be 100% sure when using the Findbar that all occurrences of what they are looking for have been found.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

For example, as it happened to me - I clicked on a link from Google and saw that SearchJumper did not highlight any words, then I manually called the Findbar and still without success. After that, I decided to just check with the standard Firefox search just in case, and it turned out that the necessary keywords were indeed on the page.

from searchjumper.

iG8R avatar iG8R commented on June 8, 2024

Is it possible to make an option to make the functions
Highlight keywords on the search engine results page
Highlight keywords on the page opened by click on the search engine
work in the following way - when finishing a search in the search engine or opening the page from the search engine, so that the search words are not immediately highlighted, but only when the Findbar is brought up, then the words from the search query are already present in it and highlighted on the page?

from searchjumper.

hoothin avatar hoothin commented on June 8, 2024

It's now supported.

from searchjumper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.