I really like the shortcut to delete the last word, and have been using this little keymap with neovim for some time now (with Windows Primarily)
vim.keymap.set('i', '<C-H>', '<C-W>', { noremap = true, silent = false })
I recently switched to the OG Linux (PopOS), didn’t notice this at first but now that I’ve started to integrate it with my workflow, I can’t seem to get this to work on Tmux, also tested it on zshell and bash and it still didn’t work 🙁
I’ve tried adding the following unbind-key
statements to the .tmux.conf
file, but still no luck
unbind-key -T copy-mode C-w unbind-key -T copy-mode-vi w unbind-key -T copy-mode-vi W unbind-key -T prefix w
bind-key h select-pane -L bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R
I also have vim-tmux-navigator plugins which allows us to navigate between neovim and tmux using the <Ctrl-h,j,k,l> keys and is pretty handy.
I think that it is something in my tmux config that is interfering with the keys not working but am unable to figure it out. this is my config
I would really appreciate if you could give me an easy to follow solution as a beginner in linux.
I think that it is something in my tmux config that is interfering with the keys not working but am unable to figure it out. this is my config
I would really appreciate if you could tell me a solution to this.