How to set key binding for moving (reordering) tabs in Atom?

I am trying to configure key binding to physically move the current tab, to the right or left of other tabs (instead of clicking and dragging to change them).

I know that custom key bindings are added to ~/.atom/keymap.cson , I just have a problem with the definition of the command, because I do not see it in the key combinations by default.

+8
atom-editor macos
source share
4 answers

I found that Atom has its own binding set for this under:

ctrl + shift + ← : pane:move-item-left

ctrl + shift + β†’ : pane:move-item-left

+13
source share

Custom bindings did not appear in Settings > Keybindings . Here they are:

 'atom-workspace atom-text-editor:not([mini])': 'ctrl-alt-]': 'window:move-active-item-to-pane-on-right' 'ctrl-alt-[': 'window:move-active-item-to-pane-on-left' 
+2
source share

You can see the Tab Move Key . It's simple, you can use alt page up and alt + page down to move tabs.

+1
source share

command + [= move block on the left to 1 tab

command +] = move the block to the right on 1 tab

0
source share

All Articles