web-dev-qa-db-ja.com

fehキーマッピング問題の構成

矢印キーとh、j、k、lで画像を左/下/上/右にスクロールするようにfehを構成したいと思います。

私は~/.config/feh/keysに以下を入れました:

zoom_in 
zoom_out 
scroll_right 
scroll_left 
scroll_up 
scroll_down 
zoom_in plus
zoom_out minus
scroll_up Up j
scroll_down Down k
scroll_left Left h
scroll_right Right l 

notの機能は、矢印キーを使用して左右にスクロールすることです。上下および他のすべてが機能します。何をすべきか?

fehバージョンは次のとおりです。

feh version 2.18
Compile-time switches: curl xinerama 
2
wolf-revo-cats

キーを別のアクションに使用する前に、キーにバインドされているアクションのキーバインドを解除する必要があります。

(カーソル右)と  (カーソル左)はアクションにバインドされていますnext_imgおよびprev_imgそれぞれ。

したがって、以下を使用します。

# unsetting the keys bound to next/previous image by stating it without assigning any keys:
next_img
prev_img
# further unsetting:
zoom_in 
zoom_out 
scroll_right 
scroll_left 
scroll_up 
scroll_down 
# custom key mapping:
zoom_in plus
zoom_out minus
scroll_up Up j
scroll_down Down k
scroll_left Left h
scroll_right Right l
# assigning new keys for showing next/previous image
next_img space 
prev_img BackSpace

fehは、スクロールには矢印キーを使用し、次/前の画像にはスペース/バックスペースを使用します。

3
wolf-revo-cats