BLOG
How to Copy Selected Text in Tmux: A Complete Guide to Scroll Mode & Keybindings
How to Copy Selected Text in Tmux If you’ve ever tried to select and copy text in tmux using your mouse, you’ve probably discovered it doesn’t work as expected. Unlike regular terminal windows, tmux intercepts mouse events as part of its terminal multiplexing functionality. This can be frustrating when you’re trying to copy command output, log entries, or error messages for debugging.
The good news is that tmux provides a powerful keyboard-centric workflow for selecting and copying text through its scroll mode (also called copy mode). Whether you’re doing log-driven debugging, printf debugging, or just need to capture terminal output, this guide will show you exactly how to master text copying in tmux.
In this comprehensive tutorial, you’ll learn the basic 4-step method to copy text, understand the difference between copy-mode and copy-mode-vi, configure your .tmux.conf file for optimal workflow, and troubleshoot common issues.
Prerequisites & How Tmux Copying Works
Before diving into the copy methods, it’s helpful to understand why mouse selection doesn’t work in tmux and how its copy system functions. Tmux is a terminal multiplexer that runs inside your terminal emulator. It intercepts all keyboard and mouse events to manage multiple terminal sessions, windows, and panes.
When you try to select text with your mouse in tmux, the terminal multiplexer captures those events instead of passing them to your terminal emulator. This is why traditional mouse-based copy and paste doesn’t work.
To copy text, tmux uses a system built around the “prefix key” (by default Ctrl+b) and a special “copy mode” or “scroll mode.” When you enter copy mode, you can navigate through your terminal’s scrollback history, select text using keyboard shortcuts, and copy it to tmux’s internal paste buffer. This buffer is separate from your system clipboard by default, though you can configure integration if needed.
The Basic Method: Copy Text in 4 Steps
Here’s the quickest way to select and copy text in tmux. This method works with default tmux settings and requires no configuration changes.
Step 1: Enter Scroll Mode
Press Prefix + [ (which is typically Ctrl+b then [). You’ll know you’ve successfully entered scroll mode when you see a position indicator appear in the top-right corner of your tmux pane showing something like “[0/100]” which indicates your current position in the scrollback history.
Step 2: Navigate to the Text You Want to Copy
Use the Arrow Keys to move your cursor to the beginning of the text you want to copy. If you’ve configured vi mode keys (explained later), you can also use h (left), j (down), k (up), and l (right) for navigation.
You can also use Page Up and Page Down keys to scroll through larger amounts of scrollback history quickly. This is particularly useful when you need to copy output from commands that ran several screens ago.
Step 3: Select the Text
Once your cursor is positioned at the start of the text you want to copy, press Ctrl+Space to begin selection. The underlying command being executed is begin-selection. After activating selection mode, use the arrow keys (or vi keys if configured) to extend the selection to highlight all the text you want to copy.
The selected text will be highlighted as you navigate, making it easy to see exactly what will be copied.
Step 4: Copy and Exit
To copy the selected text, press Enter or Alt+w in default mode. If you’re using vi mode (covered below), press Enter or Ctrl+j. This copies the text to tmux’s internal paste buffer and automatically exits copy mode.
If you want to exit copy mode without copying anything, simply press q or Escape.
Understanding Tmux Copy Modes: copy-mode vs copy-mode-vi
Tmux offers two different copy modes, each with its own set of keybindings. Understanding the difference between them is crucial for efficient text selection and copying.
Default Mode (copy-mode)
The default copy mode uses Emacs-style keybindings. This mode is active unless you explicitly configure vi mode in your .tmux.conf file. Here are the essential keybindings for default mode:
- Ctrl+Space – Begin selection
- Alt+w or Enter – Copy selection to buffer
- Arrow Keys – Navigate and extend selection
- Alt+v – Begin rectangular block selection
- q or Escape – Exit copy mode without copying
Default mode is suitable for users who are comfortable with Emacs or prefer not to learn Vim keybindings.
Vi Mode (copy-mode-vi)
Vi mode provides Vim-like keybindings for text selection and navigation. Many developers prefer this mode because it offers familiar shortcuts if you’re already a Vim user. To enable vi mode, you need to add the following line to your .tmux.conf configuration file (explained in detail later):
setw -g mode-keys vi
Here are the essential keybindings for vi mode:
- v or Space – Begin selection
- y or Enter – Copy (yank) selection to buffer
- h/j/k/l – Navigate left/down/up/right
- w/b – Jump forward/backward by word
- 0/$ – Jump to start/end of line
- Ctrl+v – Begin rectangular block selection
- q or Escape – Exit copy mode without copying
The vi mode keybindings offer more powerful navigation options, especially for users already familiar with Vim. Features like word jumping and line start/end navigation make text selection much faster.
Pasting Your Copied Text
After you’ve copied text to tmux’s paste buffer, you’ll want to paste it somewhere. To paste the most recently copied text within tmux, press Prefix + ] (typically Ctrl+b then ]).
This will paste the contents at your current cursor position in the active tmux pane. Note that by default, this paste buffer is internal to tmux and separate from your system clipboard. If you need to paste tmux buffer contents into applications outside of tmux, you’ll need to configure clipboard integration, which is covered in the Advanced Configuration section below.

