1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 03:05:43 +02:00

core: change default key for bare display from alt-'!' to alt-'l'

This commit is contained in:
Sébastien Helleu
2014-05-04 17:35:22 +02:00
parent aa523be8be
commit 7f1cd19b45
17 changed files with 119 additions and 111 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* core: add options "-beep" and "-current" in command /print
* core: allow empty arguments for command /print
* core: add bare display mode (for easy text selection and click on URLs), new
key: key[alt-!], new option "bare" in command /window, new options:
key: key[alt-l], new option "bare" in command /window, new options:
weechat.look.bare_display_exit_on_input and
weechat.look.bare_display_time_format
* core: fix freeze/crash in gnutls (bug #41576)
+1 -1
View File
@@ -87,7 +87,7 @@ obsolete plugins).
=== Bare display
A bare display mode has been added (for easy text selection and click on URLs),
the new default key is key[alt-!].
the new default key is key[alt-l].
Use command `/key missing` to add the key or `/key listdiff` to see differences
between your current keys and WeeChat default keys.
-1
View File
@@ -6,7 +6,6 @@ key\[([^,\]]+),([^\]]+)\]=key[\1], key[\2]
key\[(ctrl|alt|shift)\]=<span class="key \1">\1</span>
key\[(ctrl|alt|shift)-\]=<span class="key \1">\1</span><span class="keyplus">+</span>
key\[(ctrl|alt|shift)-([^\]]+)\]=<span class="key \1">\1</span><span class="keyplus">+</span>key[\2]
key\[l\]=<span class="key">l</span><span class="keyplus"> (L)</span>
key\[([A-Za-z0-9/_&\=!-])\]=<span class="key">\1</span>
key\[([a-z0-9/_&\=!-][^\]]*)\]=<span class="key">\1</span>
key\[([^\]]+)\]=<span class="key other">\1</span>
+2 -2
View File
@@ -227,7 +227,7 @@ werden sollte:
[[terminal_copy_paste]]
=== Wie kann ich einen Text kopieren und einfügen ohne das die Nickliste mit kopiert wird?
Ab WeeChat ≥ 1.0 kann ein einfacher Anzeigemodus genutzt werden (Standardtastenbelegung: key[alt-!]).
Ab WeeChat ≥ 1.0 kann ein einfacher Anzeigemodus genutzt werden (Standardtastenbelegung: key[alt-l]).
Hierzu kannst Du ein Terminal nutzen welches Block-Auswahl erlaubt (wie z.B. rxvt-unicode,
konsole, gnome-terminal, ...). Im Normalfall erfolgt die Markierung mittels der Tasten
@@ -243,7 +243,7 @@ Bildschirm zu positionieren:
[[urls]]
=== Wie kann ich eine URL aufrufen die einen Zeilenumbruch besitzt?
Ab WeeChat ≥ 1.0 kann ein einfacher Anzeigemodus genutzt werden (Standardtastenbelegung: key[alt-!]).
Ab WeeChat ≥ 1.0 kann ein einfacher Anzeigemodus genutzt werden (Standardtastenbelegung: key[alt-l]).
WeeChat stellt standardmäßig die Uhrzeit als auch einen Präfix in jeder
Zeile dar. Optional können zusätzlich auch Bars im Chatfenster dargestellt
+2 -2
View File
@@ -889,7 +889,7 @@ Der vereinfachte Anzeigemodus hat folgende Funktionen:
wie in einem Terminal genutzt werden um URLs anzuklicken oder Text zu markieren
* ncurses wird nicht genutzt, deshalb werden URLs nicht am Ende der Zeile angeschnitten.
Der Standardtastenbefehl um den vereinfachten Textmodus zu aktivieren ist key[alt-!],
Der Standardtastenbefehl um den vereinfachten Textmodus zu aktivieren ist key[alt-l],
mit dem selben Tastenbefehl wird dieser Modus wieder beendet (es kann auch mit jeder
beliegen Tasteneingabe der Modus beendet werden, siehe Option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).
@@ -1100,6 +1100,7 @@ Befehl festgelegt werden:
| key[alt-j,alt-s] | wechselt zum IRC Server Buffer | `/server jump`
| key[alt-0...9] | wechselt zum Buffer mit der Nummer (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | wechselt zum Buffer mit der angegeben Nummer | `/buffer NN`
| key[alt-l] | schaltet einfachen Anzeigemodus an/aus | `/window bare`
| key[alt-m] | schaltet Mausfunktion ein/aus | `/mouse toggle`
| key[alt-n] | springt zur nächsten Highlight Nachricht | `/window scroll_next_highlight`
| key[alt-p] | springt zur vorherigen Highlight Nachricht | `/window scroll_previous_highlight`
@@ -1116,7 +1117,6 @@ Befehl festgelegt werden:
| key[alt-/] | wechselt zum jeweils zuletzt angezeigten Buffern | `/input jump_last_buffer_displayed`
| key[alt-=] | schaltet Filterfunktion an/aus | `/filter toggle`
| key[alt--] | schaltet, für den aktuellen Buffer, Filterfunktion an/aus | `/filter toggle @`
| key[alt-!] | schaltet einfachen Anzeigemodus an/aus | `/window bare`
|===
[[key_bindings_search_context]]
+2 -2
View File
@@ -216,7 +216,7 @@ any bar:
[[terminal_copy_paste]]
=== How can I copy/paste text without pasting nicklist?
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
You can use a terminal with rectangular selection (like rxvt-unicode,
konsole, gnome-terminal, ...). Key is usually key[ctrl-]key[alt-] mouse
@@ -231,7 +231,7 @@ Another solution is to move nicklist to top or bottom, for example:
[[urls]]
=== How can I click on long URLs (more than one line)?
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
By default, WeeChat displays time and prefix for each line and optional bars
around chat area. To make easier URL click, you can move nicklist to top and
+2 -2
View File
@@ -878,7 +878,7 @@ The bare display has following features:
mouse like you do in the terminal to click on URLs and select text
* ncurses is not used, therefore URLs are not cut at the end of lines.
The default key to enabled bare display is key[alt-!], and same key to exit (or
The default key to enabled bare display is key[alt-l], and same key to exit (or
by default anything changing the input will exit the bare display, see option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).
@@ -1084,6 +1084,7 @@ The notify level for a buffer can be set with command `/buffer`:
| key[alt-j,alt-s] | Switch to IRC server buffer | `/server jump`
| key[alt-0...9] | Switch to buffer by number (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | Switch to buffer by number | `/buffer NN`
| key[alt-l] | Toggle bare display on/off | `/window bare`
| key[alt-m] | Toggle mouse | `/mouse toggle`
| key[alt-n] | Scroll to next highlight | `/window scroll_next_highlight`
| key[alt-p] | Scroll to previous highlight | `/window scroll_previous_highlight`
@@ -1100,7 +1101,6 @@ The notify level for a buffer can be set with command `/buffer`:
| key[alt-/] | Switch to last buffer displayed (before last jump to a buffer) | `/input jump_last_buffer_displayed`
| key[alt-=] | Toggle filters on/off | `/filter toggle`
| key[alt--] | Toggle filters on/off in current buffer | `/filter toggle @`
| key[alt-!] | Toggle bare display on/off | `/window bare`
|===
[[key_bindings_search_context]]
+2 -2
View File
@@ -223,7 +223,7 @@ barre, WeeChat recréera automatiquement la barre par défaut "input" si l'objet
=== Comment puis-je copier/coller du texte sans coller la liste des pseudos ?
Avec WeeChat ≥ 1.0, vous pouvez utiliser l'affichage dépouillé (touche par
défaut : key[alt-!]).
défaut : key[alt-l]).
Vous pouvez utiliser un terminal qui propose la sélection rectangulaire (comme
rxvt-unicode, konsole, gnome-terminal, etc...). La touche est habituellement
@@ -240,7 +240,7 @@ exemple :
=== Comment puis-je cliquer sur les longs URLs (plus d'une ligne) ?
Avec WeeChat ≥ 1.0, vous pouvez utiliser l'affichage dépouillé (touche par
défaut : key[alt-!]).
défaut : key[alt-l]).
Par défaut, WeeChat affiche l'heure et un préfixe pour chaque ligne avec des
barres optionnelles autour de la zone de discussion. Pour rendre la le clic
+2 -2
View File
@@ -904,7 +904,7 @@ L'affichage dépouillé a les caractéristiques suivantes :
* ncurses n'est pas utilisé, par conséquent les URLs ne sont pas coupés en fin
de ligne.
La touche par défaut pour activer l'affichage dépouillé est key[alt-!], et la
La touche par défaut pour activer l'affichage dépouillé est key[alt-l], et la
même touche pour en sortir (ou par défaut tout changement dans la ligne de
commande sortira de l'affichage dépouillé, voir l'option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).
@@ -1113,6 +1113,7 @@ commande `/buffer` :
| key[alt-j,alt-s] | Sauter au tampon IRC du serveur | `/server jump`
| key[alt-0...9] | Sauter au tampon qui porte ce numéro (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | Sauter au tampon qui porte ce numéro | `/buffer NN`
| key[alt-l] | Activer/désactiver le mode d'affichage dépouillé | `/window bare`
| key[alt-m] | Activer/désactiver la souris | `/mouse toggle`
| key[alt-n] | Se positionner sur le highlight suivant | `/window scroll_next_highlight`
| key[alt-p] | Se positionner sur le highlight précédent | `/window scroll_previous_highlight`
@@ -1129,7 +1130,6 @@ commande `/buffer` :
| key[alt-/] | Sauter au dernier tampon affiché (avant le dernier saut vers un tampon) | `/input jump_last_buffer_displayed`
| key[alt-=] | Activer/désactiver les filtres | `/filter toggle`
| key[alt--] | Activer/désactiver les filtres dans le tampon courant | `/filter toggle @`
| key[alt-!] | Activer/désactiver le mode d'affichage dépouillé | `/window bare`
|===
[[key_bindings_search_context]]
+2 -2
View File
@@ -226,7 +226,7 @@ non viene usato da un'altra barra:
=== Come posso copiare/incollare testo senza incollare la lista nick?
// TRANSLATION MISSING
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
È possibile usare un terminale con la selezione rettangolare (come
rxvt-unicode, konsole, gnome-terminal, ...). La combinazione tasti in
@@ -242,7 +242,7 @@ Un'altra soluzione è spostare la lista nick in alto o in basso, per esempio:
=== Come posso cliccare su URL lunghi (più di una riga)?
// TRANSLATION MISSING
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
Con le impostazioni predefinite, WeeChat mostra l'ora ed il prefisso per ogni
riga e le barre opzionali intorno all'area di chat. Per facilitare il clic
+3 -3
View File
@@ -912,7 +912,7 @@ The bare display has following features:
mouse like you do in the terminal to click on URLs and select text
* ncurses is not used, therefore URLs are not cut at the end of lines.
The default key to enabled bare display is key[alt-!], and same key to exit (or
The default key to enabled bare display is key[alt-l], and same key to exit (or
by default anything changing the input will exit the bare display, see option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).
@@ -1122,6 +1122,8 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
| key[alt-j,alt-s] | Passa al buffer server IRC | `/server jump`
| key[alt-0...9] | Passa al buffer numero (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | Passa al buffer numero | `/buffer NN`
// TRANSLATION MISSING
| key[alt-l] | Toggle bare display on/off | `/window bare`
| key[alt-m] | Abilita/disabilita | `/mouse toggle`
| key[alt-n] | Scorre fino alla notifica successiva | `/window scroll_next_highlight`
| key[alt-p] | Scorre fino alla notifica precedente | `/window scroll_previous_highlight`
@@ -1139,8 +1141,6 @@ Il livello di notifica per un buffer può essere impostato con il comando `/buff
| key[alt-=] | Attiva/disattiva filtri | `/filter toggle`
// TRANSLATION MISSING
| key[alt--] | Toggle filters on/off in current buffer | `/filter toggle @`
// TRANSLATION MISSING
| key[alt-!] | Toggle bare display on/off | `/window bare`
|===
[[key_bindings_search_context]]
+2 -2
View File
@@ -216,7 +216,7 @@ WeeChat は自動的にデフォルトバー "input" を作成します:
[[terminal_copy_paste]]
=== どうすればニックネームリストを選択せずにテキストだけをコピー/ペーストできますか。
WeeChat ≥ 1.0 では、最小限表示を使うことができます (デフォルトキー: key[alt-!])。
WeeChat ≥ 1.0 では、最小限表示を使うことができます (デフォルトキー: key[alt-l])。
矩形選択のできるターミナルを使ってください (rxvt-unicode、
konsole、gnome-terminal、...)。通常、キーは key[ctrl-]key[alt-] マウス選択です。
@@ -230,7 +230,7 @@ konsole、gnome-terminal、...)。通常、キーは key[ctrl-]key[alt-] マウ
[[urls]]
=== どうすれば長い (一行以上に渡る) URL をクリックできますか。
WeeChat ≥ 1.0 では、最小限表示を使うことができます (デフォルトキー: key[alt-!])。
WeeChat ≥ 1.0 では、最小限表示を使うことができます (デフォルトキー: key[alt-l])。
デフォルトでは、WeeChat はそれぞれの行の最初に時間とプレフィックス、
さらにチャットエリアを囲むようにオプションバーを表示します。url のクリックを簡単にするには、
+2 -2
View File
@@ -877,7 +877,7 @@ URL を簡単にクリックしたり、テキストを簡単に選択できる
ターミナルでやるのと同じように URL をクリックしたりテキストを選択できます
* ncurses を使わない、このため URL を行の最後で分断されることがなくなります。
最小限表示を有効化するデフォルトキーは key[alt-!] で、終了するには同じキーを押してください
最小限表示を有効化するデフォルトキーは key[alt-l] で、終了するには同じキーを押してください
(また、デフォルトでは入力が変更された場合に最小限表示を終了します、<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>
オプションを参照)。
@@ -1083,6 +1083,7 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
| key[alt-j,alt-s] | IRC サーババッファに移動 | `/server jump`
| key[alt-0...9] | 番号のバッファに移動 (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | 番号のバッファに移動 | `/buffer NN`
| key[alt-l] | 最小限表示の有効無効を切り替え | `/window bare`
| key[alt-m] | マウスの有効無効を切り替え | `/mouse toggle`
| key[alt-n] | 次のハイライトまでスクロール | `/window scroll_next_highlight`
| key[alt-p] | 前のハイライトまでスクロール | `/window scroll_previous_highlight`
@@ -1099,7 +1100,6 @@ irc サーバ "freenode" に含まれる全てのバッファに対して設定
| key[alt-/] | 最後に表示したバッファに移動 (バッファ移動前に表示していたウィンドウ) | `/input jump_last_buffer_displayed`
| key[alt-=] | フィルタの有効無効を切り替え | `/filter toggle`
| key[alt--] | 現在のバッファのフィルタの有効無効を切り替え | `/filter toggle @`
| key[alt-!] | 最小限表示の有効無効を切り替え | `/window bare`
|===
[[key_bindings_search_context]]
+2 -2
View File
@@ -219,7 +219,7 @@ użyty w żadnym z pasków:
=== Jak mogę kopiować/wklejać tekst bez wklejania listy nicków?
// TRANSLATION MISSING
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
Możesz użyć terminala z prostokątnym zaznaczaniem (jak rxvt-unicode,
konsole, gnome-terminal, ...). Klawisze to zazwyczaj key[ctrl-]key[alt-] zaznaczenie myszką.
@@ -234,7 +234,7 @@ Innym rozwiązaniem jest przesunięcie listy nicków na górę lub dół, na prz
=== Jak mogę kliknąć na długi URL (dłuższy niż linia)?
// TRANSLATION MISSING
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-!]).
With WeeChat ≥ 1.0, you can use the bare display (default key: key[alt-l]).
Domyślnie WeeChat wyświetla czas i przedrostki dla każdej linii i opcjonalne paski
dookoła obszaru rozmowy. Aby usprawnić klikanie w urle można przesunąć listę nicków
+3 -3
View File
@@ -885,7 +885,7 @@ The bare display has following features:
mouse like you do in the terminal to click on URLs and select text
* ncurses is not used, therefore URLs are not cut at the end of lines.
The default key to enabled bare display is key[alt-!], and same key to exit (or
The default key to enabled bare display is key[alt-l], and same key to exit (or
by default anything changing the input will exit the bare display, see option
<<option_weechat.look.bare_display_exit_on_input,weechat.look.bare_display_exit_on_input>>).
@@ -1093,6 +1093,8 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
| key[alt-j,alt-s] | Przełącz na bufor serwera IRC | `/server jump`
| key[alt-0...9] | Przełącz na bufor za pomocą liczb (0 = 10) | `/buffer *N`
| key[alt-j,01...99] | Przełącz na bufor za pomocą liczb | `/buffer NN`
// TRANSLATION MISSING
| key[alt-l] | Toggle bare display on/off | `/window bare`
| key[alt-m] | Przełącz obsługę myszy | `/mouse toggle`
| key[alt-n] | Przewiń do następnego powiadomienia | `/window scroll_next_highlight`
| key[alt-p] | Przewiń do poprzedniego powiadomienia | `/window scroll_previous_highlight`
@@ -1110,8 +1112,6 @@ Poziom powiadomień dla bufora może zostać ustawiony za pomocą komendy `/buff
| key[alt-=] | Włącz/wyłącz filtry | `/filter toggle`
// TRANSLATION MISSING
| key[alt--] | Toggle filters on/off in current buffer | `/filter toggle @`
// TRANSLATION MISSING
| key[alt-!] | Toggle bare display on/off | `/window bare`
|===
[[key_bindings_search_context]]
+1 -1
View File
@@ -216,7 +216,7 @@ gui_key_default_bindings (int context)
BIND(/* m-m */ "meta-m", "/mute mouse toggle");
BIND(/* start paste */ "meta2-200~", "/input paste_start");
BIND(/* end paste */ "meta2-201~", "/input paste_stop");
BIND(/* bare display*/ "meta-!", "/window bare");
BIND(/* bare display*/ "meta-l", "/window bare");
/* bind meta-j + {01..99} to switch to buffers # > 10 */
for (i = 1; i < 100; i++)
+90 -81
View File
File diff suppressed because it is too large Load Diff