Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Launchpad
Be early to the next big token project
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
After upgrading to Claude Code v2.1.89, scrolling up in the terminal chat causes the conversation to disappear, and the chat history is directly "lost."
It's not that the model compresses the context; it's the new rendering engine that changed—virtualized scrolling, only rendering the current viewport content, so the history messages "disappear" from the interface.
The same issue occurs in iTerm2 and the built-in terminal; the problem lies at the Claude Code layer.
The solution is simple: wrap it with tmux.
tmux has its own independent scrollback buffer, unaffected by application-level rendering. Just three configuration lines:
set -g history-limit 50000
set -g mouse on
set -sg escape-time 10
With 50,000 lines of history, you can scroll directly with the mouse wheel, and lowering the ESC delay doesn't affect interaction.
I added a shell function: typing 'cc' automatically starts tmux + Claude Code, and reconnects to an existing session.
Used it for a night, and I never lost history again.