No puedo eliminar en tmux

1

He buscado por todas partes y lo más cercano que pude encontrar a mi problema es este:

enlace

Estoy ejecutando OSX y estoy usando iTerm2.

Cuando entro en una sesión de tmux, mi clave de borrado no funciona. También trato de usar Ctrl + H y Ctrl +, que no están haciendo nada por mí.

En las preferencias de iTerm- > teclas, he eliminado el envío a ^ H. En las claves de preferencias - > perfiles- > también tengo la casilla marcada, Eliminar clave enviar ^ H.

Vim puede eliminar en tmux pero desde la línea de comandos no puedo.

.tmux.conf

# Set default term
set -g default-terminal "xterm"

# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix

# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf

# Start number at 1
set -g base-index 1

# UTF-8
set-option -g status-utf8 on

# supposedly fixes pausing in vim
set -s escape-time 1

# set default terminal
set -g default-terminal "xterm-color256"

# Vi copypaste mode
set-window-option -g mode-keys vi
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
bind p paste-buffer

unbind %
unbind '"'
unbind [
bind | split-window -h
bind - split-window -v
bind ^C-s copy-mode
set-option -g default-shell /bin/zsh
setw -g history-limit 10000

#quick pane cycling
unbind ^A
bind ^A select-pane -t :.+

# Clear pane
bind C-l send-keys -R \; clear-history

# add airline to tmux status bar
if shell "test -f ~/.tmuxlinesnapshot" "source ~/.tmuxlinesnapshot"

Cualquier ayuda sería muy apreciada!

    
pregunta Nick Rucci 11.03.2016 - 18:12

1 respuesta

0

Tmux usa ^? para eliminar. stty no estaba enviando ^? .

Cambié eso usando stty erase '^?' y luego cambié mis preferencias en iTerm2 para eliminar para enviar ^?

enlace

    
respondido por el Nick Rucci 17.03.2016 - 16:14

Lea otras preguntas en las etiquetas