Ctrl + Shift + Tab does not go to previous tab
Closed this issue · 2 comments
SlidingHorn commented
I'm running Ubuntu MATE 18.04 with urxvt v.9.22 and the tabbedex plugin. For some reason, using control+shift+tab does not go to the previous tab. I've also tried swapping Control & Shift in my keysym assignment.
Here's my .Xresources, if it will help:
EDIT: The iso14755 lines were added as an attempt to make this work - the problem was present before they were added
URxvt.font: xft:Ubuntu Mono derivative Powerline:pixelsize=16:style=Regular
URxvt.italicFont: xft:Ubuntu Mono derivative Powerline:pixelsize=16:style=Italic
URxvt.boldFont: xft:Ubuntu Mono derivative Powerline:pixelsize=16:style=Bold
URxvt.boldItalicFont: xft:Ubuntu Mono derivative Powerline:pixelsize=16:style=Bold Italic
URxvt*scrollBar: false
! Extensions
URxvt.perl-ext-common: default,fullscreen,matcher,tabbedex
URxvt.url-launcher: /usr/bin/xdg-open
URxvt.matcher.button: 1
URxvt.keysym.F11: perl:fullscreen:switch
URxvt.tabbedex.tabbar-fg: 2
URxvt.tabbedex.tabbar-bg: 0
URxvt.tabbedex.tab-fg: 3
URxvt.tabbedex.tab-bg: 0
URxvt.keysym.Control-t: perl:tabbedex:new_tab
URxvt.keysym.Control-Tab: perl:tabbedex:next_tab
URxvt.keysym.Control-Shift-Tab: perl:tabbedex:prev_tab
URxvt.iso14755: False
URxvt.iso14755_52: False
! Color Theming (Solarized - Dark)
*background: #002b36
*foreground: #657b83
!!*fading: 40
*fadeColor: #002b36
*cursorColor: #93a1a1
*pointerColorBackground: #586e75
*pointerColorForeground: #93a1a1
!! black dark/light
*color0: #073642
*color8: #002b36
!! red dark/light
*color1: #dc322f
*color9: #cb4b16
!! green dark/light
*color2: #859900
*color10: #586e75
!! yellow dark/light
*color3: #b58900
*color11: #657b83
!! blue dark/light
*color4: #268bd2
*color12: #839496
!! magenta dark/light
*color5: #d33682
*color13: #6c71c4
!! cyan dark/light
*color6: #2aa198
*color14: #93a1a1
!! white dark/light
*color7: #eee8d5
*color15: #fdf6e3
mina86 commented
Shift+Tab is usually bound to ISO_Left_Tab in X11. Use Control-ISO_Left_Tab
instead.
SlidingHorn commented
That did it, thank you