Existe-t-il un moyen de modifier les raccourcis dans le commandant de minuit?

14

Je n'ai rien trouvé sur le sujet sur Internet. La seule ligne .mc/iniqui ressemble à la question est, keymap=mc.keymapmais je ne sais pas quoi en faire.

rouler
la source

Réponses:

22

Okiedokie ... laisse voir

$ man-section mc | head -n20
mc (1)
--
 Name
 Usage
 Description
 Options
 Overview
 Mouse support
 Keys
 Redefine hotkey bindings

8ème section ... est-ce possible? Regardons

man mc (scroll, scroll, scroll)

Redefine hotkey bindings
    Hotkey bindings may be read from external file (keymap-file).  A keymap-
    file is searched on the following algorithm  (to the first one found):

     1) command line option -K <keymap> or --keymap=<keymap>
     2) Environment variable MC_KEYMAP
     3) Parameter keymap in section [Midnight-Commander] of config file.
     4) File ~/.config/mc/mc.keymap
     5) File /etc/mc/mc.keymap
     6) File /usr/share/mc/mc.keymap

Bingo!

cp /etc/mc/mc.keymap ~/.config/mc/

Modifiez maintenant les mappages de touches comme vous le souhaitez et enregistrez ~ / .config / mc / mc.keymap lorsque vous avez terminé

Pour plus d'informations, lisez la section Clés ( man mc ) et les trois sections qui suivent.


$ cat /home/jaroslav/bin/man-sections 
#!/bin/sh
MANPAGER=cat man $@ | grep -E '^^[[1m[A-Z]{3,}'
Ярослав Рахматуллин
la source
Merci. Qu'est-ce que la section homme?
woky
@woky c'est un tube d'expression régulière pour la sortie de troff (format de page de manuel)
Ярослав Рахматуллин
1

Dans Ubuntu, les keymaps se trouvent dans /etc/mc/mc.keymap

weberjn
la source