vim.g.VimuxUseNearest = 0 vim.gVimuxResetSequence = "" -- Prompt for a command to run vim.keymap.set('', 'vp', 'VimuxPromptCommand', {}) -- Run last command executed by VimuxRunCommand vim.keymap.set('', 'vl', 'VimuxRunLastCommand', {}) -- Inspect runner pane vim.keymap.set('', 'vi', 'VimuxInspectRunner', {}) -- Close vim tmux runner opened by VimuxRunCommand vim.keymap.set('', 'vq', 'VimuxCloseRunner', {}) -- Interrupt any command running in the runner pane vim.keymap.set('', 'vx', 'VimuxPromptInterruptRunner', {}) -- Zoom the runner pane (use z to restore runner pane) vim.keymap.set('', 'vz', 'call VimuxZoomRunner()', {})