Package Details: tabbed 0.8-1

Git Clone URL: https://aur.archlinux.org/tabbed.git (read-only, click to copy)
Package Base: tabbed
Description: simple generic tabbed frontend to xembed-aware applications
Upstream URL: https://tools.suckless.org/tabbed
Keywords: st suckless
Licenses: custom:MIT/X
Submitter: vaygr
Maintainer: axml
Last Packager: axml
Votes: 2
Popularity: 0.85
First Submitted: 2023-09-02 16:10 (UTC)
Last Updated: 2024-03-19 16:15 (UTC)

Dependencies (2)

Required by (3)

Sources (2)

Latest Comments

culyun commented on 2024-03-04 21:30 (UTC)

tabbed seems to eat Ctrl-U, which interferes with standard vim / nvim keybindings.

I fixed it in a local build with the following patch:

commit 2baa45a7248697879700001d470a87893a1ebccb Author: Steve Simpson ssimpson64@gmail.com Date: Tue Mar 5 10:11:09 2024 +1300

Experimental: deleted some keybindings that *may* affect Ctrl-U

diff --git a/config.h b/config.h index defa426..55655a7 100644 --- a/config.h +++ b/config.h @@ -59,8 +59,5 @@ static Key keys[] = {

    { MODKEY,               XK_q,      killclient,  { 0 } },
  • { MODKEY, XK_u, focusurgent, { 0 } },
  • <h2>{ MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } },</h2>
    { 0,                    XK_F11,    fullscreen,  { 0 } },
    

    };