Skip to main content
Solved

How to navigate between sibling layers?


Svarry

Currently, you can press enter to go down one step in layers, and shift-enter to go up. That’s really useful, but completely pointless when there’s multiple layers at same level, and you need to select only one of them.

Is it possible to somehow select only first in the list, or navigate to next sibling? Because right now, when I enter into a deeper layer, it selects all layers within making any kind of manipulation impossible.

Best answer by Mihael

@Svarry We released the plugin 🎊

Figma
View original
This topic has been closed for comments

11 replies

Gleb
  • Power Member
  • 4706 replies
  • January 24, 2021

Yes, you can press Tab to select first/go to next and then Shift + Tab to go backwards.


Svarry
  • Author
  • 27 replies
  • January 24, 2021

That only seems to work on single selection, not on multiple, bit of a weird restriction. Otherwise it would’ve been perfect.


Gleb
  • Power Member
  • 4706 replies
  • January 24, 2021

It works if you select multiple objects in one parent. For example you press Enter to select all children, and then you can press Tab to select the first one. Regarding the limitation — you can file a feature request in the #product-ideas category. 🙂


Mr.Biscuit
  • 109 replies
  • January 24, 2021

Yeah, I do not know why Tab does not work on multiple selections, but I wrote this code to achieve that. You can paste this code into your Figma Console to see this in effect, and if you like it, you can even make a tiny local plugin and bind the ⇥ and ⇧⇥ short cut to it using BetterTouchTool.

To go upward use:

let currentSelection = Figma.currentPage.selection;
let newselection = []
currentSelection.forEach(element => {
let index = element.parent.children.indexOf(element)
if (index < element.parent.children.length - 1) newselection.push(element.parent.children[index + 1])
});
if (newselection.length > 0) {Figma.currentPage.selection = newselection}

To go downward use:

let currentSelection = Figma.currentPage.selection;
let newselection = []
currentSelection.forEach(element => {
let index = element.parent.children.indexOf(element)
if (index > 0) newselection.push(element.parent.children[index - 1])
});
if (newselection.length > 0) Figma.currentPage.selection = newselection


Svarry
  • Author
  • 27 replies
  • January 24, 2021

Thanks a bunch! I haven’t tried making plugins before and I’m on Windows so can’t use BetterTouchTool, but will look into it, might be good time to learn!

It’s so weird how random features just stop working in certain context in Figma, feels like a bug 😅


Marcelo_Davanzo

I agree this needs to happen. I created a Product idea post here if anyone finds this thread and wants to vote on this request:


Mihael
  • 31 replies
  • March 3, 2021

So, I took liberty to use the @Mr.Biscuit code and turned it into plugin. I need to style it, and would like to publish it with permission, ofc. Here is how it works…


Mihael
  • 31 replies
  • March 3, 2021

Here it is. A simple as it can be, but mucho useful 😉


Svarry
  • Author
  • 27 replies
  • March 5, 2021

Awesome Mihael! That would be a real lifesaver 😃


Mihael
  • 31 replies
  • Answer
  • March 12, 2021

@Svarry We released the plugin 🎊

Figma

Svarry
  • Author
  • 27 replies
  • March 16, 2021

Thanks much Mihael, this will save so much time 😃


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings