Skip to content

Instantly share code, notes, and snippets.

@saamalik
Created June 2, 2013 00:58
Show Gist options
  • Save saamalik/5692227 to your computer and use it in GitHub Desktop.
Save saamalik/5692227 to your computer and use it in GitHub Desktop.
Tmux lost server crash when sending mouse cursor escape sequence
server started, pid 3241
socket path /tmp/tmux-1000/default
new client 7
loading /home/saamalik/.tmux.conf
/home/saamalik/.tmux.conf: # Our .tmux.conf file
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Setting the prefix from C-b to C-a
/home/saamalik/.tmux.conf: set -g prefix C-a
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Free the original Ctrl-b prefix keybinding
/home/saamalik/.tmux.conf: unbind C-b
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: #setting the delay between prefix and command
/home/saamalik/.tmux.conf: set -s escape-time 4
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Rest the cursor back to input mode
/home/saamalik/.tmux.conf: # NOT SET
/home/saamalik/.tmux.conf: set -g terminal-overrides "88col*:colors=88,*256col*:colors=256,xterm*:XT"
/home/saamalik/.tmux.conf: # set -g terminal-overrides "88col*:colors=88,*256col*:colors=256,xterm*:XT"
/home/saamalik/.tmux.conf: # set -g terminal-overrides "*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E[%p1%d q:Csr=\E[2 q,screen*:XT"
/home/saamalik/.tmux.conf: # set -g terminal-overrides "*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E[%p1%d q:Csr=\E[2 q,screen*:XT"
/home/saamalik/.tmux.conf: # setw -g terminal-overrides "*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E[1 q:Csr=\E[5 q,screen*:XT:Cs=\E[6 q:Csr=\E[3 q"
/home/saamalik/.tmux.conf: # set -g terminal-overrides "*88col*:colors=88,*256col*:colors=256,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E[1 q:Csr=\E[5 q,screen*:XT:Cs=\E[6 q:Csr=\E[3 q"
/home/saamalik/.tmux.conf: # set -g terminal-overrides "*88col*:colors=0,*256col*:colors=0,xterm*:XT:Ms=\E]52;%p1%s;%p2%s\007:Cc=\E]12;%p1%s\007:Cr=\E]112\007:Cs=\E[4 q:Csr=\E[4 q,screen*:XT:Cs=\E[2 q:Csr=\E[6 q"
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # set history limit
/home/saamalik/.tmux.conf: set -g history-limit 5
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Ensure that we can send Ctrl-A to other apps
/home/saamalik/.tmux.conf: bind a send-prefix
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Set the base index for windows to 1 instead of 0
/home/saamalik/.tmux.conf: set -g base-index 1
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Set the base index for panes to 1 instead of 0
/home/saamalik/.tmux.conf: setw -g pane-base-index 1
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Reload the file with Prefix r
/home/saamalik/.tmux.conf: bind r source-file ~/.tmux.conf \; display "Reloaded!"
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # splitting panes
/home/saamalik/.tmux.conf: bind | split-window -h
/home/saamalik/.tmux.conf: bind - split-window -v
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # moving between panes
/home/saamalik/.tmux.conf: bind h select-pane -L
/home/saamalik/.tmux.conf: bind j select-pane -D
/home/saamalik/.tmux.conf: bind k select-pane -U
/home/saamalik/.tmux.conf: bind l select-pane -R
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Quick pane selection
/home/saamalik/.tmux.conf: bind -r C-h select-window -t :-
/home/saamalik/.tmux.conf: bind -r C-l select-window -t :+
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Pane resizing
/home/saamalik/.tmux.conf: bind -r H resize-pane -L 5
/home/saamalik/.tmux.conf: bind -r J resize-pane -D 5
/home/saamalik/.tmux.conf: bind -r K resize-pane -U 5
/home/saamalik/.tmux.conf: bind -r L resize-pane -R 5
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # mouse support - set to on if you want to use the mouse
/home/saamalik/.tmux.conf: setw -g mode-mouse on
/home/saamalik/.tmux.conf: set -g mouse-select-pane on
/home/saamalik/.tmux.conf: set -g mouse-resize-pane on
/home/saamalik/.tmux.conf: set -g mouse-select-window off
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Set the default terminal mode to 256color mode
/home/saamalik/.tmux.conf: setw -g xterm-keys on
/home/saamalik/.tmux.conf: set -g default-terminal "screen-256color"
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # enable activity alerts
/home/saamalik/.tmux.conf: setw -g monitor-activity on
/home/saamalik/.tmux.conf: set -g visual-activity on
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Constrain smaller viewport ONLY if both clients actiely looking
/home/saamalik/.tmux.conf: setw -g aggressive-resize on
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # set the status line's colors
/home/saamalik/.tmux.conf: set -g status-fg white
/home/saamalik/.tmux.conf: set -g status-bg black
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # set the color of the window list
/home/saamalik/.tmux.conf: setw -g window-status-fg cyan
/home/saamalik/.tmux.conf: setw -g window-status-bg default
/home/saamalik/.tmux.conf: setw -g window-status-attr dim
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # set colors for the active window
/home/saamalik/.tmux.conf: setw -g window-status-current-fg white
/home/saamalik/.tmux.conf: setw -g window-status-current-bg red
/home/saamalik/.tmux.conf: setw -g window-status-current-attr bright
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # pane colors
/home/saamalik/.tmux.conf: set -g pane-border-fg green
/home/saamalik/.tmux.conf: set -g pane-border-bg black
/home/saamalik/.tmux.conf: set -g pane-active-border-fg white
/home/saamalik/.tmux.conf: set -g pane-active-border-bg yellow
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Command / message line
/home/saamalik/.tmux.conf: set -g message-fg white
/home/saamalik/.tmux.conf: set -g message-bg black
/home/saamalik/.tmux.conf: set -g message-attr bright
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Status line left side
/home/saamalik/.tmux.conf: set -g status-left-length 40
/home/saamalik/.tmux.conf: set -g status-left "#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P"
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Enable UTF-8 status
/home/saamalik/.tmux.conf: set -g status-utf8 on
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Status line right side
/home/saamalik/.tmux.conf: # 15% | 28 Nov 18:15
/home/saamalik/.tmux.conf: set -g status-right "#(~/battery Discharging) | #[fg=cyan]%b %d %R"
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Update the status bar every sixty seconds
/home/saamalik/.tmux.conf: set -g status-interval 60
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Center the window list
/home/saamalik/.tmux.conf: set -g status-justify centre
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # enable vi keys.
/home/saamalik/.tmux.conf: setw -g mode-keys vi
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: unbind [
/home/saamalik/.tmux.conf: bind Escape copy-mode
/home/saamalik/.tmux.conf: unbind p
/home/saamalik/.tmux.conf: bind p paste-buffer
/home/saamalik/.tmux.conf: bind -t vi-copy v begin-selection
/home/saamalik/.tmux.conf: bind -t vi-copy y copy-selection
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # shortcut for synchronize-panes toggle
/home/saamalik/.tmux.conf: bind C-s set-window-option synchronize-panes
/home/saamalik/.tmux.conf:
/home/saamalik/.tmux.conf: # Log output to a text file on demand
/home/saamalik/.tmux.conf: bind P pipe-pane -o "cat >>~/#W.log" \; display "Toggled logging to ~/#W.log"
cmdq 0x7f024424b170: set-option -g prefix C-a (client -1)
cmdq 0x7f024424b170: unbind-key C-b (client -1)
cmdq 0x7f024424b170: set-option -s escape-time 4 (client -1)
cmdq 0x7f024424b170: set-option -g terminal-overrides 88col*:colors=88,*256col*:colors=256,xterm*:XT (client -1)
cmdq 0x7f024424b170: set-option -g history-limit 5 (client -1)
cmdq 0x7f024424b170: bind-key a send-prefix (client -1)
cmdq 0x7f024424b170: set-option -g base-index 1 (client -1)
cmdq 0x7f024424b170: set-window-option -g pane-base-index 1 (client -1)
cmdq 0x7f024424b170: bind-key r source-file /home/saamalik/.tmux.conf ; display Reloaded! (client -1)
cmdq 0x7f024424b170: bind-key | split-window -h (client -1)
cmdq 0x7f024424b170: bind-key - split-window -v (client -1)
cmdq 0x7f024424b170: bind-key h select-pane -L (client -1)
cmdq 0x7f024424b170: bind-key j select-pane -D (client -1)
cmdq 0x7f024424b170: bind-key k select-pane -U (client -1)
cmdq 0x7f024424b170: bind-key l select-pane -R (client -1)
cmdq 0x7f024424b170: bind-key -r C-h select-window -t :- (client -1)
cmdq 0x7f024424b170: bind-key -r C-l select-window -t :+ (client -1)
cmdq 0x7f024424b170: bind-key -r H resize-pane -L 5 (client -1)
cmdq 0x7f024424b170: bind-key -r J resize-pane -D 5 (client -1)
cmdq 0x7f024424b170: bind-key -r K resize-pane -U 5 (client -1)
cmdq 0x7f024424b170: bind-key -r L resize-pane -R 5 (client -1)
cmdq 0x7f024424b170: set-window-option -g mode-mouse on (client -1)
cmdq 0x7f024424b170: set-option -g mouse-select-pane on (client -1)
cmdq 0x7f024424b170: set-option -g mouse-resize-pane on (client -1)
cmdq 0x7f024424b170: set-option -g mouse-select-window off (client -1)
cmdq 0x7f024424b170: set-window-option -g xterm-keys on (client -1)
cmdq 0x7f024424b170: set-option -g default-terminal screen-256color (client -1)
cmdq 0x7f024424b170: set-window-option -g monitor-activity on (client -1)
cmdq 0x7f024424b170: set-option -g visual-activity on (client -1)
cmdq 0x7f024424b170: set-window-option -g aggressive-resize on (client -1)
cmdq 0x7f024424b170: set-option -g status-fg white (client -1)
cmdq 0x7f024424b170: set-option -g status-bg black (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-fg cyan (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-bg default (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-attr dim (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-current-fg white (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-current-bg red (client -1)
cmdq 0x7f024424b170: set-window-option -g window-status-current-attr bright (client -1)
cmdq 0x7f024424b170: set-option -g pane-border-fg green (client -1)
cmdq 0x7f024424b170: set-option -g pane-border-bg black (client -1)
cmdq 0x7f024424b170: set-option -g pane-active-border-fg white (client -1)
cmdq 0x7f024424b170: set-option -g pane-active-border-bg yellow (client -1)
cmdq 0x7f024424b170: set-option -g message-fg white (client -1)
cmdq 0x7f024424b170: set-option -g message-bg black (client -1)
cmdq 0x7f024424b170: set-option -g message-attr bright (client -1)
cmdq 0x7f024424b170: set-option -g status-left-length 40 (client -1)
cmdq 0x7f024424b170: set-option -g status-left "#[fg=green]Session: #S #[fg=yellow]#I #[fg=cyan]#P" (client -1)
cmdq 0x7f024424b170: set-option -g status-utf8 on (client -1)
cmdq 0x7f024424b170: set-option -g status-right "#(~/battery Discharging) | #[fg=cyan]%b %d %R" (client -1)
cmdq 0x7f024424b170: set-option -g status-interval 60 (client -1)
cmdq 0x7f024424b170: set-option -g status-justify centre (client -1)
cmdq 0x7f024424b170: set-window-option -g mode-keys vi (client -1)
cmdq 0x7f024424b170: unbind-key [ (client -1)
cmdq 0x7f024424b170: bind-key Escape copy-mode (client -1)
cmdq 0x7f024424b170: unbind-key p (client -1)
cmdq 0x7f024424b170: bind-key p paste-buffer (client -1)
cmdq 0x7f024424b170: bind-key -t vi-copy v begin-selection (client -1)
cmdq 0x7f024424b170: bind-key -t vi-copy y copy-selection (client -1)
cmdq 0x7f024424b170: bind-key C-s set-window-option synchronize-panes (client -1)
cmdq 0x7f024424b170: bind-key P pipe-pane -o "cat >>~/#W.log" ; display "Toggled logging to ~/#W.log" (client -1)
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 14 from client 7
got 6 from client 7
got 0 from client 7
cmdq 0x7f024424ad70: new-session (client 7)
new term: xterm-256color
xterm-256color override: colors 256
xterm-256color override: XT
new key Oo: 0x1021 (KP/)
new key Oj: 0x1022 (KP*)
new key Om: 0x1023 (KP-)
new key Ow: 0x1024 (KP7)
new key Ox: 0x1025 (KP8)
new key Oy: 0x1026 (KP9)
new key Ok: 0x1027 (KP+)
new key Ot: 0x1028 (KP4)
new key Ou: 0x1029 (KP5)
new key Ov: 0x102a (KP6)
new key Oq: 0x102b (KP1)
new key Or: 0x102c (KP2)
new key Os: 0x102d (KP3)
new key OM: 0x102e (KPEnter)
new key Op: 0x102f (KP0)
new key On: 0x1030 (KP.)
new key OA: 0x101d (Up)
new key OB: 0x101e (Down)
new key OC: 0x1020 (Right)
new key OD: 0x101f (Left)
new key : 0x101d (Up)
new key : 0x101e (Down)
new key : 0x1020 (Right)
new key : 0x101f (Left)
new key OH: 0x1018 (Home)
new key OF: 0x1019 (End)
new key : 0x1018 (Home)
new key : 0x1019 (End)
new key Oa: 0x501d (C-Up)
new key Ob: 0x501e (C-Down)
new key Oc: 0x5020 (C-Right)
new key Od: 0x501f (C-Left)
new key : 0x901d (S-Up)
new key : 0x901e (S-Down)
new key : 0x9020 (S-Right)
new key : 0x901f (S-Left)
new key [11^: 0x5002 (C-F1)
new key [12^: 0x5003 (C-F2)
new key [13^: 0x5004 (C-F3)
new key [14^: 0x5005 (C-F4)
new key [15^: 0x5006 (C-F5)
new key [17^: 0x5007 (C-F6)
new key [18^: 0x5008 (C-F7)
new key [19^: 0x5009 (C-F8)
new key [20^: 0x500a (C-F9)
new key [21^: 0x500b (C-F10)
new key [23^: 0x500c (C-F11)
new key [24^: 0x500d (C-F12)
new key [25^: 0x500e (C-F13)
new key [26^: 0x500f (C-F14)
new key [28^: 0x5010 (C-F15)
new key [29^: 0x5011 (C-F16)
new key [31^: 0x5012 (C-F17)
new key [32^: 0x5013 (C-F18)
new key [33^: 0x5014 (C-F19)
new key [34^: 0x5015 (C-F20)
new key [2^: 0x5016 (C-IC)
new key [3^: 0x5017 (C-DC)
new key [7^: 0x5018 (C-Home)
new key [8^: 0x5019 (C-End)
new key [6^: 0x501a (C-NPage)
new key [5^: 0x501b (C-PPage)
new key [11$: 0x9002 (S-F1)
new key [12$: 0x9003 (S-F2)
new key [13$: 0x9004 (S-F3)
new key [14$: 0x9005 (S-F4)
new key [15$: 0x9006 (S-F5)
new key [17$: 0x9007 (S-F6)
new key [18$: 0x9008 (S-F7)
new key [19$: 0x9009 (S-F8)
new key [20$: 0x900a (S-F9)
new key [21$: 0x900b (S-F10)
new key [23$: 0x900c (S-F11)
new key [24$: 0x900d (S-F12)
new key [25$: 0x900e (S-F13)
new key [26$: 0x900f (S-F14)
new key [28$: 0x9010 (S-F15)
new key [29$: 0x9011 (S-F16)
new key [31$: 0x9012 (S-F17)
new key [32$: 0x9013 (S-F18)
new key [33$: 0x9014 (S-F19)
new key [34$: 0x9015 (S-F20)
new key [2$: 0x9016 (S-IC)
new key [3$: 0x9017 (S-DC)
new key [7$: 0x9018 (S-Home)
new key [8$: 0x9019 (S-End)
new key [6$: 0x901a (S-NPage)
new key [5$: 0x901b (S-PPage)
new key [11@: 0xd002 (C-S-F1)
new key [12@: 0xd003 (C-S-F2)
new key [13@: 0xd004 (C-S-F3)
new key [14@: 0xd005 (C-S-F4)
new key [15@: 0xd006 (C-S-F5)
new key [17@: 0xd007 (C-S-F6)
new key [18@: 0xd008 (C-S-F7)
new key [19@: 0xd009 (C-S-F8)
new key [20@: 0xd00a (C-S-F9)
new key [21@: 0xd00b (C-S-F10)
new key [23@: 0xd00c (C-S-F11)
new key [24@: 0xd00d (C-S-F12)
new key [25@: 0xd00e (C-S-F13)
new key [26@: 0xd00f (C-S-F14)
new key [28@: 0xd010 (C-S-F15)
new key [29@: 0xd011 (C-S-F16)
new key [31@: 0xd012 (C-S-F17)
new key [32@: 0xd013 (C-S-F18)
new key [33@: 0xd014 (C-S-F19)
new key [34@: 0xd015 (C-S-F20)
new key [2@: 0xd016 (C-S-IC)
new key [3@: 0xd017 (C-S-DC)
new key [7@: 0xd018 (C-S-Home)
new key [8@: 0xd019 (C-S-End)
new key [6@: 0xd01a (C-S-NPage)
new key [5@: 0xd01b (C-S-PPage)
new key : 0x1031 ((null))
new key : 0x1032 ((null))
new key OP: 0x1002 (F1)
new key OQ: 0x1003 (F2)
new key OR: 0x1004 (F3)
new key OS: 0x1005 (F4)
new key [15~: 0x1006 (F5)
new key [17~: 0x1007 (F6)
new key [18~: 0x1008 (F7)
new key [19~: 0x1009 (F8)
new key [20~: 0x100a (F9)
new key [21~: 0x100b (F10)
new key [23~: 0x100c (F11)
new key [24~: 0x100d (F12)
new key : 0x100e (F13)
new key : 0x100f (F14)
new key : 0x1010 (F15)
new key : 0x1011 (F16)
new key [15;2~: 0x1012 (F17)
new key [17;2~: 0x1013 (F18)
new key [18;2~: 0x1014 (F19)
new key [19;2~: 0x1015 (F20)
new key [2~: 0x1016 (IC)
new key [3~: 0x1017 (DC)
replacing key OH: 0x1018 (Home)
replacing key OF: 0x1019 (End)
new key [6~: 0x101a (NPage)
new key [5~: 0x101b (PPage)
new key : 0x101c (BTab)
replacing key OA: 0x101d (Up)
replacing key OB: 0x101e (Down)
replacing key OD: 0x101f (Left)
replacing key OC: 0x1020 (Right)
new key [3;2~: 0x9017 (S-DC)
new key [3;3~: 0x3017 (M-DC)
new key [3;4~: 0xb017 (M-S-DC)
new key [3;5~: 0x5017 (C-DC)
new key [3;6~: 0xd017 (C-S-DC)
new key [3;7~: 0x7017 (C-M-DC)
new key : 0x901e (S-Down)
new key : 0x301e (M-Down)
new key : 0xb01e (M-S-Down)
new key : 0x501e (C-Down)
new key : 0xd01e (C-S-Down)
new key : 0x701e (C-M-Down)
new key : 0x9019 (S-End)
new key : 0x3019 (M-End)
new key : 0xb019 (M-S-End)
new key : 0x5019 (C-End)
new key : 0xd019 (C-S-End)
new key : 0x7019 (C-M-End)
new key : 0x9018 (S-Home)
new key : 0x3018 (M-Home)
new key : 0xb018 (M-S-Home)
new key : 0x5018 (C-Home)
new key : 0xd018 (C-S-Home)
new key : 0x7018 (C-M-Home)
new key [2;2~: 0x9016 (S-IC)
new key [2;3~: 0x3016 (M-IC)
new key [2;4~: 0xb016 (M-S-IC)
new key [2;5~: 0x5016 (C-IC)
new key [2;6~: 0xd016 (C-S-IC)
new key [2;7~: 0x7016 (C-M-IC)
new key : 0x901f (S-Left)
new key : 0x301f (M-Left)
new key : 0xb01f (M-S-Left)
new key : 0x501f (C-Left)
new key : 0xd01f (C-S-Left)
new key : 0x701f (C-M-Left)
new key [6;2~: 0x901a (S-NPage)
new key [6;3~: 0x301a (M-NPage)
new key [6;4~: 0xb01a (M-S-NPage)
new key [6;5~: 0x501a (C-NPage)
new key [6;6~: 0xd01a (C-S-NPage)
new key [6;7~: 0x701a (C-M-NPage)
new key [5;2~: 0x901b (S-PPage)
new key [5;3~: 0x301b (M-PPage)
new key [5;4~: 0xb01b (M-S-PPage)
new key [5;5~: 0x501b (C-PPage)
new key [5;6~: 0xd01b (C-S-PPage)
new key [5;7~: 0x701b (C-M-PPage)
new key : 0x9020 (S-Right)
new key : 0x3020 (M-Right)
new key : 0xb020 (M-S-Right)
new key : 0x5020 (C-Right)
new key : 0xd020 (C-S-Right)
new key : 0x7020 (C-M-Right)
new key : 0x901d (S-Up)
new key : 0x301d (M-Up)
new key : 0xb01d (M-S-Up)
new key : 0x501d (C-Up)
new key : 0xd01d (C-S-Up)
new key : 0x701d (C-M-Up)
spawn: /bin/bash --
session 0 created
writing 8 to client 7
run job 0x7f0244257800: ~/battery Discharging, pid 3243
job write 0x7f0244257800: ~/battery Discharging, pid 3243, output left 0
got 9 from client 7
job error 0x7f0244257800: ~/battery Discharging, pid 3243
job died 0x7f0244257800: ~/battery Discharging, pid 3243
free job 0x7f0244257800: ~/battery Discharging
keys are 2 ([)
partial key [
keys are 7 ([?1;2c)
received service class 1
complete key [?1;2c 0xfff
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '3' csi_enter
input_parse: '2' csi_parameter
input_parse: 'm' csi_parameter
input_csi_dispatch: 'm' "" "32"
input_parse: 's' ground
input_parse: 'a' ground
input_parse: 'a' ground
input_parse: 'm' ground
input_parse: 'a' ground
input_parse: 'l' ground
input_parse: 'i' ground
input_parse: 'k' ground
input_parse: '@' ground
input_parse: 's' ground
input_parse: 'a' ground
input_parse: 'a' ground
input_parse: 'm' ground
input_parse: 'a' ground
input_parse: 'l' ground
input_parse: 'i' ground
input_parse: 'k' ground
input_parse: '-' ground
input_parse: 'u' ground
input_parse: 'b' ground
input_parse: 'u' ground
input_parse: 'n' ground
input_parse: 't' ground
input_parse: 'u' ground
input_parse: ' ' ground
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '3' csi_enter
input_parse: '3' csi_parameter
input_parse: 'm' csi_parameter
input_csi_dispatch: 'm' "" "33"
input_parse: '~' ground
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '0' csi_enter
input_parse: 'm' csi_parameter
input_csi_dispatch: 'm' "" "0"
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '$' ground
input_parse: ' ' ground
keys are 1 ()
complete key  0x12
writing key 0x12
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '2' csi_enter
input_parse: '0' csi_parameter
input_parse: '@' csi_parameter
input_csi_dispatch: '@' "" "20"
input_parse: '(' ground
input_parse: 'r' ground
input_parse: 'e' ground
input_parse: 'v' ground
input_parse: 'e' ground
input_parse: 'r' ground
input_parse: 's' ground
input_parse: 'e' ground
input_parse: '-' ground
input_parse: 'i' ground
input_parse: '-' ground
input_parse: 's' ground
input_parse: 'e' ground
input_parse: 'a' ground
input_parse: 'r' ground
input_parse: 'c' ground
input_parse: 'h' ground
input_parse: ')' ground
input_parse: '`' ground
input_parse: ''' ground
input_parse: ':' ground
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: 'C' csi_enter
input_csi_dispatch: 'C' "" ""
keys are 1 (e)
complete key e 0x65
writing key 0x65
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: 'e' ground
input_parse: ''' ground
input_parse: ':' ground
input_parse: ' ' ground
input_parse: 't' ground
input_parse: 'm' ground
input_parse: 'u' ground
input_parse: 'x' ground
input_parse: ' ' ground
input_parse: '-' ground
input_parse: 'v' ground
input_parse: 'v' ground
input_parse: ' ' ground
input_parse: 'n' ground
input_parse: 'e' ground
input_parse: 'w' ground
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
keys are 1 (c)
complete key c 0x63
writing key 0x63
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: 'c' ground
input_parse: ''' ground
input_parse: ':' ground
input_parse: ' ' ground
input_parse: 'e' ground
input_parse: 'c' ground
input_parse: 'h' ground
input_parse: 'o' ground
input_parse: ' ' ground
input_parse: '-' ground
input_parse: 'n' ground
input_parse: 'e' ground
input_parse: ' ' ground
input_parse: '"' ground
input_parse: '\' ground
input_parse: 'e' ground
input_parse: '[' ground
input_parse: '3' ground
input_parse: ' ' ground
input_parse: 'q' ground
input_parse: '"' ground
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
keys are 1 (h)
complete key h 0x68
writing key 0x68
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_c0_dispatch: '
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '1' csi_enter
input_parse: '@' csi_parameter
input_csi_dispatch: '@' "" "1"
input_parse: 'h' ground
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: 'C' csi_enter
input_csi_dispatch: 'C' "" ""
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: 'C' csi_enter
input_csi_dispatch: 'C' "" ""
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: 'C' csi_enter
input_csi_dispatch: 'C' "" ""
keys are 3 ()
complete key  0x1018
writing key 0x1018
found key 0x1018: "[1~"
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '2' csi_enter
input_parse: '3' csi_parameter
input_parse: 'P' csi_parameter
input_csi_dispatch: 'P' "" "23"
input_parse: '$' ground
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: 'C' csi_enter
input_csi_dispatch: 'C' "" ""
keys are 1 (
)
complete key
0xd
writing key 0xd
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '
' ground
input_c0_dispatch: '
input_parse: '' ground
input_parse: '[' esc_enter
input_parse: '3' csi_enter
input_parse: ' ' csi_parameter
input_parse: 'q' csi_intermediate
input_csi_dispatch: 'q' " " "3"
@maotora
Copy link

maotora commented Jul 21, 2018

I get errors this long, my clipboard crashes! 🤣 🤣

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment