mirror of
https://github.com/weechat/weechat.git
synced 2026-07-03 16:23:14 +02:00
core: add default key alt+"s" (toggle aspell)
This commit is contained in:
@@ -7,6 +7,7 @@ v0.3.9-dev, 2012-07-05
|
||||
Version 0.3.9 (under dev!)
|
||||
--------------------------
|
||||
|
||||
* core: add default key alt+"s" (toggle aspell)
|
||||
* core: add cmake option "MANDIR" (bug #36776)
|
||||
* core: add callback "nickcmp" in buffers
|
||||
* core: add horizontal separator between windows, new options
|
||||
|
||||
@@ -657,6 +657,8 @@ Tastenbefehle für die Befehlszeile
|
||||
| @k(A-)@k(d) | löscht das Wort rechts vom Cursor (Zeichenkette wird in Zwischenablage kopiert) | /input delete_next_word
|
||||
| @k(A-)@k(k) | zeigt den Tastencode, einschließlich des eingebundenen Befehls, einer Tastenkombination an und fügt diesen in die Befehlszeile ein | /input grab_key_command
|
||||
| @k(A-)@k(r) | komplette Eingabezeile löschen| /input delete_line
|
||||
// TRANSLATION MISSING
|
||||
| @k(A-)@k(s) | Toggle aspell | /mute aspell toggle
|
||||
|========================================
|
||||
|
||||
[[key_bindings_buffers_windows]]
|
||||
|
||||
@@ -642,6 +642,7 @@ Keys for command line
|
||||
| @k(A-)@k(d) | Delete next word in command line (deleted string is copied to clipboard) | /input delete_next_word
|
||||
| @k(A-)@k(k) | Grab a key and insert its code (and command bound if key exists) in command line | /input grab_key_command
|
||||
| @k(A-)@k(r) | Delete entire command line | /input delete_line
|
||||
| @k(A-)@k(s) | Toggle aspell | /mute aspell toggle
|
||||
|========================================
|
||||
|
||||
[[key_bindings_buffers_windows]]
|
||||
|
||||
@@ -654,6 +654,7 @@ Touches pour la ligne de commande
|
||||
| @k(A-)@k(d) | Effacer le mot suivant (la chaîne supprimée est copiée dans le presse-papiers) | /input delete_next_word
|
||||
| @k(A-)@k(k) | Capturer une touche et insérer son code (et la commande associée si la commande existe) sur la ligne de commande | /input grab_key_command
|
||||
| @k(A-)@k(r) | Effacer entièrement la ligne de commande | /input delete_line
|
||||
| @k(A-)@k(s) | Activer/désactiver aspell | /mute aspell toggle
|
||||
|========================================
|
||||
|
||||
[[key_bindings_buffers_windows]]
|
||||
|
||||
@@ -665,6 +665,8 @@ Tasti per la riga di comando
|
||||
| @k(A-)@k(d) | Elimina la parola successiva nella riga di comando (la stringa eliminata viene copiata negli appunti) | /input delete_next_word
|
||||
| @k(A-)@k(k) | Cattura un tasto ed inserisce il suo codice (e il comando associato se il tasto esiste) nella riga di comando | /input grab_key_command
|
||||
| @k(A-)@k(r) | Elimina l'intera riga di comando | /input delete_line
|
||||
// TRANSLATION MISSING
|
||||
| @k(A-)@k(s) | Toggle aspell | /mute aspell toggle
|
||||
|========================================
|
||||
|
||||
[[key_bindings_buffers_windows]]
|
||||
|
||||
@@ -138,6 +138,7 @@ gui_key_default_bindings (int context)
|
||||
BIND(/* m-j,m-s */ "meta-jmeta-s", "/server jump");
|
||||
BIND(/* m-h */ "meta-h", "/input hotlist_clear");
|
||||
BIND(/* m-k */ "meta-k", "/input grab_key_command");
|
||||
BIND(/* m-s */ "meta-s", "/mute aspell toggle");
|
||||
BIND(/* m-u */ "meta-u", "/window scroll_unread");
|
||||
BIND(/* ^S^U */ "ctrl-Sctrl-U", "/input set_unread");
|
||||
BIND(/* ^Cb */ "ctrl-Cb", "/input insert \\x02");
|
||||
|
||||
Reference in New Issue
Block a user