summaryrefslogtreecommitdiff
path: root/doc/it/autogen
diff options
context:
space:
mode:
Diffstat (limited to 'doc/it/autogen')
-rw-r--r--doc/it/autogen/user/weechat_commands.txt64
1 files changed, 32 insertions, 32 deletions
diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt
index 391ea3abd..df0998a2d 100644
--- a/doc/it/autogen/user/weechat_commands.txt
+++ b/doc/it/autogen/user/weechat_commands.txt
@@ -171,7 +171,7 @@ Esempi:
[command]*`debug`* attiva debug per core/plugin::
........................................
/debug list
- set <plugin> <level>
+ set <plugin> <livello>
dump [<plugin>]
buffer|color|infolists|memory|tags|term|windows
mouse|cursor [verbose]
@@ -341,42 +341,42 @@ Questo comando viene usato dall'associazione tasti o dai plugin.
resetall -yes [<contesto>]
missing [<contesto>]
- list: list all current keys (without argument, this list is displayed)
-listdefault: list default keys
- listdiff: list differences between current and default keys (keys added, redefined or deleted)
- context: name of context ("default" or "search")
- bind: bind a command to a key or display command bound to key (for context "default")
- bindctxt: bind a command to a key or display command bound to key, for given context
- unbind: remove a key binding (for context "default")
- unbindctxt: remove a key binding for given context
- reset: reset a key to default binding (for context "default")
- resetctxt: reset a key to default binding, for given context
- resetall: restore bindings to the default values and delete ALL personal bindings (use carefully!)
- missing: add missing keys (using default bindings), useful after installing new WeeChat version
-
-When binding a command to a key, it is recommended to use key alt+k (or Esc then k), and then press the key to bind: this will insert key code in command line.
-
-For context "mouse" (possible in context "cursor" too), key has format: "@area:key" or "@area1>area2:key" where area can be:
- *: any area on screen
- chat: chat area (any buffer)
- chat(xxx): char area for buffer with name "xxx" (full name including plugin)
- bar(*): any bar
- bar(xxx): bar "xxx"
- item(*): any bar item
- item(xxx): bar item "xxx"
-The key can start or end with '*' to match many mouse events.
-A special value for command wit format "hsignal:name" can be used for context mouse, this will send the hsignal "name" with the focus hashtable as argument.
+ list: elenca tutti i tasti correnti (senza argomento, viene visualizzata questa lista)
+listdefault: elenca i tasti predefiniti
+ listdiff: elenca le differenze tra tasti attuali e predefiniti (tasti aggiunti, ridefiniti o eliminati)
+ contesto: nome del contesto ("default" oppure "search")
+ bind: associa un comando ad un tasto o visualizza il comando associato al tasto (per il contesto "default")
+ bindctxt: associa un comando ad un tasto o mostra il comando associato al tasto, per il contesto fornito
+ unbind: rimuove una associazione di tasti (per il contesto "default")
+ unbindctxt: rimuove l'associazione tasti per il contesto fornito
+ reset: ripristina un tasto all'assegnazione predefinita
+ resetctxt: ripristina un tasto all'associazione predefinita per il contesto fornito
+ resetall: ripristina le associazioni ai valori predefiniti ed elimina TUTTE le associazioni personalizzate (usare con cautela!)
+ missing: aggiunge tasti mancanti (utilizzando le associazioni predefinite), utile dopo l'installazione di una nuova versione di WeeChat
+
+Al momento di associare un comando ad un tasto si raccomanda di utilizzare il tasto alt+k (oppure Esc e k), e digitare il tasto da associare: il codice tasto verrà inserito nella riga di comando.
+
+Per il contesto "mouse" (possibile anche nel contesto "cursor"), il formato del tasto è: "@area:tasto" oppure "@area1>area2:tasto" dove area può essere:
+ *: qualunque area sullo schermo
+ chat: area di chat (qualunque buffer)
+ chat(xxx): area di chat per il buffer con il nome "xxx" (nome completo includendo il plugin)
+ bar(*): qualunque barra
+ bar(xxx): barra "xxx"
+ item(*): qualunque elemento barra
+ item(xxx): elemento barra "xxx"
+Il tasto può iniziare o terminare con '*' per corrispondere a più eventi del mouse.
+Un valore speciale per questo comando con il formato "hsignal:nome" può essere usato per il contesto del mouse, e invierà hsignal "nome" con la tabella hash di focuse come argomento.
-Examples:
- key alt-x to toggle nicklist bar:
+Esempi:
+ il tasto alt-x per alternare la barra della nicklist:
/key bind meta-x /bar toggle nicklist
- key alt-r to jump to #weechat IRC channel:
+ il tasto alt-r per passare al canale IRC #weechat:
/key bind meta-r /buffer #weechat
- restore default binding for key alt-r:
+ ripristinare l'associazione predefinita per il tasto alt-r:
/key reset meta-r
- key "tab" to stop search in buffer:
+ il tasto "tab" per fermare la ricerca nel buffer:
/key bindctxt search ctrl-I /input search_stop
- middle button of mouse on a nick to retrieve info on nick:
+ il tasto centrale del mouse su un nick per ottenere le informazioni:
/key bindctxt mouse @item(buffer_nicklist):button3 /msg nickserv info ${nick}
........................................