如何防止 tmux 在搜索时回绕?

如何防止 tmux 在搜索时回绕?

当我在 tmux 窗格中处于编辑模式并进行搜索时,一旦到达末尾,它就会返回到开头。有什么设置可以防止这种情况发生吗?

答案1

tmux现在有一个窗口选项wrap-search

wrap-search [on | off]

如果设置此选项,搜索将环绕窗格内容的末尾。默认开启。

当这个问题被问到时,tmux没有合适的设置,但我准备好了tmux基于1.6的补丁

答案2

也许值得指出的是,现在(肯定是从 tmux 1.9a 开始,因为这就是我正在使用的)可以通过设置使用wrap-search

$ man tmux | grep -B1 -A1 'will wrap'
         wrap-search [on | off]
                 If this option is set, searches will wrap around the end
                 of the pane contents.  The default is on.

相关内容