« Mutt » : différence entre les versions
(Page créée avec « Mutt est un client mail en Ncurses. Pour avoir des raccourcis de déplacement alla vim, vous pouvez ajouter dans votre .muttrc (et éventuellement adapter) les lignes suivant... ») |
(Ajout de la catégorie "Logiciels") |
||
(6 versions intermédiaires par 6 utilisateurs non affichées) | |||
Ligne 1 : | Ligne 1 : | ||
Mutt est un client mail en Ncurses. Pour avoir des raccourcis de déplacement | '''[http://fr.wikipedia.org/wiki/Mutt Mutt]''' est un client mail écrit en [http://fr.wikipedia.org/wiki/Ncurses Ncurses]. Pour avoir des raccourcis de déplacement « à la vim », vous pouvez ajouter dans votre {{c|~/.muttrc}} (et éventuellement adapter) les lignes suivantes : | ||
< | <source lang="text"> | ||
################### | ################### | ||
## bépo | ## bépo | ||
bind generic,index | bind browser,attach t next-entry | ||
bind generic,index | bind browser,attach s previous-entry | ||
bind index t next-undeleted | |||
bind index s previous-undeleted | |||
bind generic,index t next-entry | |||
bind generic,index s previous-entry | |||
bind browser T next-entry | |||
bind browser S previous-entry | |||
bind pager t next-line | bind pager t next-line | ||
bind pager s previous-line | bind pager s previous-line | ||
bind index j tag-entry | bind index,attach j tag-entry | ||
bind index J tag-pattern | bind index J tag-pattern | ||
bind index ^J untag-pattern | |||
bind index <Esc>j tag-thread | |||
bind pager,index k save-message | bind pager,index k save-message | ||
bind attach,pager c exit | bind attach,pager c exit | ||
bind browser c previous-page | bind browser c previous-page | ||
bind pager h change-folder | |||
bind generic C top-page | |||
bind generic R bottom-page | |||
bind generic L recall-message | |||
bind browser r select-entry | bind browser r select-entry | ||
bind index r display-message | bind index r display-message | ||
bind pager r view-attachments | bind pager r view-attachments | ||
bind attach r view-attach | bind attach r view-attach | ||
bind attach k save-entry | |||
bind index,pager,attach , reply | bind index,pager,attach , reply | ||
#################### | #################### | ||
</ | </source> | ||
[[Catégorie:Logiciels]] |
Dernière version du 27 mars 2023 à 14:27
Mutt est un client mail écrit en Ncurses. Pour avoir des raccourcis de déplacement « à la vim », vous pouvez ajouter dans votre ~/.muttrc
(et éventuellement adapter) les lignes suivantes :
###################
## bépo
bind browser,attach t next-entry
bind browser,attach s previous-entry
bind index t next-undeleted
bind index s previous-undeleted
bind generic,index t next-entry
bind generic,index s previous-entry
bind browser T next-entry
bind browser S previous-entry
bind pager t next-line
bind pager s previous-line
bind index,attach j tag-entry
bind index J tag-pattern
bind index ^J untag-pattern
bind index <Esc>j tag-thread
bind pager,index k save-message
bind attach,pager c exit
bind browser c previous-page
bind pager h change-folder
bind generic C top-page
bind generic R bottom-page
bind generic L recall-message
bind browser r select-entry
bind index r display-message
bind pager r view-attachments
bind attach r view-attach
bind attach k save-entry
bind index,pager,attach , reply
####################