gpt4 book ai didi

key-bindings - Tmux 使用 Ctrl-b 和 Ctrl-f 向上/向下滚动页面

转载 作者:行者123 更新时间:2023-12-03 23:32:26 24 4
gpt4 key购买 nike

进入滚动模式后,如何使用 Ctrl+b 和 Ctrl+f 上下滚动页面?

这些命令当前在字符之间来回移动。

.tmux.conf

set -g default-terminal "screen-256color"
setw -g xterm-keys on
set -g status-bg black
set -g status-fg white
set -g history-limit 999999999

bind C-d detach
bind r source-file ~/.tmux.conf

set -g prefix C-z

if-shell 'test "$(tmux -V)" = "tmux 1.5"' 'set -g prefix C-a,C-z'
if-shell 'test "$(tmux -V)" = "tmux 1.6"' 'set -g prefix2 C-a'
if-shell 'test "$(tmux -V)" = "tmux 1.7"' 'set -g prefix2 C-a'

unbind C-b
bind C-a send-keys C-a
bind C-z send-keys C-z

# These are available in iTerm by default, but need to be explicitly configured
# in Terminal.app.
# S-Up: ^[[1;2A
# S-Down: ^[[1;2B
# S-Right: ^[[1;2C
# S-Left: ^[[1;2D
bind -n S-Up copy-mode
bind -n S-Down command-prompt
bind -n S-Right next-window
bind -n S-Left previous-window

#set -g base-index 1

set-window-option -g mode-keys vi

最佳答案

将下面添加到 .tmux.conf , 你可以像在 vim 中一样使用 hjkl , Ctrl+D/Ctrl+U(PageDown/Up) 在 tmux 滚动模式下。更重要的是,您可以使用 /寻找。

setw -g mode-keys vi
set -g status-keys vi
bind-key -t vi-edit Up history-up
bind-key -t vi-edit Down history-down

希望对你有帮助 :)

关于key-bindings - Tmux 使用 Ctrl-b 和 Ctrl-f 向上/向下滚动页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14300684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com