(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| # Ctrl-b is a bad prefix key, use Ctrl-a instead | |
| set-option -g prefix C-a | |
| unbind-key C-b | |
| # Also assign Ctrl-a to send the prefix to a remote session | |
| bind-key C-a send-prefix | |
| # Windows should be numbered from 1 like panes | |
| set -g base-index 1 |
| var myConfObj = { | |
| iframeMouseOver : false | |
| } | |
| window.addEventListener('blur',function(){ | |
| if(myConfObj.iframeMouseOver){ | |
| console.log('Wow! Iframe Click!'); | |
| } | |
| }); | |
| document.getElementById('YOUR_CONTAINER_ID').addEventListener('mouseover',function(){ |