ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

ვრცლად

Firefox appends www before random words in URL bar

  • 10 პასუხი
  • 1 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 9 ნახვა
  • ბოლოს გამოეხმაურა Ekci

The problem is that: 1. I copy random word. 2. Press CTRL+T and CTRL+V and press ENTER. Last time it happened it was a word "homography". 3. I end up on the website "http://www.homography/" 4. Why?

It is random, pasting it again in the URL bar does search in Google. I have these settings changed in `about:config`: browser.fixup.alternate.enabled = false browser.fixup.alternate.prefix = (empty) browser.fixup.alternate.suffix = (empty)

What's wrong?

The problem is that: 1. I copy random word. 2. Press CTRL+T and CTRL+V and press ENTER. Last time it happened it was a word "homography". 3. I end up on the website "http://www.homography/" 4. Why? It is random, pasting it again in the URL bar does search in Google. I have these settings changed in `about:config`: browser.fixup.alternate.enabled = false browser.fixup.alternate.prefix = (empty) browser.fixup.alternate.suffix = (empty) What's wrong?
მიმაგრებული ეკრანის სურათები

გადაწყვეტა შერჩეულია

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page.

So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Solution to disable the shortcut: see cor-el's reply below.

პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (10)

Hmm, that's a strange result. If you were going so fast that Firefox thought you were still holding down the Ctrl key when pressing Enter, then you should get both www. and the beginning and .com at the end. I don't know how you could get only www. at the beginning. ??

If you are trying to search a word or phrase selected in a page in Firefox, consider

right-click > Search [site] for [selected text]

as a workaround or possible time-saver.

jscher2000 said

I don't know how you could get only www. at the beginning. ??

Actually, Ctrl+Enter plus these settings --

Ekci said

I have these settings changed in `about:config`: browser.fixup.alternate.prefix = (empty)
browser.fixup.alternate.suffix = (empty)

-- gives me just the extra www. and not .com. Odd.

ჩასწორების თარიღი: , ავტორი: jscher2000 - Support Volunteer

Oh, that's it! So it looks like Ctrl+Enter forces fixup that's bugged and respects suffix setting but ignores prefix?

A fix for me would be turning the shortcut off but I cannot find a way to do this. Thank you for your answer!

შერჩეული გადაწყვეტა

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page.

So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Solution to disable the shortcut: see cor-el's reply below.

ჩასწორების თარიღი: , ავტორი: jscher2000 - Support Volunteer

jscher2000 said

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page. So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Ok, I will but shouldn't it be reported as a bug of a fixup? :)

Ekci said

Ok, I will but shouldn't it be reported as a bug of a fixup? :)

I thought about that, but the quick fix of making the prefix correctly blank doesn't help you bypass fixup:

Ctrl+Enter: if prefix = "" and suffix = "" then => http://word/

You need new logic:

Ctrl+Enter: if prefix = "" and suffix = "" then => DO NOT FIXUP

Or a new preference:

browser.fixup_shortcut.enabled = (true|false)

Solution to disable the shortcut: see cor-el's reply below.

ჩასწორების თარიღი: , ავტორი: jscher2000 - Support Volunteer

Ok, thank you! I will solve this problem but still hope that there will be an option to disable the shortcut. It seems that I think faster than my fingers can move :)

ჩასწორების თარიღი: , ავტორი: Ekci

Possibly you discovered it already but just in case, here's the bug tracker: https://bugzilla.mozilla.org/

Maybe:

  • browser.urlbar.ctrlCanonizesURLs = false

Yes! It did work, thank you @cor-el!