# How to clear TMUX scrollback buffer with zsh keybindings

```bash
tmux -V &> /dev/null
if [[ $? -eq 0 ]]; then
	function clear_tmux_scrollback_buffer() {
		tmux clear-history
	}
	zle -N clear_tmux_scrollback_buffer
	bindkey "^[^L" clear_tmux_scrollback_buffer
fi
```

[https://github.com/fuadop/zsh-config/commit/d07b24955acfa99be5a50f766e493b0ccc27c195](https://github.com/fuadop/zsh-config/commit/d07b24955acfa99be5a50f766e493b0ccc27c195)