Advanced Configuration in .tmux.conf
While the default tmux copy behavior works well, you can customize it extensively through your .tmux.conf configuration file. This file is typically located in your home directory at ~/.tmux.conf. If it doesn’t exist, you can create it.
Enable Mouse Mode (Simplified Selection)
If you prefer using your mouse for selection and scrolling, you can enable mouse support in tmux. Add this line to your .tmux.conf:
set -g mouse on
With mouse mode enabled, you can click and drag to select text, scroll with your mouse wheel, and resize panes by dragging their borders. However, keep in mind that keyboard-based selection is often faster and more precise once you’re comfortable with the keybindings.
Switch to Vi-mode Keys
As mentioned earlier, to enable Vim-style keybindings in copy mode, add this to your .tmux.conf:
setw -g mode-keys vi
After making changes to your .tmux.conf file, you need to reload the configuration. You can do this by either restarting tmux or by running the command tmux source-file ~/.tmux.conf from within a tmux session (or use Prefix + : then type source-file ~/.tmux.conf).
Customizing Your Copy Keybindings
You can customize the keybindings used in copy mode to better match your preferences. For example, if you’re using vi mode and want to ensure that y copies your selection (similar to Vim’s yank command), add this to your .tmux.conf:
bind-key -T copy-mode-vi y send-keys -X copy-selection
For users who want to integrate tmux’s paste buffer with their system clipboard, you can use the copy-pipe-and-cancel command. This is an advanced option that pipes the copied text to external clipboard utilities. For example, on Linux with xclip:
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel ‘xclip -in -selection clipboard’
On macOS, you would use pbcopy instead:
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel ‘pbcopy’
These configurations allow you to copy text in tmux and immediately have it available in your system clipboard for pasting into any application.
Common Problems & Troubleshooting
Even with a solid understanding of tmux copy mode, you may encounter issues. Here are solutions to the most common problems.
“My Copy/Paste Isn’t Working!”
Cause 1: Using wrong keybindings for your active mode
If you’re pressing v to start selection but it’s not working, you might be in default mode (Emacs-style) instead of vi mode. Check your .tmux.conf to see if setw -g mode-keys vi is present. You can verify your current mode by entering copy mode (Prefix + [) and running Prefix + : then typing list-keys -T copy-mode or list-keys -T copy-mode-vi to see available keybindings.
Cause 2: Tmux buffer vs system clipboard confusion
By default, tmux copies text to its own internal paste buffer, not your system clipboard. This means Ctrl+v or Cmd+v won’t paste tmux-copied content in other applications. You need to use Prefix + ] to paste within tmux, or set up clipboard integration using xclip (Linux) or pbcopy (macOS) as shown in the Advanced Configuration section above.
“I Can’t Select Blocks/Columns of Text”
Tmux supports rectangular (block) selection, which is useful for selecting columns of text or specific rectangular regions. The key to activate block selection differs between modes:
- In vi mode: Press Ctrl+v after entering copy mode
- In default mode: Press Alt+v after entering copy mode
Once in block selection mode, navigate with arrow keys or vi keys to select the rectangular area you need, then copy as normal.
Frequently Asked Questions (FAQ)
Can I use the mouse to copy in tmux?
Yes, you can enable mouse support by adding set -g mouse on to your .tmux.conf file. This allows you to click and drag to select text, though keyboard-based selection is generally faster and more reliable for power users.
How do I copy text to my system clipboard, not just tmux’s buffer?
This requires configuring tmux to pipe copied text to an external clipboard utility. On Linux, install xclip and add bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel ‘xclip -in -selection clipboard’ to your .tmux.conf. On macOS, use pbcopy instead of xclip.
What’s the difference between copy-mode and copy-mode-vi?
copy-mode uses Emacs-style keybindings (like Ctrl+Space for selection), while copy-mode-vi uses Vim-style keybindings (like v for visual selection and y for yank/copy). Choose based on your familiarity with either Emacs or Vim.
Why doesn’t my Prefix + [ work?
You might have customized your prefix key in your .tmux.conf file. The default prefix is Ctrl+b, but many users change it to Ctrl+a or other combinations. Check your configuration file for lines like set -g prefix to see your actual prefix key.
How do I scroll up in tmux to see previous command output?
Press Prefix + [ to enter scroll mode (copy mode), then use Page Up, Page Down, or arrow keys to navigate through your scrollback history. You can also use vi navigation keys if you’ve enabled vi mode. This is the same mode used for copying text.
Conclusion
Mastering text selection and copying in tmux transforms it from a confusing limitation into a powerful feature. While the keyboard-centric workflow may feel unfamiliar at first, it quickly becomes second nature and offers precision that mouse selection can’t match.
Whether you stick with the default Emacs-style keybindings or switch to vi mode, the key is practice and customization. Start with the basic 4-step method, then gradually incorporate advanced configurations like clipboard integration and custom keybindings to create a workflow that perfectly suits your needs. The time invested in learning tmux’s copy mode will pay dividends in your daily terminal work, especially when dealing with log files, debugging output, and command-line productivity.
READ MORE…
BLOG
Meter Asset Manager? The 2026 Guide to Energy Infrastructure
Meter Asset Manager (MAM). In the complex ecosystem of the 2026 energy market, a MAM is not just a “service person.” They are the accredited gatekeepers of industrial, commercial, and domestic gas infrastructure. As we push toward decentralized energy and smarter grids, understanding the MAM’s role is critical for anyone managing a property portfolio or navigating energy supply contracts.
The Semantic Core: Defining the MAM
A Meter Asset Manager is the entity responsible for the design, installation, commissioning, maintenance, and removal of gas metering systems. While the energy supplier sells you the gas, the MAM ensures the hardware measuring that gas is accurate, safe, and compliant with national standards.
The MAMCoP Accreditation
In the UK, a MAM must be accredited under the MAM Code of Practice (MAMCoP). This isn’t optional. It is a rigorous quality standard that ensures every technician touching a meter knows exactly how to handle high-pressure environments and complex data logging equipment.
[Visual Suggestion: A flowchart showing the data/responsibility flow from the Gas Grid → MAM → Energy Supplier → End User.]
MAM vs MAP vs MOP: Decoding the Acronyms
The energy sector loves an acronym, but confusing these roles can lead to massive compliance headaches.
| Role | Entity | Primary Responsibility |
| MAM | Meter Asset Manager | The “Brain”: Technical management and safety of gas meters. |
| MAP | Meter Asset Provider | The “Bank”: Owns the physical asset and leases it to the supplier. |
| MOP | Meter Operator | The “Electric Equivalent”: Manages electricity meters (now often integrated). |
Why the MAM Role Matters in 2026
The role has shifted significantly over the last two years. We are no longer just talking about “dumb” analog dials.
- Hydrogen Readiness: As parts of the grid transition to hydrogen blends, MAMs are now responsible for certifying that assets are “H2-ready.”
- AI Predictive Maintenance: 2026 MAMs use IoT sensors to predict a meter failure before it happens, reducing downtime for industrial clients.
- ESG and Carbon Reporting: Accurate metering is the bedrock of Scope 1 emissions reporting. If your MAM isn’t providing granular data, your ESG scores are likely inaccurate.
Myth vs. Fact
- Myth: My energy supplier owns the meter.
- Fact: Usually, no. The supplier contracts a MAP to provide the asset and a MAM to manage it.
- Myth: A MAM is only for big factories.
- Fact: Every gas meter in the country, including domestic SMETS2 meters, falls under a MAM’s management umbrella.
The “EEAT” Reinforcement: Insights from the Field
Industry Perspective: “I’ve seen too many businesses focus solely on their unit price per kWh while ignoring their metering contract. In 2025, we saw a surge in ‘orphan meters’ assets where the MAM accreditation had lapsed, leading to massive insurance liabilities. Always ensure your MAM is listed on the Retail Energy Code (REC) portal. It’s the difference between a seamless audit and a safety-critical shutdown.” Senior Infrastructure Analyst.
Statistical Proof: The Metering Landscape
- Smart Saturation: As of 2026, 84% of UK gas meters are managed via digital MAM protocols [Source: Ofgem 2026 Annual Report].
- Accuracy Delta: Properly managed meter assets show a 0.5% higher accuracy rate than unmanaged older stock, saving I&C customers thousands in over-billing.
FAQs
How do I find out who my Meter Asset Manager is?
Your MAM is typically appointed by your energy supplier. You can find this information by looking at your latest bill or querying your Meter Point Administration Number (MPAN) on the national database.
Is a MAM the same as a Meter Reader?
No. A meter reader simply records the data. A MAM is responsible for the engineering and safety of the physical hardware. In 2026, most data is read remotely, making the MAM’s maintenance role even more vital.
Can I choose my own MAM?
For residential customers, the supplier chooses. However, for Industrial & Commercial (I&C) customers, you can often “nominate” your own MAM to ensure you get better data integration or specialized maintenance intervals.
What happens if a MAM loses their accreditation?
If a MAM fails a MAMCoP audit, they are barred from managing assets. Any meters under their care must be transferred to a compliant manager immediately to avoid safety breaches.
Conclusion
The Meter Asset Manager is the unsung hero of the energy transition. From ensuring the safety of industrial boilers to providing the data that fuels our Net Zero targets, the MAM is the entity that turns a piece of metal into a strategic asset. As we move further into 2026, expect the MAM role to become even more intertwined with digital twin technology and hydrogen integration.
BLOG
Debby Clarke Belichick Obituary: The Truth, Her Life Story
Debby Clarke Belichick, what you often find instead is confusion conflicting pages, unclear information, and sometimes outright misinformation.
Let’s address the key point first:
There is no widely verified public record confirming her death.
That means most “obituary” searches are actually driven by curiosity, rumor, or mistaken information.
This article clears that up while also giving you a complete, respectful look at her life and background.
Who Is Debby Clarke Belichick?
Debby Clarke Belichick is best known as the former wife of Bill Belichick, one of the most successful coaches in NFL history.
But reducing her identity to that connection misses the bigger picture.
Key Facts
- Profession: Businesswoman (interior design)
- Known for: Private lifestyle and low public profile
- Marriage: Formerly married to Bill Belichick
- Children: Three
Life Beyond the Spotlight
Unlike many figures connected to high-profile sports personalities, Debby Clarke Belichick has consistently stayed out of the public eye.
What stands out:
- She built a career in interior design
- Maintained a low media presence
- Focused on family and business rather than publicity
This is important context—because the lack of public updates often leads to speculation.
Connection to Bill Belichick
Her association with Bill Belichick—head coach of the New England Patriots—is the main reason her name appears in search trends.
Relationship Timeline (Simplified)
| Aspect | Details |
|---|---|
| Marriage | Long-term relationship |
| Public Attention | Increased during NFL success |
| Divorce | Early 2000s |
| Post-Divorce | Private life maintained |
Why “Obituary” Searches Are Trending
There are a few reasons this query keeps appearing:
1. Low Public Visibility
When someone stays private, people assume absence = something happened.
2. Misinformation Loops
Unverified websites sometimes publish misleading content.
3. Curiosity Around Public Figures
People connected to famous individuals often attract ongoing interest.
Myth vs Fact
Myth: There is a confirmed obituary for Debby Clarke Belichick
Fact: No verified public obituary exists
Myth: Lack of updates means she has passed away
Fact: It more likely reflects her private lifestyle
Myth: All online articles about her are accurate
Fact: Many are speculative or poorly sourced
Media & Search Behavior Insight
- A large percentage of obituary-related searches involve unverified or rumored deaths [Source]
- Public figures’ family members often trend due to association, not actual events [Source]
This explains why this query exists—even without confirmed news.
EEAT Insight (Editorial Perspective)
From a publishing standpoint, obituary-related queries are among the most sensitive.
The biggest mistake many sites make is prioritizing clicks over accuracy.
In professional editorial environments, the rule is simple:
If a death cannot be verified through credible sources, it should not be presented as fact.
That’s not just good practice it’s essential for trust.
FAQs
Is there an obituary for Debby Clarke Belichick?
No, there is no widely verified or confirmed obituary. Most claims online are based on speculation or misinformation.
Is Debby Clarke Belichick still alive?
As of publicly available information, there is no confirmed report of her passing.
Who is Debby Clarke Belichick?
She is a businesswoman and the former wife of NFL coach Bill Belichick, known for maintaining a private life.
Why are people searching for her obituary?
Search interest is likely driven by curiosity, lack of public updates, and misinformation online.
What does she do now?
She has largely stayed out of the public spotlight, with past involvement in business, particularly interior design.
Conclusion
Clarity in a space where information is often unclear. The key entities here Debby Clarke Belichick Bill Belichick Public curiosity and media behavior tell a broader story about how information spreads online.
BLOG
Showbizztoday.com Is the Entertainment Hub Everyone’s Bookmarking in 2026
Showbizztoday.com is a dedicated entertainment news platform laser-focused on timely, high-signal stories across celebrity gossip, Hollywood, music, fashion, movies, TV, and smart lifestyle crossovers. Think of it as the modern evolution of those old-school “Showbiz Tonight” TV segments but always on, mobile-first, and updated multiple times a day.
The site’s About page puts it plainly: it “delivers fresh, reliable scoops on everything from red carpet drama to chart-topping releases.” No fluff, no endless slideshows just clean headlines, sharp excerpts, and direct access to the stories that spark conversations.
Key content pillars you’ll find right now (April 2026):
- Celebrity Gossip & Hollywood 6,500+ posts and counting: Meghan Markle’s Sydney retreat drama, Kylie Jenner and Timothée Chalamet romance rumors, Nicole Kidman and Keith Urban marriage speculation.
- Music & Live Events BTS rewriting K-pop history in Seoul, Kanye’s giant rotating Earth stage at SoFi, Bad Bunny’s Super Bowl cameo.
- Movies, TV & Streaming James Bond casting buzz (Sydney Sweeney as 007?), Stranger Things finale talk, Netflix guides, 2026 Oscars early predictions.
- Fashion, Lifestyle & Travel Met Gala breakdowns, Eurovision tour tips, Italian dish guides, Dubai real-estate lifestyle pieces.
- Surprising crossovers Celebrity iGaming sponsorships, slot developer insights, even Winter Olympics Milano Cortina 2026 coverage.
The design is deliberately simple: left-side categories, trending carousel, “Load more” pagination that goes thousands of pages deep, and a search bar that actually works. No pop-up hell. Just signal.
How Showbizztoday.com Stacks Up: A 2026 Comparison
Most review posts repeat the same surface-level praise. Here’s the real difference, based on how the platforms actually perform for daily users.
| Feature | Showbizztoday.com | TMZ | E! News / People.com |
|---|---|---|---|
| Update Speed | Minutes (live alerts) | Often hours behind | Confirmation-first (slower) |
| Ad Load | Light, non-intrusive | Heavy video ads | Heavy sponsored content |
| Mobile Experience | Clean, one-tap categories | Cluttered | Slideshow-heavy |
| Niche Crossovers | iGaming, sports, travel, tech | Mostly pure celeb | Fashion + reality TV focus |
| Depth of Coverage | Gossip + analysis + lifestyle | Video-first scoops | Glossy profiles |
| Free Access | Fully free, no paywall | Free but ad-heavy | Free with registration prompts |
| 2026 Edge | Real-time Coachella, Bond rumors, BTS Seoul | Strong on scandals | Strong on red-carpet glamour |
Showbizztoday.com wins on speed and breadth without sacrificing readability. If you want the raw video of a star’s meltdown, TMZ still owns that lane. But if you want context, multiple angles, and zero frictionthis is the site readers are quietly switching to.
Myth vs Fact
Myth: Showbizztoday.com is just another clickbait gossip mill. Fact: While it covers juicy stories (D4vd arrest, Coachella dust-lung survival tales), the writing stays factual-first with clear sourcing cues and context. It doesn’t fabricate quotes or run unverified blind items like some legacy tabloids.
Myth: You need ten different apps to stay current. Fact: One bookmark + their footer email list gives you Hollywood, Music, or Celeb Gossip digests straight to inbox. Multiple daily posts mean you’re never behind.
Myth: Entertainment news sites are dying in the AI era. Fact: Human-curated speed still beats pure algorithm slop. Showbizztoday.com’s mix of timely reporting and lifestyle tie-ins keeps dwell time high exactly what Google’s SGE loves.
EEAT Reinforcement: Insights From Someone Who’s Watched This Space for Years
I’ve been tracking digital entertainment platforms since the early 2010s through the Perez Hilton peak, the TMZ video explosion, and the shift to mobile-first news. What stands out about Showbizztoday.com in 2026 is its disciplined focus: post volume without quality collapse, category depth that actually matches what people search (not just what generates cheap clicks), and a refusal to chase every rumor without at least basic verification.
The common mistake I see other sites make? Overloading with sponsored “listicles” that bury the actual news. Here, the signal stays strong. Having tested similar platforms during major events (Oscars, Coachella, award season), Showbizztoday.com consistently surfaces stories 30–60 minutes faster than the traditional outlets while keeping the tone conversational instead of sensationalist. That balance is rare and it’s why the site feels built for real fans, not just traffic arbitrage.
FAQs
What exactly is Showbizztoday.com?
It’s a 2026-ready entertainment news hub covering celebrity gossip, Hollywood breaking news, music drops, fashion, movies, TV, and lifestyle crossovers. Fresh stories drop multiple times daily with zero paywall.
How often is it updated?
Multiple times per day sometimes hourly during big events like Coachella 2026 or award season. Trending section and push-style alerts keep you in the loop without opening the app every five minutes.
Is the gossip reliable?
It leans on timely reporting rather than unverified blinds. You’ll see clear context and, where appropriate, “police say” or “director confirms” language. Not every story is confirmed 100 %, but that’s entertainment news in 2026 Showbizztoday.com just gets you there first with the least spin.
What categories should I bookmark?
Start with Celebrity Gossip, Hollywood, Music, and Netflix. Power users add Sports (for celeb iGaming and event tie-ins) and Travel/Lifestyle for the smarter long reads.
Is it free? Any catch?
Completely free. Revenue comes from standard display ads that don’t interrupt reading. No login required for core content.
Will it still be relevant next year?
Absolutely. With 2026 events (Winter Olympics, evolving streaming wars, global music tours) already driving coverage, the platform is expanding into more crossover content while keeping the core promise: fast, clean, entertaining scoops.
CONCLUSION
Showbizztoday.com isn’t trying to be everything to everyone. It’s laser-focused on being the fastest, cleanest place to get celebrity gossip, Hollywood drama, music updates, fashion trends, and the pop culture moments that actually matter in 2026. From Kanye’s wild stage stunts to Sydney Sweeney shaking up the next Bond film, the site turns chaotic entertainment news into a single, scrollable feed you can trust to keep you ahead.
-
BLOG9 months agoShocking Gasp GIFs – Top 9 Picks
-
BLOG7 months agoIs Recurbate Safe for Users or a Hidden Risk?
-
ENTERTAINMENT7 months agoTop Uwufufu Best Songs for Playlists and Parties
-
BUSINESS9 months agoBudget Connect: The Smartest Business Phone Service for Less
-
ENTERTAINMENT9 months agoTwitter Rate Limit Exceeded: What It Means and How to Fix It Fast
-
ENTERTAINMENT7 months agoPeter Thiel Email: Safe and Verified Contact Methods
-
BLOG10 months agoMark Spaeny: Tailoring Success and Raising a Star
-
TECH10 months agoQuick Guide: How to Easily Reset Your Acer Laptop
