public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Filipe Rosset <rosset.filipe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/tmux] f43: Merge branch 'rawhide' into f43
Date: Tue, 18 Aug 2026 12:31:22 GMT	[thread overview]
Message-ID: <178705628278.1.6447231279159212039.rpms-tmux-fa182d45c072@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/tmux
Branch : f43
Commit : fa182d45c0729889462f426afd3b692126532e9e
Author : Filipe Rosset <rosset.filipe@gmail.com>
Date   : 2026-08-18T09:30:22-03:00
Stats  : +112/-3 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/tmux/c/fa182d45c0729889462f426afd3b692126532e9e?branch=f43

Log:
Merge branch 'rawhide' into f43

---
diff --git a/sources b/sources
index 8bea64c..af7336e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tmux-3.7b.tar.gz) = 0f9724ef3a03a611119b8384d2effc2fda078b59e11af6397ed85ef4664e870823bfd9c5ebb4d5155fba19fdfb6156e9d1fe18cb5aa5b968e70a71050e2dc153
+SHA512 (tmux-3.7c.tar.gz) = 62139a277371238b56ca7cf2f1f339d8a04614034ce801457dc115ccd10cd45a42cec72a6354dbb82acc472970888ddb13e85bebe772a3d17cd32b3fb33c7bf8

diff --git a/tmux.spec b/tmux.spec
index 5a8800f..45f51e2 100644
--- a/tmux.spec
+++ b/tmux.spec
@@ -1,5 +1,5 @@
 Name:           tmux
-Version:        3.7b
+Version:        3.7c
 Release:        %autorelease
 Summary:        A terminal multiplexer
 License:        ISC AND BSD-2-Clause AND BSD-3-Clause AND SSH-short AND LicenseRef-Fedora-Public-Domain

diff --git a/bash_completion_tmux.sh b/bash_completion_tmux.sh
new file mode 100644
index 0000000..74728b9
--- /dev/null
+++ b/bash_completion_tmux.sh
@@ -0,0 +1,105 @@
+# START tmux completion
+# This file is in the public domain
+# See: http://www.debian-administration.org/articles/317 for how to write more.
+# Usage: Put "source bash_completion_tmux.sh" into your .bashrc
+_tmux() 
+{
+    local cur prev opts
+    COMPREPLY=()
+    cur="${COMP_WORDS[COMP_CWORD]}"
+    prev="${COMP_WORDS[COMP_CWORD-1]}"
+    
+    opts=" \
+    attach-session \
+    bind-key \
+    break-pane \
+    capture-pane \
+    choose-client \
+    choose-session \
+    choose-window \
+    clear-history \
+    clock-mode \
+    command-prompt \
+    confirm-before \
+    copy-buffer \
+    copy-mode \
+    delete-buffer \
+    detach-client \
+    display-message \
+    display-panes \
+    down-pane \
+    find-window \
+    has-session \
+    if-shell \
+    join-pane \
+    kill-pane \
+    kill-server \
+    kill-session \
+    kill-window \
+    last-window \
+    link-window \
+    list-buffers \
+    list-clients \
+    list-commands \
+    list-keys \
+    list-panes \
+    list-sessions \
+    list-windows \
+    load-buffer \
+    lock-client \
+    lock-server \
+    lock-session \
+    move-window \
+    new-session \
+    new-window \
+    next-layout \
+    next-window \
+    paste-buffer \
+    pipe-pane \
+    previous-layout \
+    previous-window \
+    refresh-client \
+    rename-session \
+    rename-window \
+    resize-pane \
+    respawn-window \
+    rotate-window \
+    run-shell \
+    save-buffer \
+    select-layout \
+    select-pane \
+    select-prompt \
+    select-window \
+    send-keys \
+    send-prefix \
+    server-info \
+    set-buffer \
+    set-environment \
+    set-option \
+    set-window-option \
+    show-buffer \
+    show-environment \
+    show-messages \
+    show-options \
+    show-window-options \
+    source-file \
+    split-window \
+    start-server \
+    suspend-client \
+    swap-pane \
+    swap-window \
+    switch-client \
+    unbind-key \
+    unlink-window \
+    up-pane"
+
+    COMPREPLY=($(compgen -W "${opts}" -- ${cur}))  
+    return 0
+
+}
+complete -F _tmux tmux
+
+# END tmux completion
+
+
+ 	  	 

diff --git a/tmux.spec b/tmux.spec
index f707ede..45f51e2 100644
--- a/tmux.spec
+++ b/tmux.spec
@@ -2,10 +2,10 @@ Name:           tmux
 Version:        3.7c
 Release:        %autorelease
 Summary:        A terminal multiplexer
-
 License:        ISC AND BSD-2-Clause AND BSD-3-Clause AND SSH-short AND LicenseRef-Fedora-Public-Domain
 URL:            https://tmux.github.io/
 Source0:        https://github.com/tmux/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
+Source1:        bash_completion_tmux.sh
 Source2:        tmux@.service
 Source3:        README.polkit
 
@@ -46,6 +46,9 @@ cp %{SOURCE3} .
 
 %install
 %make_install
+
+# Install the bash completion file
+install -Dpm 644 %{SOURCE1} %{buildroot}%{_datadir}/bash-completion/completions/tmux
 # Install the systemd file
 install -Dpm 644 %{SOURCE2} %{buildroot}%{_unitdir}/tmux@.service
 
@@ -78,6 +81,7 @@ fi
 %doc CHANGES README* example_tmux.conf
 %{_bindir}/tmux
 %{_mandir}/man1/tmux.1.*
+%{_datadir}/bash-completion/completions/tmux
 %{_unitdir}/tmux@.service
 
 %changelog

             reply	other threads:[~2026-08-18 12:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-18 12:31 Filipe Rosset [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-07-09 18:22 [rpms/tmux] f43: Merge branch 'rawhide' into f43 Filipe Rosset
2026-06-28 20:31 Filipe Rosset
2026-06-28 19:36 Filipe Rosset

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178705628278.1.6447231279159212039.rpms-tmux-fa182d45c072@fedoraproject.org \
    --to=rosset.filipe@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox