C'è un modo per cambiare le scorciatoie nel comandante di mezzanotte?


Risposte:


22

Okiedokie ... vediamo

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

Ottava sezione ... è possibile? Guardiamo

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/

Ora modifica le mappature dei tasti come preferisci e salva ~ / .config / mc / mc.keymap al termine

Per maggiori informazioni, leggi la sezione Chiavi ( man mc ) e le tre sezioni successive.


$ cat /home/jaroslav/bin/man-sections 
#!/bin/sh
MANPAGER=cat man $@ | grep -E '^^[[1m[A-Z]{3,}'

Grazie. Che cos'è la sezione uomo?
woky

@woky è una regex pipe per l'output di troff (formato pagina man)
Ярослав Рахматуллин

1

In Ubuntu le mappe dei tasti sono in /etc/mc/mc.keymap

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.