question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

In Gmail "Label" functionality lost auto focus after Version: 0.9.2

See original GitHub issue

In Gmail where Surfing Keys was used with unmapAllExcept after Version: 0.9.2 (Updated: August 14, 2017) Label functionality stopped getting auto focus. By using mouse it is kind of random (not always happening) but with keyboard (press l) it is always:

capture

Here is my unmap: unmapAllExcept(['<Ctrl-o>', '<Ctrl-r>', '<Ctrl-d>'], /mail\.google\.com/i); // Clear all keyboard mappings for Gmail except the ones listed (Ctrl-d is my mapping for a custom Javascript function for Gmail search by subject)

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
brookhongcommented, Aug 26, 2017

Fixed in 0.9.3.

0reactions
bojanjoviciccommented, Dec 31, 2017

Hi @jaredbidlow , Here it is, but maybe too much customized for my purposes:

mapkey('<Ctrl-d>', 'Go down (Ctrl + D) to original conversation', function() {
    var title = document.title;
	title = clearTitle(title).replace("Notification: ", "");
	
	if (title.indexOf(" - #BRobot @ ") == -1)
	{
	    if (title.indexOf("... @ ") != -1)
	    {
		    title = title.substring(0, title.indexOf("... @ "));
            var lastIndex = title.lastIndexOf(" ");
            title = title.substring(0, lastIndex);
	    }
	}
	else
	{
	    title = title.substring(0, title.indexOf(" - #BRobot @ ")); 
	}

	var targetUrl = document.URL.substring(0, 33) + '#search/subject:"' + encodeURIComponent(title) + '"';
    window.location = targetUrl;
});
Read more comments on GitHub >

github_iconTop Results From Across the Web

Tips to optimize your Gmail inbox - Google Support
Manage incoming email messages automatically with Gmail filters and labels. ... Step 1: Create a label. On your computer, go to Gmail. On...
Read more >
Release Notes | Mimestream
Release Notes. Mimestream is in active development. The release history and changes made are published here to keep our users informed about progress...
Read more >
Gmail Labels: everything you need to know | Blog | Hiver™
Gmail Labels are a thousand times more useful than you think. Here's everything you need to learn about it - from label creation...
Read more >
Gmail Labels: Complete Guide to Keeping Your Inbox ...
Create a neat, actionable, and collaboration-ready inbox using Gmail labels by following these simple steps.
Read more >
12 incredibly useful Gmail settings you didn't know you needed
In Gmail's desktop version, you'll first need to activate the option by ... feature called Undo Send that lets you pull back a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found