[[command_weechat_away]] [command]*`away`* imposta o elimina lo stato di assenza:: ---- /away [-all] [] -all: imposta o elimina lo stato di assenza su tutti i server connessi messaggio: messaggio di assenza (se non specificato, lo stato di assenza viene rimosso) ---- [[command_weechat_bar]] [command]*`bar`* gestione delle barre:: ---- /bar list|listfull|listitems add [,] [,...] default [input|title|status|nicklist] del |-all set hide|show|toggle scroll list: list all bars listfull: list all bars (verbose) listitems: list all bar items add: add a new bar name: name of bar (must be unique) type: root: outside windows, window: inside windows, with optional conditions (see below) condition: condition(s) for displaying bar (only for type "window"): active: on active window inactive: on inactive windows nicklist: on windows with nicklist other condition: see /help weechat.bar.xxx.conditions and /help eval without condition, the bar is always displayed position: bottom, top, left or right size: size of bar (in chars) separator: 1 for using separator (line), 0 or nothing means no separator item1,...: items for this bar (items can be separated by comma (space between items) or "+" (glued items)) default: create a default bar (all default bars if no bar name is given) del: delete a bar (or all bars with -all) set: set a value for a bar property option: option to change (for options list, look at /set weechat.bar..*) value: new value for option hide: hide a bar show: show an hidden bar toggle: hide/show a bar scroll: scroll bar window: window number (use '*' for current window or for root bars) scroll_value: value for scroll: 'x' or 'y' (optional), followed by '+', '-', 'b' (beginning) or 'e' (end), value (for +/-), and optional % (to scroll by % of width/height, otherwise value is number of chars) Examples: create a bar with time, buffer number + name, and completion: /bar add mybar root bottom 1 0 [time],buffer_number+:+buffer_name,completion hide a bar: /bar hide mybar scroll nicklist 10 lines down on current buffer: /bar scroll nicklist * y+10 scroll to end of nicklist on current buffer: /bar scroll nicklist * ye ---- [[command_weechat_buffer]] [command]*`buffer`* gestione dei buffer:: ---- /buffer list clear [||-merged|-all] move|merge swap | [|] unmerge [|-all] renumber [ [ []]] close [[-]|] notify localvar set get | list: list buffers (without argument, this list is displayed) clear: clear buffer content (number for a buffer, -merged for merged buffers, -all for all buffers, or nothing for current buffer) move: move buffer in the list (may be relative, for example -1) swap: swap two buffers (swap with current buffer if only one number/name given) merge: merge current buffer to another buffer (chat area will be mix of both buffers) (by default ctrl-x switches between merged buffers) unmerge: unmerge buffer from other buffers which have same number renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off) close: close buffer (number/range or name is optional) notify: set notify level for current buffer: this level determines whether buffer will be added to hotlist or not: none: never highlight: for highlights only message: for messages from users + highlights all: all messages reset: reset to default value (all) localvar: display local variables for current buffer set: set a property for current buffer get: display a property of current buffer number: jump to buffer by number, possible prefix: '+': relative jump, add number to current '-': relative jump, sub number to current '*': jump to number, using option "weechat.look.jump_current_to_previous_buffer" name: jump to buffer by (partial) name Examples: clear current buffer: /buffer clear move buffer to number 5: /buffer move 5 swap buffer 1 with 3: /buffer swap 1 3 swap buffer #weechat with current buffer: /buffer swap #weechat merge with core buffer: /buffer merge 1 unmerge buffer: /buffer unmerge close current buffer: /buffer close close buffers 5 to 7: /buffer close 5-7 jump to #weechat: /buffer #weechat jump to next buffer: /buffer +1 ---- [[command_weechat_color]] [command]*`color`* definisce gli alias dei colori e visualizza la tavolozza dei colori:: ---- /color alias unalias reset -o alias: aggiunge un alias per un colore unalias: elimina un alias colore: numero colore (maggiore o ugale a 0, il massimo dipende dal terminale, di solito 63 o 255) nome: nome alias per il colore (ad esempio: "arancione") reset: ripristina tutte le coppie di colore (richiesto quando non ci sono più coppie disponibili se il ripristino automatico è disabilitato, consultare l'opzione weechat.look.color_pairs_auto_reset) -o: invia le informazioni sul terminale/colori su un nuovo buffer. Senza argomento, il comando mostra i colori in un nuovo buffer. Esempi: aggiunge alias "arancione" per il colore 214: /color alias 214 arancione elimina il colore 214: /color unalias 214 ---- [[command_weechat_command]] [command]*`command`* esegui comando o plugin di WeeChat esplicito:: ---- /command plugin: nome plugin ('weechat' per il comando interno di WeeChat) comando: comando da eseguire (una '/' viene aggiunta automaticamente se non trovata all'inizio del comando) ---- [[command_weechat_cursor]] [command]*`cursor`* movimento libero del cursore sullo schermo per eseguire azioni su aree specifiche dello schermo:: ---- /cursor go chat||, move up|down|left|right|area_up|area_down|area_left|area_right stop go: sposta il cursore su un'area di chat, una barra (usando il nome della barra) o le coordinate "x.y" move: sposta il cursore con direzione stop: interrompe la modalità cursore Senza argomenti, il comando abilita/disabilita la modalità cursore Quando il mouse è abilitato (consultare /help mouse), per default il click con il tasto centrale avvia la modalità cursore in questa posizione. Esempi: vai alla lista nick: /cursor go nicklist vai alle coordinate x=10, y=5: /cursor go 10,5 ---- [[command_weechat_debug]] [command]*`debug`* attiva debug per core/plugin:: ---- /debug list set dump [] buffer|color|infolists|memory|tags|term|windows mouse|cursor [verbose] hdata [free] list: list plugins with debug levels set: set debug level for plugin plugin: name of plugin ("core" for WeeChat core) level: debug level for plugin (0 = disable debug) dump: save memory dump in WeeChat log file (same dump is written when WeeChat crashes) buffer: dump buffer content with hexadecimal values in log file color: display infos about current color pairs cursor: toggle debug for cursor mode dirs: display directories hdata: display infos about hdata (with free: remove all hdata in memory) hooks: display infos about hooks infolists: display infos about infolists libs: display infos about external libraries used memory: display infos about memory usage mouse: toggle debug for mouse tags: display tags for lines term: display infos about terminal windows: display windows tree ---- [[command_weechat_eval]] [command]*`eval`* analizza l'espressione e invia il risultato al buffer:: ---- /eval [-n] [-n] -c -n: display result without sending it to buffer (debug mode) -c: evaluate as condition: use operators and parentheses, return a boolean value ("0" or "1") expression: expression to evaluate, variables with format ${variable} are replaced (see below) operator: a logical or comparison operator: - logical operators: && boolean "and" || boolean "or" - comparison operators: == equal != not equal <= less or equal < less >= greater or equal > greater =~ is matching POSIX extended regex !~ is NOT matching POSIX extended regex An expression is considered as "true" if it is not NULL, not empty, and different from "0". The comparison is made using integers if the two expressions are valid integers. To force a string comparison, add double quotes around each expression, for example: 50 > 100 ==> 0 "50" > "100" ==> 1 Some variables are replaced in expression, using the format ${variable}, variable can be, by order of priority : 1. a color (format: "color:xxx") 2. an info (format: "info:name,arguments", arguments are optional) 3. an option (format: "file.section.option") 4. a local variable in buffer 5. a hdata name/variable (the value is automatically converted to string), by default "window" and "buffer" point to current window/buffer. Format for hdata can be one of following: hdata.var1.var2...: start with a hdata (pointer must be known), and ask variables one after one (other hdata can be followed) hdata[list].var1.var2...: start with a hdata using a list, for example: ${buffer[gui_buffers].full_name}: full name of first buffer in linked list of buffers ${plugin[weechat_plugins].name}: name of first plugin in linked list of plugins For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". Examples: /eval -n ${info:version} ==> 0.4.3 /eval -n ${weechat.look.scroll_amount} ==> 3 /eval -n ${window} ==> 0x2549aa0 /eval -n ${window.buffer} ==> 0x2549320 /eval -n ${window.buffer.full_name} ==> core.weechat /eval -n ${window.buffer.number} ==> 1 /eval -n -c ${window.buffer.number} > 2 ==> 0 /eval -n -c ${window.win_width} > 100 ==> 1 /eval -n -c (8 > 12) || (5 > 2) ==> 1 /eval -n -c (8 > 12) && (5 > 2) ==> 0 /eval -n -c abcd =~ ^ABC ==> 1 /eval -n -c abcd =~ (?-i)^ABC ==> 0 /eval -n -c abcd =~ (?-i)^abc ==> 1 /eval -n -c abcd !~ abc ==> 0 ---- [[command_weechat_filter]] [command]*`filter`* filtra messaggi nei buffer, per nascondere/mostrare in base a tag o regexp:: ---- /filter list enable|disable|toggle [] add [,...] rename del |-all list: list all filters enable: enable filters (filters are enabled by default) disable: disable filters toggle: toggle filters name: filter name add: add a filter rename: rename a filter del: delete a filter -all: delete all filters buffer: comma separated list of buffers where filter is active: - this is full name including plugin (example: "irc.freenode.#weechat") - "*" means all buffers - a name starting with '!' is excluded - name can start or end with '*' to match many buffers tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit" - logical "and": use "+" between tags (for example: "nick_toto+irc_action") - tags can start or end with '*' regex: POSIX extended regular expression to search in line - use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|' - if regex starts with '!', then matching result is reversed (use '\!' to start with '!') - two regular expressions are created: one for prefix and one for message - regex are case insensitive, they can start by "(?-i)" to become case sensitive The default key alt+'=' toggles filtering on/off. Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. To see tags for lines in buffers: /debug tags Examples: use IRC smart filter on all buffers: /filter add irc_smart * irc_smart_filter * use IRC smart filter on all buffers except those with "#weechat" in name: /filter add irc_smart *,!*#weechat* irc_smart_filter * filter all IRC join/part/quit messages: /filter add joinquit * irc_join,irc_part,irc_quit * filter nicks displayed when joining channels or with /names: /filter add nicks * irc_366 * filter nick "toto" on IRC channel #weechat: /filter add toto irc.freenode.#weechat nick_toto * filter IRC join/action messages from nick "toto": /filter add toto * nick_toto+irc_join,nick_toto+irc_action * filter lines containing "weechat sucks" on IRC channel #weechat: /filter add sucks irc.freenode.#weechat * weechat sucks ---- [[command_weechat_help]] [command]*`help`* visualizza l'aiuto su comandi e opzioni:: ---- /help -list|-listfull [ [...]] -list: elenca i comandi, per plugin (senza argomento, viene mostrata questa lista) -listfull: elenca i comandi con la relativa descrizione, per plugin plugin: elenca i comandi per questo plugin comando: nome di un comando opzione: nome di un'opzione (usare /set per consultare la lista) ---- [[command_weechat_history]] [command]*`history`* mostra la cronologia dei comandi del buffer:: ---- /history clear: pulisci cronologia valore: numero delle voci nella cronologia da mostrare ---- [[command_weechat_input]] [command]*`input`* funzioni per la riga di comando:: ---- /input [] list of actions: return: simulate key "enter" complete_next: complete word with next completion complete_previous: complete word with previous completion search_text: search text in buffer search_switch_case: switch exact case for search search_switch_regex: switch search type: string/regular expression search_switch_where: switch search in messages/prefixes search_previous: search previous line search_next: search next line search_stop: stop search delete_previous_char: delete previous char delete_next_char: delete next char delete_previous_word: delete previous word delete_next_word: delete next word delete_beginning_of_line: delete from beginning of line until cursor delete_end_of_line: delete from cursor until end of line delete_line: delete entire line clipboard_paste: paste from clipboard transpose_chars: transpose two chars undo: undo last command line action redo: redo last command line action move_beginning_of_line: move cursor to beginning of line move_end_of_line: move cursor to end of line move_previous_char: move cursor to previous char move_next_char: move cursor to next char move_previous_word: move cursor to previous word move_next_word: move cursor to next word history_previous: recall previous command in current buffer history history_next: recall next command in current buffer history history_global_previous: recall previous command in global history history_global_next: recall next command in global history jump_smart: jump to next buffer with activity jump_last_buffer: jump to last buffer jump_last_buffer_displayed: jump to last buffer displayed (before last jump to a buffer) jump_previously_visited_buffer: jump to previously visited buffer jump_next_visited_buffer: jump to next visited buffer hotlist_clear: clear hotlist grab_key: grab a key (optional argument: delay for end of grab, default is 500 milliseconds) grab_key_command: grab a key with its associated command (optional argument: delay for end of grab, default is 500 milliseconds) grab_mouse: grab mouse event code grab_mouse_area: grab mouse event code with area set_unread: set unread marker for all buffers set_unread_current_buffer: set unread marker for current buffer switch_active_buffer: switch to next merged buffer switch_active_buffer_previous: switch to previous merged buffer zoom_merged_buffer: zoom on merged buffer insert: insert text in command line (escaped chars are allowed, see /help print) paste_start: start paste (bracketed paste mode) paste_stop: stop paste (bracketed paste mode) This command is used by key bindings or plugins. ---- [[command_weechat_key]] [command]*`key`* associa/disassocia tasti:: ---- /key list|listdefault|listdiff [] bind [ []] bindctxt [ ]] unbind unbindctxt reset resetctxt resetall -yes [] missing [] 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 comando: comando (più comandi vanno separati da punto e virgola) unbind: rimuove una combinazione di tasti (per il contesto "default") unbindctxt: rimuove la combinazione tasti per il contesto fornito reset: ripristina un tasto all'assegnazione predefinita resetctxt: ripristina un tasto alla combinazione predefinita per il contesto fornito resetall: ripristina le combinazioni ai valori predefiniti ed elimina TUTTE le combinazioni personalizzate (usare con cautela!) missing: aggiunge tasti mancanti (usando le combinazioni predefinite), utile dopo l'installazione di una nuova versione di WeeChat Al momento di associare un comando ad un tasto si raccomanda di usare 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. Può essere usato un altro valore speciale "-" per disabilitare il tasto (verrà ignorato quando si cercano i tasti). Esempi: il tasto alt-x per alternare la barra della nicklist: /key bind meta-x /bar toggle nicklist il tasto alt-r per passare al canale IRC #weechat: /key bind meta-r /buffer #weechat ripristinare la combinazione predefinita per il tasto alt-r: /key reset meta-r il tasto "tab" per interrompere la ricerca nel buffer: /key bindctxt search ctrl-I /input search_stop il tasto centrale del mouse su un nick per ottenere le informazioni: /key bindctxt mouse @item(buffer_nicklist):button3 /msg nickserv info ${nick} ---- [[command_weechat_layout]] [command]*`layout`* manage buffers/windows layouts:: ---- /layout store [] [buffers|windows] apply [] [buffers|windows] leave del [] [buffers|windows] rename store: store current buffers/windows in a layout apply: apply stored layout leave: leave current layout (does not update any layout) del: delete buffers and/or windows in a stored layout (if neither "buffers" nor "windows" is given after the name, the layout is deleted) rename: rename a layout name: name for stored layout (default is "default") buffers: store/apply only buffers (order of buffers) windows: store/apply only windows (buffer displayed by each window) Without argument, this command displays stored layouts. ---- [[command_weechat_mouse]] [command]*`mouse`* controllo mouse:: ---- /mouse enable|disable|toggle [] enable: abilita mouse disable: disabilita mouse toggle: abilita/disabilita mouse ritardo: ritardo (in secondi) dopo il quale viene ripristinato lo stato iniziale del mouse (utile per disattivarlo temporaneamente) Lo stato del mouse viene salvato nell'opzione "weechat.look.mouse". Esempi: abilita mouse: /mouse enable abilita/disabilita mouse per 5 secondi: /mouse toggle 5 ---- [[command_weechat_mute]] [command]*`mute`* esegue un comando in silenzio:: ---- /mute [-current | -buffer | -all] -current: nessun output sul buffer corrente -buffer: nessun output sul buffer specificato nome: nome completo del buffer (esempi: "irc.server.freenode", "irc.freenode.#weechat") -all: nessun output su TUTTI i buffer command: comando da eseguire in silenzio (una '/' viene aggiunta automaticamente all'inizio del comando se non trovata) Se non viene specificata una destinazione (-current, -buffer o -all), la destinazione predefinita è il buffer core di WeeChat. Esempi: salva la configurazione: /mute save messaggio sul canale IRC corrente: /mute -current msg * ciao! messaggio sul canale #weechat: /mute -buffer irc.freenode.#weechat msg #weechat ciao! ---- [[command_weechat_plugin]] [command]*`plugin`* elenca/carica/scarica plugin:: ---- /plugin list|listfull [] load [] autoload [] reload [ []] unload [] list: elenca i plugin caricati listfull: elenca i plugin caricati (dettagliato) load: carica un plugin autoload: carica automaticamente un plugin nella directory di sistema o utente reload: ricarica un plugin (se non specificato, scarica e poi ricarica tutti i plugin) unload: scarica un plugin (se non specificato, scarica tutti i plugin nomefile: plugin (file) da caricare nome: nome di un plugin argomenti: argomenti passati al plugin durante il caricamento Senza argomento, questo comando elenca i plugin caricati. ---- [[command_weechat_print]] [command]*`print`* display text on a buffer:: ---- /print [-buffer |] [-core] [-escape] [-date ] [-tags ] [-action|-error|-join|-network|-quit] [] -stdout|-stderr [] -beep -buffer: the buffer where text is displayed (default: current buffer) -core: alias of "-buffer core.weechat" -escape: interpret escaped chars (for example \a, \07, \x07) -date: message date, format can be: -n: 'n' seconds before now +n: 'n' seconds in the future n: 'n' seconds since the Epoch (see man time) date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 time: hh:mm:ss (example: 04:32:55) -tags: comma-separated list of tags (see /help filter for a list of tags most commonly used) text: text to display (prefix and message must be separated by "\t", if text starts with "-", then add a "\" before) -stdout: display text on stdout (escaped chars are interpreted) -stderr: display text on stderr (escaped chars are interpreted) -beep: alias of "-stderr \a" The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". Following escaped chars are supported: \" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh Examples: display a reminder on core buffer with a highlight: /print -core -tags notify_highlight Reminder: buy milk display an error on core buffer: /print -core -error Some error here display message on core buffer with prefix "abc": /print -core abc\tThe message display a message on channel #weechat: /print -buffer irc.freenode.#weechat Message on #weechat display a snowman (U+2603): /print -escape \u2603 send alert (BEL): /print -beep ---- [[command_weechat_proxy]] [command]*`proxy`* gestione dei proxy:: ---- /proxy list add [ []] del |-all set list: elenca tutti i proxy add: aggiunge un nuovo proxy nome: nome del proxy (deve essere unico) tipo: http, socks4 o socks5 address: IP o nome host port: porta username: nome utente (opzionale) password: password (opzionale) del: elimina un proxy (o tutti i proxy con -all) set: imposta un valore per la proprietà di un proxy option: opzione da modificare (per una lista di opzioni, consultare /set weechat.proxy..*) value: nuovo valore per l'opzione Esempi: crea un proxy http, in esecuzione sull'host locale, porta 8888: /proxy add local http 127.0.0.1 8888 crea un proxy http usando il protocollo IPv6: /proxy add local http ::1 8888 /proxy set local ipv6 on crea un proxy socks5 con nomeutente/password: /proxy add myproxy socks5 sample.host.org 3128 myuser mypass elimina un proxy: /proxy del mioproxy ---- [[command_weechat_quit]] [command]*`quit`* esce da WeeChat:: ---- /quit [-yes] [] -yes: richiesto se l'opzione option weechat.look.confirm_quit è abilitata argomenti: testo inviato con il segnale "quit" (ad esempio il plugin irc usa questo testo per inviare il messaggio di uscita al server) ---- [[command_weechat_reload]] [command]*`reload`* ricarica i file di configurazione da disco:: ---- /reload [ []] file: file di configurazione da ricaricare (senza estensione ".conf") Senza argomento, vengono ricaricati tutti i file (WeeChat e plugin). ---- [[command_weechat_repeat]] [command]*`repeat`* esegue un comando più volte:: ---- /repeat [-interval ] ritardo: ritardo tra l'esecuzione dei comandi (in millisecondi) numero: numero di volte in cui eseguire il comando comando: comando da eseguire (una '/' viene aggiunta automaticamente se non viene trovata all'inizio del comando) Tutti i comandi sono eseguiti sul buffer su cui viene dato il comando. Esempio: scorre due pagine in alto: /repeat 2 /window page_up ---- [[command_weechat_save]] [command]*`save`* salva i file di configurazione su disco:: ---- /save [ []] file: file di configurazione da salvare (senza estensione ".conf") Senza argomento, vengono salvati tutti i file (WeeChat e plugin). ---- [[command_weechat_secure]] [command]*`secure`* gestione dei dati sensibili (password o file privati cifrati nel file sec.conf):: ---- /secure passphrase |-delete decrypt del passphrase: cambia la chiave di cifratura (senza la chiave di cifratura, i dati vengono salvati in chiaron nel file sec.conf) -delete: elimina la chiave di cifratura decrypt: decifra tutti i dati ancora cifrati (accade solo se la chiave di cifratura non è stata digitata all'avvio) -discard: scarta tutti i dati ancora cifrati set: aggiunge o modifica dati sicuri del: elimina dati sicuri Senza argomento, questo comando mostra i dati messi al sicuro in un nuovo buffer. Quando viene usata una chiave di cifratura (dati cifrati), questa viene richiesta da WeeChat all'avvio. È possibile impostare la variabile d'ambiente "WEECHAT_PASSPHRASE" per prevenire il prompt (questa stessa variabile viene usata da WeeChat con il comando /upgrade). I dati messi al sicuro con il formato ${sec.data.xxx} possono essere usati in questo modo: - argomento della riga di comando "--run-command" - opzioni weechat.startup.command_{before|after}_plugins - opzioni del proxy: nome utente, password - opzioni del server irc: autojoin, comando, password, sasl_{username|password} - opzione relay.network.password - comando /eval. Esempi: imposta una chiave di cifratura: /secure passphrase questa è la mia chiave di cifratura cifra la password SASL di freenode: /secure set freenode miapassword /set irc.server.freenode.sasl_password "${sec.data.freenode}" cifra la password di oftc per nickserv: /secure set oftc miapassword /set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}" alias per il "ghost" del nick "mionick": /alias ghost /eval /msg -server freenode nickserv ghost mionick ${sec.data.freenode} ---- [[command_weechat_set]] [command]*`set`* imposta le opzioni di configurazione:: ---- /set [ []] diff [ [...]] opzione: nome di un'opzione (può iniziare o terminare con '*' per elencare più opzioni) valore: nuovo valore per l'opzione diff: mostra solo le opzioni modificate Il nuovo valore può essere, a seconda del tipo di variabile: booleano: on, off o toggle intero : numero, ++numero o --numero stringa : qualsiasi stringa ("" per una stringa vuota) colore : nome colore, ++numeero o --numero Per tutti i tipi, è possibile usare null per rimuovere il valore dell'opzione (valore non definito). Ciò funziona solo per alcune variabili speciali dei plugin. Esempi: mostra le opzioni relative alle notifiche: /set *highlight* aggiunge una parola alle notifiche: /set weechat.look.highlight "word" mostra le opzioni modificate: /set diff mostra le opzioni modificate nel plugin irc: /set diff irc.* ---- [[command_weechat_unset]] [command]*`unset`* annulla/ripristina opzione:: ---- /unset opzione: nome di un'opzione (può iniziare o terminare con "*" per il ripristino di più opzioni, attenzione!) A seconda dell'opzione, essa viene ripristinata (per le opzioni standard) o rimossa (per le impostazioni opzionali, come i valori del server). Esempi: ripristina un'opzione: /unset weechat.look.item_time_format ripristina tutte le opzioni del colore: /unset weechat.color.* ---- [[command_weechat_upgrade]] [command]*`upgrade`* aggiorna WeeChat senza disconnettere dai server:: ---- /upgrade [|-quit] path_to_binary: path to WeeChat binary (default is current binary) -dummy: do nothing (option used to prevent accidental completion with "-quit") -quit: close *ALL* connections, save session and quit WeeChat, which makes possible a delayed restoration (see below) This command upgrades and reloads a running WeeChat session. The new WeeChat binary must have been compiled or installed with a package manager before running this command. Note: SSL connections are lost during upgrade, because reload of SSL sessions is currently not possible with GnuTLS. There is automatic reconnection after upgrade. Upgrade process has 4 steps: 1. save session into files for core and plugins (buffers, history, ..) 2. unload all plugins (configuration files (*.conf) are written on disk) 3. save WeeChat configuration (weechat.conf) 4. execute new WeeChat binary and reload session. With option "-quit", the process is slightly different: 1. close *ALL* connections (irc, xfer, relay, ...) 2. save session into files (*.upgrade) 3. unload all plugins 4. save WeeChat configuration 5. quit WeeChat Then later you can restore session with command: weechat --upgrade IMPORTANT: you must restore the session with exactly same configuration (files *.conf). It is possible to restore WeeChat session on another machine if you copy the content of directory "~/.weechat". ---- [[command_weechat_uptime]] [command]*`uptime`* mostra l'uptime di WeeChat:: ---- /uptime [-o | -ol] -o: invia l'uptime al buffer corrente come input (stringa in inglese) -ol: invia l'uptime al buffer corrente come input (stringa tradotta) ---- [[command_weechat_version]] [command]*`version`* mostra la versione e la data di compilazione di WeeChat:: ---- /version [-o | -ol] -o: invia la versione al buffer corrente come input (stringa inglese) -ol: invia la versione al buffer corrente come input (stringa tradotta) ---- [[command_weechat_wait]] [command]*`wait`* pianifica l'esecuzione di un comando:: ---- /wait [] numero: tempo di attesa (numero intero) unità: valori opzionali sono: ms: millisecondi s: secondi (predefinito) m: minuti h: ore comando: comando da eseguire (o testo da inviare al buffer se il comando non inizia con '/') Nota: il comando viene eseguito sui buffer dove /wait è stato eseguito (se il buffer non viene trovato (per esempio se è stato chiuso prima dell'esecuzione), allora il comando verrà eseguito sul buffer core di WeeChat) Esempi: entra nel canale tra 10 secondi: /wait 10 /join #test imposta assenza tra 15 minuti: /wait 15m /away -all Sono assente scrive 'ciao' tra 2 minuti: /wait 2m ciao ---- [[command_weechat_window]] [command]*`window`* gestione delle finestre:: ---- /window list -1|+1|b#|up|down|left|right [-window ] splith|splitv [-window ] [] resize [-window ] [+/-] balance merge [-window ] [all] page_up|page_down [-window ] refresh scroll [-window ] [+/-][s|m|h|d|M|y] scroll_horiz [-window ] [+/-][%] scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window ] swap [-window ] [up|down|left|right] zoom[-window ] bare [] list: list opened windows (without argument, this list is displayed) -1: jump to previous window +1: jump to next window b#: jump to next window displaying buffer number # up: switch to window above current one down: switch to window below current one left: switch to window on the left right: switch to window on the right number: window number (see /window list) splith: split current window horizontally splitv: split current window vertically resize: resize window size, new size is percentage of parent window balance: balance the sizes of all windows merge: merge window with another (all = keep only one window) page_up: scroll one page up page_down: scroll one page down refresh: refresh screen scroll: scroll a number of lines (+/-N) or with time: s=seconds, m=minutes, h=hours, d=days, M=months, y=years scroll_horiz: scroll horizontally a number of columns (+/-N) or percentage of window size (this scrolling is possible only on buffers with free content) scroll_up: scroll a few lines up scroll_down: scroll a few lines down scroll_top: scroll to top of buffer scroll_bottom: scroll to bottom of buffer scroll_beyond_end: scroll beyond the end of buffer scroll_previous_highlight: scroll to previous highlight scroll_next_highlight: scroll to next highlight scroll_unread: scroll to unread marker swap: swap buffers of two windows (with optional direction for target window) zoom: zoom on window bare: toggle bare display (with optional delay in milliseconds for automatic return to standard display mode) For splith and splitv, pct is a percentage which represents size of new window, computed with current window as size reference. For example 25 means create a new window with size = current_size / 4 Examples: jump to window displaying buffer #1: /window b1 scroll 2 lines up: /window scroll -2 scroll 2 days up: /window scroll -2d scroll to beginning of current day: /window scroll -d zoom on window #2: /window zoom -window 2 ----