Gnuplot wheel 解除绑定
Gnuplot wheel unbind
我有一些中等大小的图表,需要 1-2 秒。
我正在使用 x11
终端
有时,我不小心在绘图上滑动,这会导致绘图被重新绘制几次(这会挂起我的 window 几秒钟),如 show bind
命令所示:
gnuplot> show bind
<wheel-up> scroll up (in +Y direction)
<wheel-down> scroll down
<shift-wheel-up> scroll left (in -X direction)
<shift-wheel-down> scroll right
能解绑吗?
我试过 bind '<wheel-up>' ""
没有成功
您可以使用
禁用所有鼠标操作
unset mouse
然后启用它,如果你想的话,
set mouse
我有一些中等大小的图表,需要 1-2 秒。
我正在使用 x11
终端
有时,我不小心在绘图上滑动,这会导致绘图被重新绘制几次(这会挂起我的 window 几秒钟),如 show bind
命令所示:
gnuplot> show bind
<wheel-up> scroll up (in +Y direction)
<wheel-down> scroll down
<shift-wheel-up> scroll left (in -X direction)
<shift-wheel-down> scroll right
能解绑吗?
我试过 bind '<wheel-up>' ""
没有成功
您可以使用
禁用所有鼠标操作unset mouse
然后启用它,如果你想的话,
set mouse