翻訳者:
-
Ryuunosuke Ayanokouzi <i38w7i3@yahoo.co.jp>, 2012-2019
このマニュアルは WeeChat チャットクライアントについての文書で、これは WeeChat の一部です。
Latest version of this document can be found on this page ↗.
1. イントロダクション
WeeChat (Wee Enhanced Environment for Chat) はフリーのチャットクライアントです。高速で軽量、多くのオペレーティングシステムで動くように設計されています。
1.2. 事前に必要なもの
WeeChat をインストールするには、以下のものが必要です:
-
GNU/Linux が稼動しているシステム (ソースパッケージを使う場合は、コンパイラツールも必要)、または互換 OS
-
root 特権 (WeeChat をシステムディレクトリにインストールする場合)
-
一部のライブラリ (依存関係を参照)。
2. インストール方法
2.1. バイナリパッケージ
多くのディストリビューションではバイナリパッケージが利用できます。例えば:
-
Arch Linux:
pacman -S weechat
-
Cygwin (Windows): setup.exe で WeeChat パッケージを選択してください
-
Debian/Ubuntu (または Debian 互換ディストリビューション):
apt-get install weechat-curses weechat-plugins
For latest versions and nightly builds: Debian repositories ↗ -
Fedora Core:
dnf install weechat
-
FreeBSD:
pkg install weechat
-
Gentoo:
emerge weechat
-
Mandriva/RedHat (または RPM 互換ディストリビューション):
rpm -i /path/to/weechat-x.y.z-1.i386.rpm
-
openSUSE:
zypper in weechat
-
Sourcemage:
cast weechat
-
macOS (with Homebrew ↗):
brew install weechat
(for help:brew info weechat
)
例えば weechat-plugins 等の追加パッケージを使うとさらに便利になるかもしれません。
その他のディストリビューションでは、インストール説明マニュアルを参照してください。
2.2. Containers
Containers with WeeChat can be built or installed directly from the
Docker Hub ↗.
For more information, see the README in the
weechat-container ↗
repository.
2.3. ソースパッケージ
WeeChat must be built with CMake.
注記
|
macOS では Homebrew ↗ を使ってください:
brew install --build-from-source weechat 。
|
依存関係
The following table shows the list of packages that are required to build WeeChat:
パッケージ (1) | バージョン | Features |
---|---|---|
C コンパイラ (gcc / clang) |
Compile C sources. |
|
cmake |
≥ 3.0 |
ビルド |
pkgconf / pkg-config |
インストール済みライブラリを検出 |
|
libncurses-dev |
ncurses インターフェース |
|
libcurl4-gnutls-dev |
URL 転送 |
|
libgcrypt20-dev |
保護データ、IRC SASL 認証 |
|
libgnutls28-dev |
≥ 2.2.0 (2) |
IRC plugin: support of TLS connections, IRC SASL authentication (ECDSA-NIST256P-CHALLENGE). |
zlib1g-dev |
Logger plugin: compression of rotated log files (gzip). |
注記
|
(1) Name comes from the Debian GNU/Linux Bookworm distribution, version and
name can be different in other distributions. (2) IRC SASL 認証で ECDSA-NIST256P-CHALLENGE を使うには、GnuTLS バージョン 3.0.21 以上が必要です。 |
The following table shows the list of packages that are optional to compile WeeChat:
パッケージ (1) | バージョン | Features |
---|---|---|
C++ コンパイラ (g++ / clang++) |
ビルドとテストの実行、JavaScript プラグイン |
|
gettext |
国際化 (メッセージの翻訳; ベース言語は英語です) |
|
ca-certificates |
TLS 接続に必要な証明書、relay プラグインで TLS サポート |
|
libcjson-dev |
Relay plugin: protocol "api" (HTTP REST API). |
|
libzstd-dev |
≥ 0.8.1 |
Logger plugin: compression of rotated log files (zstandard). |
libaspell-dev / libenchant-dev |
spell プラグイン |
|
python3-dev |
3.0 以上 |
python プラグイン |
libperl-dev |
perl プラグイン |
|
ruby3.1, ruby3.1-dev |
1.9.1 以上 |
ruby プラグイン |
liblua5.4-dev |
lua プラグイン |
|
tcl-dev |
8.5 以上 |
tcl プラグイン |
guile-3.0-dev |
2.0 以上 |
guile (scheme) プラグイン |
libv8-dev |
3.24.3 以下 |
javascript プラグイン |
php-dev |
7.0 以上 |
PHP プラグイン |
libphp-embed |
7.0 以上 |
PHP プラグイン |
libxml2-dev |
PHP プラグイン |
|
libargon2-dev |
PHP プラグイン (PHP 7.2 以上の場合) |
|
libsodium-dev |
PHP プラグイン (PHP 7.2 以上の場合) |
|
asciidoctor |
1.5.4 以上 |
man ページと文書のビルド |
ruby-pygments.rb |
Build documentation. |
|
libcpputest-dev |
3.4 以上 |
ビルドとテストの実行 |
注記
|
(1) Name comes from the Debian GNU/Linux Bookworm distribution, version and name can be different in other distributions. |
Debian および Ubuntu ベースのディストリビューションを使っており、/etc/apt/sources.list ファイルで "deb-src" ソースエントリを指定しているならば、すべての依存関係にあるパッケージを以下のコマンドでインストール可能です:
sudo apt-get build-dep weechat
Build
-
システムディレクトリにインストールする場合 (root 特権が必要です):
mkdir build
cd build
cmake ..
make
sudo make install
-
任意のディレクトリ (例えば自分のホームディレクトリ) にインストールする場合:
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory
make
make install
CMake に対するオプションを指定するには、以下の書式を使ってください: -DOPTION=VALUE
。
List of available options:
オプション | 値 | デフォルト値 | 説明 |
---|---|---|---|
|
|
ビルド形式: WeeChat の開発版を使っている場合は
|
|
|
directory |
|
WeeChat をインストールするディレクトリ。 |
|
directory |
|
WeeChat 実行時のホームディレクトリ。 |
|
|
|
Alias プラグインのコンパイル。 |
|
|
|
Buflist プラグインのコンパイル。 |
|
|
|
Charset プラグインのコンパイル。 |
|
|
|
Support of JSON with cJSON ↗ library. |
|
|
|
man ページのコンパイル。 |
|
|
|
HTML 文書のコンパイル。 |
|
|
|
Force build of documentation even if some plugins are not compiled (not recommended: docs will be incomplete). |
|
|
|
Enchant と含めた Spell プラグインのコンパイル。 |
|
|
|
Exec プラグインのコンパイル。 |
|
|
|
Fifo プラグインのコンパイル。 |
|
|
|
Fset プラグインのコンパイル。 |
|
|
|
Guile プラグイン (Scheme) のコンパイル。 |
|
|
|
Compile headless binary. |
|
|
|
IRC プラグインのコンパイル |
|
|
|
JavaScript プラグインのコンパイル。 |
|
|
|
巨大ファイルのサポート。 |
|
|
|
Logger プラグインのコンパイル。 |
|
|
|
Lua プラグインのコンパイル。 |
|
|
|
Ncurses インターフェースのコンパイル。 |
|
|
|
NLS の有効化 (多言語サポート)。 |
|
|
|
Perl プラグインのコンパイル。 |
|
|
|
PHP プラグインのコンパイル。 |
|
|
|
Python プラグインのコンパイル。 |
|
|
|
リレープラグインのコンパイル。 |
|
|
|
Ruby プラグインのコンパイル。 |
|
|
|
スクリプトプラグインのコンパイル。 |
|
|
|
すべてのスクリプトプラグイン (Python、Perl、Ruby、Lua、Tcl、Guile、PHP) のコンパイル。 |
|
|
|
Spell プラグインのコンパイル。 |
|
|
|
Tcl プラグインのコンパイル。 |
|
|
|
Trigger プラグインのコンパイル。 |
|
|
|
Typing プラグインのコンパイル。 |
|
|
|
Xfer プラグインのコンパイル。 |
|
|
|
Enable Zstandard ↗ compression. |
|
|
|
コンパイルテスト。 |
|
|
|
コードカバレッジオプションを有効化してコンパイル。 |
その他のオプションは以下のコマンドで確認してください:
cmake -LA
Curses インターフェースを使う場合は以下のコマンドを使ってください:
ccmake ..
2.4. Git ソース
警告: Git ソースを用いる方法は上級者向けです。コンパイルに失敗したり、 不安定な可能性があります。警告しましたよ!
Git ソースを入手するには、以下のコマンドを使ってください:
git clone https://github.com/weechat/weechat.git
その後は、ソースパッケージの説明に従ってください (ソースパッケージを参照)。
2.5. クラッシュレポート
WeeChat がクラッシュした場合、または WeeChat をクラッシュさせる操作を報告する場合、以下の手順に従ってください:
-
Compile with:
-
debug info (or install binary package with debug info),
-
address sanitizer (optional).
-
-
システムの core ファイルを有効化
-
gdb のインストール
Address sanitizer
You can additionally enable the address sanitizer, which causes WeeChat to crash immediately in case of problem:
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=-fsanitize=address -DCMAKE_CXX_FLAGS=-fsanitize=address -DCMAKE_EXE_LINKER_FLAGS=-fsanitize=address
注意
|
You should enable address sanitizer only if you’re trying to cause a crash, this is not recommended in production. |
Then once compiled and installed, you must run WeeChat like this:
ASAN_OPTIONS="detect_odr_violation=0 log_path=asan.log" weechat
In case of crash, the backtrace is in file asan.log
.
Core ファイル
core ファイルを有効化するには、weechat.startup.sys_rlimit オプションを使ってください:
/set weechat.startup.sys_rlimit "core:-1"
WeeChat バージョン 0.3.8 以下または WeeChat の実行前に core
ファイルを有効化したい場合には、ulimit
コマンドを使ってください。
Linux で bash シェルを使っている場合、以下の内容を ~/.bashrc
に追加してください:
ulimit -c unlimited
サイズを指定する場合は:
ulimit -c 200000
gdb でバックトレースを得る
オプションが有効の場合、WeeChat がクラッシュするとシステムは core または core.12345 ファイルを作ります (12345 はプロセス番号です)。このファイルは WeeChat を起動したディレクトリに作られます (これは WeeChat がインストールされているディレクトリでは ありません!)。
注記
|
On some systems like Archlinux, core dumps could be in another directory like
/var/lib/systemd/coredump and you must use the command coredumpctl to read it.For more information, see this wiki page ↗. |
例えば、weechat が /usr/bin/ にインストールされ、core ファイルが /home/user/ にある場合、以下のコマンドで gdb を起動してください:
gdb /usr/bin/weechat /home/user/core
gdb の中で bt full
コマンドを実行するとバックトレースが表示されます。以下のような出力が得られるはずです:
(gdb) set logging file /tmp/crash.txt (gdb) set logging on Copying output to /tmp/crash.txt. (gdb) bt full #0 0x00007f9dfb04a465 in raise () from /lib/libc.so.6 #1 0x00007f9dfb04b8e6 in abort () from /lib/libc.so.6 #2 0x0000000000437f66 in weechat_shutdown (return_code=1, crash=1) at /some_path/src/core/weechat.c:351 #3 <signal handler called> #4 0x000000000044cb24 in hook_process_timer_cb (arg_hook_process=0x254eb90, remaining_calls=<value optimized out>) at /some_path/src/core/core-hook.c:1364 hook_process = 0x254eb90 status = <value optimized out> #5 0x000000000044cc7d in hook_timer_exec () at /some_path/src/core/core-hook.c:1025 tv_time = {tv_sec = 1272693881, tv_usec = 212665} ptr_hook = 0x2811f40 next_hook = 0x0 #6 0x000000000041b5b0 in gui_main_loop () at /some_path/src/gui/curses/gui-curses-main.c:319 hook_fd_keyboard = 0x173b600 tv_timeout = {tv_sec = 0, tv_usec = 0} read_fds = {fds_bits = {0 <repeats 16 times>}} write_fds = {fds_bits = {0 <repeats 16 times>}} except_fds = {fds_bits = {0 <repeats 16 times>}} max_fd = <value optimized out>
このバックトレースを開発者に報告し、クラッシュを引き起こした動作を伝えてください。
ご協力ありがとうございます!
3. WeeChat の起動
WeeChat を起動させるには、以下コマンドを実行:
weechat
WeeChat の初回起動時にデフォルトのオプション設定を含む設定ファイルが ~/.config/weechat ディレクトリの中に作成されます (ファイルとディレクトリを参照してください)。
3.1. コマンドラインオプション
- -a, --no-connect
-
WeeChat の起動時にサーバへの自動接続を行わない
- -c, --colors
-
端末にデフォルト色を表示
- --daemon
-
WeeChat をデーモン化してバックグラウンド実行 (weechat-headless コマンドで起動した場合のみ有効)
- --stdout
-
Display log messages on standard output instead of writing them in log file (works only with the command weechat-headless, not compatible with option "--daemon").
- -d, --dir <path>
-
Force a single directory for all WeeChat files (directory is created if not found). Four directories can be given, separated by colons (in this order: config, data, cache, runtime). このオプションを指定しなかった場合、環境変数 WEECHAT_HOME を使います (空でない限り)。
- -t, --temp-dir
-
一時的に WeeChat のホームディレクトリを作成し、終了時にこれを削除します ("-d" オプションと同時使用不可)。
このとき WeeChat が作るディレクトリの名前は "weechat_temp_XXXXXX" ("XXXXXX" はランダム文字列) です。このディレクトリはリスト (環境変数 "TMPDIR"、"/tmp" (オペレーティングシステムの種類によって異なります)、環境変数 "HOME"、カレントディレクトリ) で最初の利用可能なディレクトリの中に作られます。
一時的なホームディレクトリは 0700 のパーミッションを設定されます (読み書き実行権限が所有者のみに与えられます)。 - -h, --help
-
ヘルプを表示
- -i, --build-info
-
Display build information and exit.
- -l, --license
-
WeeChat ライセンスを表示
- -p, --no-plugin
-
プラグインの自動ロードを止める
- -P, --plugins <plugins>
-
起動時にロードするプラグインを指定 (/help weechat.plugin.autoload を参照してください)。 このオプションを使う場合、weechat.plugin.autoload オプションは無視されます。
- -r, --run-command <command>
-
起動後にコマンドを実行; 複数のコマンドを実行するには各コマンドをセミコロンで区切って下さい。 このオプションは複数回使用できます。
- -s, --no-script
-
スクリプトの自動ロードを止める
- --upgrade
-
/upgrade -quit
コマンドで生成されるセッションファイルを使って WeeChat をアップグレード - -v, --version
-
WeeChat のバージョンを表示
- plugin:option
-
プラグインに渡すオプション
Some extra options are available for debug purposes only:
注意
|
Do NOT use any of these options in production! |
- --no-dlclose
-
Do not call the function dlclose after plugins are unloaded. This is useful with tools like Valgrind to display stack for unloaded plugins. プラグインがアンロードされた後に関数 dlclose を呼び出さない。これは Valgrind などのツールを使ってアンロードされたプラグインのスタックを表示する際に有用です。
- --no-gnutls
-
GnuTLS ライブラリの init および deinit 関数を呼び出さない。これは Valgrind および electric-fence などのツールを使って GnuTLS メモリエラーを避ける際に有用です。
- --no-gcrypt
-
Gcrypt ライブラリの init および deinit 関数を呼び出さない。これは Valgrind などのツールを使って Gcrypt メモリエラーを避ける際に有効です。
3.2. 環境変数
以下の環境変数が定義されていた場合、WeeChat はそれを利用します:
変数名 | 説明 |
---|---|
|
WeeChat ホームディレクトリ (ここには設定ファイル、ログ、スクリプトなどがあります) Same behavior as CMake option |
|
暗号化データを復号化するためのパスフレーズ |
|
プラグインをロードするための追加ディレクトリパス (設定したパス内の "plugins" ディレクトリからロードします) |
3.3. Colors support
WeeChat ではバーやチャットエリアにおけるテキスト表示に 32767 個の色ペアを利用できます (この機能を利用するには WeeChat が実行されている端末が 256 色表示に対応している必要があります)。
TERM 環境変数の値によって、WeeChat で利用できる色と色ペアに以下の制限があります:
$TERM | 色 | ペア |
---|---|---|
"rxvt-unicode", "xterm", … |
88 |
32767 |
"rxvt-256color", "xterm-256color", … |
256 |
32767 |
"screen" |
8 |
64 |
"screen-256color" |
256 |
32767 |
"tmux" |
8 |
64 |
"tmux-256color" |
256 |
32767 |
weechat --colors
を実行するか、/color
コマンドを WeeChat
の中で実行することで、色表示の制限を確認できます。
256 色を利用したい場合に推奨される TERM 環境変数の値は:
-
screen 内の場合: screen-256color
-
tmux 内の場合: screen-256color、tmux-256color
-
screen および tmux の外の場合: xterm-256color、rxvt-256color、putty-256color、…
注記
|
TERM 環境変数の値に上の値を設定するには、"ncurses-term" パッケージをインストールする必要があるかもしれません。 |
screen を使っている場合、~/.screenrc に以下の内容を追加してください:
term screen-256color
TERM 変数が間違った値に設定された状態で WeeChat が起動完了している場合は、以下の 2 つのコマンドを使って変数の値を変更してください:
/set env TERM screen-256color /upgrade
3.4. ファイルとディレクトリ
XDG directories
WeeChat uses XDG directories by default (according to the
XDG Base Directory Specification ↗).
A single home directory for all files can be forced by CMake option WEECHAT_HOME
,
the environment variable WEECHAT_HOME
or the command-line option -d
/ --dir
.
When a single WeeChat home directory is not forced, XDG directories are used and set like this:
Directory | Default value | Fallback value if $XDG_XXX is not defined |
---|---|---|
config |
|
|
data |
|
|
cache |
|
|
runtime |
|
Same as cache directory |
The configuration files are created with default values the first time you run WeeChat.
WeeChat directories
The WeeChat directories are:
Path (1) | 説明 |
---|---|
|
WeeChat configuration files: |
|
WeeChat data files: logs, scripts, scripts data, xfer files, etc. |
|
ログファイル (バッファごとに 1 つのファイル) |
|
Python スクリプト |
|
起動時に自動ロードされる Python スクリプト (2) |
|
Perl スクリプト |
|
起動時に自動ロードされる Perl スクリプト (2) |
|
Ruby スクリプト |
|
起動時に自動ロードされる Ruby スクリプト (2) |
|
Lua スクリプト |
|
起動時に自動ロードされる Lua スクリプト (2) |
|
Tcl スクリプト |
|
起動時に自動ロードされる Tcl スクリプト (2) |
|
Guile スクリプト |
|
起動時に自動ロードされる Guile スクリプト (2) |
|
JavaScript スクリプト |
|
起動時に自動ロードされる JavaScript スクリプト (2) |
|
PHP スクリプト |
|
起動時に自動ロードされる PHP スクリプト (2) |
|
WeeChat cache files: scripts cache. |
|
WeeChat runtime files: FIFO pipe, Relay UNIX sockets. |
注記
|
(1) XDG directories may be different according to your environment variables XDG_* .(2) このディレクトリには親ディレクトリ内にあるスクリプトへのシンボリックリンクのみが含まれることが多いです。 |
WeeChat files
WeeChat ホームディレクトリには以下のファイルが含まれます:
ファイル | 説明 | データ保護 |
---|---|---|
|
WeeChat の主要設定ファイル |
保護される場合もあります (例: 保存されたバッファレイアウトに含まれるチャンネルのリスト) |
|
機密データを含む設定ファイル |
保護されます、機密性の高いデータ: このファイルを誰かと共有してはいけません |
|
プラグイン設定ファイル |
保護される場合もあります、プラグインおよびスクリプトに依存します |
|
alias プラグイン用の設定ファイル |
保護される場合もあります、エイリアスに依存します |
|
buflist プラグイン用の設定ファイル |
保護されません |
|
charset プラグイン用の設定ファイル |
保護されません |
|
exec プラグイン用の設定ファイル |
保護されません |
|
fifo プラグイン用の設定ファイル |
保護されません |
|
fset プラグイン用の設定ファイル |
保護されません |
|
guile プラグイン用の設定ファイル |
保護されません |
|
irc プラグイン用の設定ファイル |
保護されます: サーバ、nickserv、チャンネルのパスワードを保存することが可能です (これらのデータが |
|
javascript プラグイン用の設定ファイル |
保護されません |
|
logger プラグイン用の設定ファイル |
保護されません |
|
lua プラグイン用の設定ファイル |
保護されません |
|
perl プラグイン用の設定ファイル |
保護されません |
|
php プラグイン用の設定ファイル |
保護されません |
|
python プラグイン用の設定ファイル |
保護されません |
|
relay プラグイン用の設定ファイル |
Yes: it can contain relay password and TOTP secret (if not stored in |
|
ruby プラグイン用の設定ファイル |
保護されません |
|
script プラグイン用の設定ファイル |
保護されません |
|
spell プラグイン用の設定ファイル |
保護されません |
|
tcl プラグイン用の設定ファイル |
保護されません |
|
trigger プラグイン用の設定ファイル |
保護される場合もあります、トリガに依存します |
|
typing プラグイン用の設定ファイル |
保護されません |
|
xfer プラグイン用の設定ファイル |
保護されません |
|
WeeChat ログファイル |
保護されません |
4. Upgrade
If a new stable version of WeeChat is released, this is time for you to switch to this version.
First of all, you must install the new version of WeeChat, either with your
package manager or by compiling yourself, so that the weechat
binary and all
required files are in the same paths.
This can be done while WeeChat is running.
4.1. Upgrade command
WeeChat can restart the new binary, in place, using the
/upgrade command: the buffer contents and non-TLS
connections are preserved.
The TLS connections are lost during upgrade and are restored automatically
after the upgrade (reload of TLS sessions is currently not possible
with GnuTLS).
The command can also be used if you have to restart the machine, for example to upgrade the kernel or to move your WeeChat to another machine:
/upgrade -quit
This saves the current state in *.upgrade
files. You can then either reboot
or move the whole WeeChat directories (config, data, cache) to another machine,
and restart WeeChat later with this command:
weechat --upgrade
4.2. Restart after upgrade
Upgrading notes
After an upgrade, it is strongly recommended to read the file UPGRADING.md ↗ which contains important information about breaking changes and some manual actions that could be required.
You must read the versions between your old (excluded) and your new version (included).
For example if you switch from version 4.0.0 to 4.3.0, you must read versions
4.0.1 to 4.3.0.
Configuration upgrade
WeeChat has an automatic upgrade of configuration files (*.conf
):
-
new options are silently added with default value
-
obsolete options are automatically discarded and WeeChat displays a warning with the value read from file.
Example of warning when an option has been removed:
=!= 警告: /home/user/.config/weechat/sec.conf, 行 15: セクション "crypt" の無効なオプション: passphrase_file = ""
That means the option sec.crypt.passphrase_file
has been removed, and you
had value set to empty string, which was the default value in the previous version
(in this case no manual action is required).
5. Interface
5.1. 画面レイアウト
WeeChat を起動した端末の例:
▼ "buflist" バー ▼ "title" バー ┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.libera │Welcome to #test, this is a test channel │ │ weechat│12:52:27 --> | Flashy (flashcode@weechat.org) has joined #test │@Flashy│ │2. #test│12:52:27 -- | Nicks #test: [@Flashy @joe +weebot peter] │@joe │ │3. #abc │12:52:27 -- | Channel #test: 4 nicks (2 ops, 1 voice, 1 normal) │+weebot│ │4. #def │12:52:27 -- | Channel created on Tue Jan 27 06:30:17 2009 │peter │ │5. #ghi │12:54:15 peter | hey! │ │ │ │12:55:01 @joe | hello │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 2:#test(+n){4}* M [H: 3:#abc(2,5), 5] │ │ │[@Flashy(i)] hi peter!█ │ └──────────────────────────────────────────────────────────────────────────────────────┘ ▲ "status" と "input" バー "nicklist" バー ▲
By default, the screen is divided up into the following areas:
-
チャットログが表示されるチャットエリア (画面の真ん中)、それぞれの行は:
-
時刻
-
プレフィックス ("|" の前)
-
メッセージ ("|" の後)
-
-
チャットエリアの周りにあるバー、デフォルトバーは:
-
バッファリスト (buflist) バー、左端
-
タイトル (title) バー、チャットエリアの上
-
状態 (status) バー、チャットエリアの下
-
入力 (input) バー、状態バーの下
-
ニックネームリスト (nicklist) バー、右端
-
バッファリスト (buflist) バーは以下の初期要素を持っています:
要素 | 例 | 説明 |
---|---|---|
buflist |
|
バッファ一覧 |
状態 (title) バーは以下の初期要素を持っています:
要素 | 例 | 説明 |
---|---|---|
buffer_title |
|
バッファタイトル |
状態 (status) バーは以下の初期要素を持っています:
要素 | 例 | 説明 |
---|---|---|
time |
|
時刻 |
buffer_last_number |
|
Number of the latest buffer (can be different from |
buffer_plugin |
|
現在のバッファのプラグイン (irc プラグインではバッファで利用されている IRC サーバ名を追加できます) |
buffer_number |
|
現在のバッファの番号 |
buffer_name |
|
現在のバッファの名前 |
buffer_modes |
|
IRC チャンネルモード |
buffer_nicklist_count |
|
Number of nicks displayed in nicklist. |
buffer_zoom |
! |
|
buffer_filter |
|
フィルタ表示: |
mouse_status |
|
Mouse status (empty if mouse is disabled), see command /mouse and toggle keys. |
scroll |
|
スクロール表示、最後の行が表示されてから追加された行数を含む。 |
lag |
|
遅延秒表示 (遅延が短い場合は非表示) |
hotlist |
|
変化のあったバッファのリスト (未読メッセージ) (例では、#abc に 2 個のハイライトと 5 個の未読メッセージ、5 番目のバッファに 1 個の未読メッセージがあることを意味します。) |
typing |
|
Typing notification, see typing notifications. |
completion |
|
補完候補の単語リスト、各単語に対して適応される補完候補の数を含む。 |
入力 (input) バーは以下の初期要素を持っています:
要素 | 例 | 説明 |
---|---|---|
input_prompt |
|
入力プロンプト、irc の場合: ニックネームとモード (libera では "+i" モードは不可視状態を意味します) |
away |
|
離席状態表示 |
input_search |
|
Search indicator (see below). |
input_paste |
|
行をペーストする場合にユーザへ行われる質問 |
input_text |
|
入力テキスト |
There are two search modes:
-
search in lines, for example
[Search lines (~ str,msg)]
, with the following info:-
~
: 大文字小文字を区別しない -
==
: 大文字小文字を区別する -
str
: 検索文字列 -
regex
: 検索正規表現 -
msg
: メッセージ部分から検索 -
pre
: プレフィックス部分から検索 -
pre\|msg
: プレフィックス部分とメッセージ部分から検索
-
-
search in commands history, for example
[Search command (~ str,local)]
, with the following info:-
~
: 大文字小文字を区別しない -
==
: 大文字小文字を区別する -
str
: 検索文字列 -
regex
: 検索正規表現 -
local
: search in buffer local history -
global
: search in global history.
-
ニックネームリスト (nicklist) バーは以下の初期要素を持っています:
要素 | 例 | 説明 |
---|---|---|
buffer_nicklist |
|
現在のバッファのニックネーム一覧 |
その他の利用可能な要素 (初期状態のバーはこれらの要素を持ちません):
要素 | 例 | 説明 |
---|---|---|
buffer_count |
|
開いているバッファの総数 |
buffer_nicklist_count_all |
|
Number of visible groups and nicks in nicklist. |
buffer_nicklist_count_groups |
|
Number of visible groups in nicklist. |
buffer_short_name |
|
現在のバッファの短い名前 |
buflist2 |
|
List of buffers, second bar item (see option buflist.look.use_items). |
buflist3 |
|
List of buffers, third bar item (see option buflist.look.use_items). |
buflist4 |
|
List of buffers, fourth bar item (see option buflist.look.use_items). |
buflist5 |
|
List of buffers, fifth bar item (see option buflist.look.use_items). |
fset |
|
Help on currently selected option on fset buffer. |
irc_channel |
|
現在の IRC チャンネル名 |
irc_host |
|
Current IRC host. |
irc_nick |
|
Current IRC nick. |
irc_nick_host |
|
Current IRC nick and host. |
irc_nick_modes |
|
自分のニックネームに対する IRC モード |
irc_nick_prefix |
|
IRC nick prefix on channel. |
spacer |
Special item used to align text in bars, see Spacer item. |
|
spell_dict |
|
現在のバッファにおけるスペリング辞書 |
spell_suggest |
|
カーソル下の単語に対するスペリング候補 (スペルが間違っている場合) |
tls_version |
|
TLS version in use for current IRC server. |
window_number |
|
現在のウィンドウ番号 |
5.2. コマンドライン
WeeChat コマンドライン (ウィンドウの一番下にあります) はコマンドの実行やバッファにテキストを送信するために利用します。
文法
コマンドは "/" 文字で始まり、コマンドの名前を続けます。例えば、すべてのオプションを表示するには:
/set
"/" が最初に無い場合、そのテキストはバッファに送信されます。例えば、hello というテキストをバッファに送信するには:
hello
"/" 文字から始まるテキストを送信したい場合、2 重に "/" をつけます。例えば、/set
というテキストを現在のバッファに送信するには:
//set
色コード
IRC 等のプラグインでは、以下の色コードと属性を利用できます (Ctrl+c の後に、オプションとともに以下のキーを押してください):
キー | 説明 |
---|---|
Ctrl+c, b |
テキストを太字に |
Ctrl+c, c, xx |
テキスト表示色を |
Ctrl+c, c, xx, ,, yy |
テキスト表示色を |
Ctrl+c, d, xxxxxx |
Text color |
Ctrl+c, d, xxxxxx, ,, yyyyyy |
Text color |
Ctrl+c, i |
テキストをイタリック体に |
Ctrl+c, o |
テキスト表示色と属性をリセット |
Ctrl+c, v |
テキストを反転 (テキスト表示色と背景色の入れ替え) |
Ctrl+c, _ |
テキストに下線を引く |
注記
|
The same code (without number for Ctrl+c, c and Ctrl+c, d) can be used to stop the attribute. |
Ctrl+c, c 用の色コード:
IRC ? | WeeChat ? |
---|---|
|
white |
|
black |
|
blue |
|
green |
|
lightred |
|
red |
|
magenta |
|
brown |
|
yellow |
|
lightgreen |
|
cyan |
|
lightcyan |
|
lightblue |
|
lightmagenta |
|
darkgray |
|
gray |
|
52 |
|
94 |
|
100 |
|
58 |
|
22 |
|
29 |
|
23 |
|
24 |
|
17 |
|
54 |
|
53 |
|
89 |
|
88 |
|
130 |
|
142 |
|
64 |
|
28 |
|
35 |
|
30 |
|
25 |
|
18 |
|
91 |
|
90 |
|
125 |
|
124 |
|
166 |
|
184 |
|
106 |
|
34 |
|
49 |
|
37 |
|
33 |
|
19 |
|
129 |
|
127 |
|
161 |
|
196 |
|
208 |
|
226 |
|
154 |
|
46 |
|
86 |
|
51 |
|
75 |
|
21 |
|
171 |
|
201 |
|
198 |
|
203 |
|
215 |
|
227 |
|
191 |
|
83 |
|
122 |
|
87 |
|
111 |
|
63 |
|
177 |
|
207 |
|
205 |
|
217 |
|
223 |
|
229 |
|
193 |
|
157 |
|
158 |
|
159 |
|
153 |
|
147 |
|
183 |
|
219 |
|
212 |
|
16 |
|
233 |
|
235 |
|
237 |
|
239 |
|
241 |
|
244 |
|
247 |
|
250 |
|
254 |
|
231 |
|
default |
注記
|
端末で利用可能なすべての色を表示するには、WeeChat で /color を実行した後
Alt+c を入力するか、端末で以下のコマンドを実行してください: weechat --colors 。
|
Example: display of "hello Alice!" with "hello" in light blue bold and "Alice" in light red underlined:
^Cc12^Cbhello ^Cb^Cc04^C_Alice^C_^Cc!
Keys:
Ctrl+c c 1 2 Ctrl+c b
h e l l o Space
Ctrl+c b Ctrl+c c 0 4 Ctrl+c _
A l i c e
Ctrl+c _ Ctrl+c c
!
注記
|
irc プラグインでは、irc.color.mirc_remap を使ってこれらの色を別の色に対応付けることができます。 |
5.3. バッファとウィンドウ
バッファ は番号、名前、表示された行 (とその他の情報) で構成されています。
バッファの例:
-
コアバッファ (起動時に WeeChat が作成、閉じることはできません)
-
irc サーバ (サーバからのメッセージを表示)
-
irc チャンネル
-
irc プライベートメッセージ
window はバッファを表示する画面エリアのことです。画面を複数のウィンドウに分割することができます (examples below, see the /window command for details).
それぞれのウィンドウは 1 つのバッファを表示します。バッファは隠したり (ウィンドウに表示しない)、複数のウィンドウに表示することできます。
Screen layouts and the association between windows and buffers can be saved and restored.
Examples
水平方向分割の例 (/window splith
):
▼ ウィンドウ #2 (バッファ #4) ┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.libera │Welcome to #def │ │ weechat│12:55:12 Max | hi │@Flashy│ │2. #test│12:55:20 @Flashy | hi Max! │Max │ │3. #abc │ │ │ │4. #def │ │ │ │5. #ghi │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 4:#def(+n){2} │ │ │[@Flashy] │ │ │────────────────────────────────────────────────────────────────────────────│ │ │Welcome to #abc │ │ │12:54:15 peter | hey! │@Flashy│ │ │12:55:01 @joe | hello │@joe │ │ │ │+weebot│ │ │ │peter │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 3:#abc(+n){4} │ │ │[@Flashy] hi peter!█ │ └──────────────────────────────────────────────────────────────────────────────────────┘ ▲ ウィンドウ #1 (バッファ #3)
垂直方向分割の例 (/window splitv
):
┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.libera │Welcome to #abc │Welcome to #def │ │ weechat│12:54:15 peter | hey! │@Flashy│12:55:12 Max | hi │@Flashy│ │2. #test│12:55:01 @joe | hello │@joe │12:55:20 @Flashy | hi Max! │Max │ │3. #abc │ │+weebot│ │ │ │4. #def │ │peter │ │ │ │5. #ghi │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 3:#abc(+n) │[12:55] [5] [irc/libera] 4:#def(+n) │ │ │[@Flashy] hi peter!█ │[@Flashy] │ └──────────────────────────────────────────────────────────────────────────────────────┘ ▲ ウィンドウ #1 (バッファ #3) ▲ ウィンドウ #2 (バッファ #4)
垂直方向 + 水平方向分割の例:
▼ ウィンドウ #3 (バッファ #5) ┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.libera │Welcome to #abc │Welcome to #ghi │ │ weechat│12:54:15 peter | hey! │@Flashy│12:55:42 @Flashy | hi │@Flashy│ │2. #test│12:55:01 @joe | hello │@joe │12:55:56 alex | hi Flashy │alex │ │3. #abc │ │+weebot│ │ │ │4. #def │ │peter │ │ │ │5. #ghi │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 5:#ghi(+n) │ │ │ │ │[@Flashy] │ │ │ │ │──────────────────────────────────────│ │ │ │ │Welcome to #def │ │ │ │ │12:55:12 Max | hi │@Flashy│ │ │ │ │12:55:20 @Flashy | hi Max! │Max │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 3:#abc(+n) │[12:55] [5] [irc/libera] 4:#def(+n) │ │ │[@Flashy] hi peter!█ │[@Flashy] │ └──────────────────────────────────────────────────────────────────────────────────────┘ ▲ ウィンドウ #1 (バッファ #3) ▲ ウィンドウ #2 (バッファ #4)
最小限表示
「最小限表示」と呼ばれる特殊な表示状態を使うことで、(マウスを使って) 長い URL を簡単にクリックしたり、テキストを簡単に選択できるようになっています。
最小限表示は以下の機能を持っています:
-
現在のバッファの内容だけを表示: 分割ウィンドウやバー等 (タイトル、ニックネームリスト、状態、入力、…) も表示しない
-
WeeChat マウスサポートを無効化 (有効化されていた場合): 端末でやるのと同じように URL をクリックしたりテキストを選択できます
-
ncurses を使わない、このため URL を行の最後で分断されることがなくなります。
最小限表示を有効化するデフォルトキーは Alt+l (L
) で、終了するには同じキーを押してください
(また、デフォルトでは入力が変更された場合に最小限表示を終了します、weechat.look.bare_display_exit_on_input
オプションを参照)。
weechat.look.bare_display_time_format オプションを使えば、時間書式を変更することも可能です。
/window コマンドを使えば、指定秒後に最小限表示を有効化することができます。
WeeChat が以下のような表示状態の場合:
┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.libera │Welcome to #abc │ │ weechat│12:52:27 --> | Flashy (flashcode@weechat.org) has joined #abc │@Flashy│ │2. #test│12:52:27 -- | Nicks #abc: [@Flashy @joe +weebot peter] │@joe │ │3. #abc │12:52:27 -- | Channel #abc: 4 nicks (2 ops, 1 voice, 1 normal) │+weebot│ │4. #def │12:52:27 -- | Channel created on Tue Jan 27 06:30:17 2009 │peter │ │5. #ghi │12:54:15 peter | hey! │ │ │ │12:55:01 @joe | peter: hook_process: https://weechat.org/files/doc │ │ │ │ | /weechat/devel/weechat_plugin_api.en.html#_weechat │ │ │ │ | _hook_process │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │[12:55] [5] [irc/libera] 3:#abc(+n){4} │ │ │[@Flashy(i)] hi peter!█ │ └──────────────────────────────────────────────────────────────────────────────────────┘
最小限表示では以下の様に表示されます:
┌──────────────────────────────────────────────────────────────────────────────────────┐ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │12:52 --> Flashy (flashcode@weechat.org) has joined #abc │ │12:52 -- Nicks #abc: [@Flashy @joe +weebot peter] │ │12:52 -- Channel #abc: 4 nicks (2 ops, 1 voice, 1 normal) │ │12:52 -- Channel created on Tue Jan 27 06:30:17 2009 │ │12:54 <peter> hey! │ │12:55 <@joe> peter: hook_process: https://weechat.org/files/doc/weechat/devel/weechat_│ │plugin_api.en.html#_weechat_hook_process │ └──────────────────────────────────────────────────────────────────────────────────────┘
このため、端末で問題なく joe さんからの URL をクリックできます (もちろん、使用中の端末で URL をクリックできるように設定されていなければいけませんが)。
5.4. Buffers
行の書式
書式付きバッファに表示される各行は以下のフィールドから構成されます:
フィールド | 表示状態 | 説明 |
---|---|---|
日付/時間 (メッセージ) |
表示 |
メッセージの日付および時間 (おそらく過去)。 |
日付/時間 (表示) |
非表示 |
WeeChat がメッセージを表示した時間。 |
プレフィックス |
表示 |
メッセージのプレフィックス、通常ニックネーム。 |
メッセージ |
表示 |
メッセージ自体。 |
表示状態 |
非表示 |
ブール値: 行が表示された場合には真、行が /filter コマンドでフィルタされた場合には偽。 |
ハイライト |
非表示 |
ブール値: 行がハイライトされている場合には真、それ以外の場合には偽。 |
タグ |
|
行に関連付けられたタグ (行のタグ参照)。 |
外観オプション(weechat.look.*) と色オプション (weechat.color.chat_*) を使えば、行の表示をカスタマイズすることが可能です。
行のタグ
WeeChat は様々な目的で各行にタグを付けます:
-
ハイライト
-
通知レベル
-
ログ記録
-
/filter コマンドの使用
/debug tags
コマンドでタグを表示することが可能です (タグを非表示にする場合も同じコマンドを使います)。
通常使用するタグ (一部抜粋したリスト):
タグ | 説明 |
---|---|
|
フィルタできない行 |
|
ハイライトできない行 |
|
ログファイルに書き込まれない行 |
|
行に対するログレベル (see the /logger command). |
|
The line must not be added to hotlist. (1) |
|
The line is a user message. (1) |
|
The line is a private message. (1) |
|
The line is a message with highlight. (1) |
|
自分のメッセージ |
|
ニックネーム "xxx" からのメッセージ |
|
プレフィックスを色 "ccc" のニックネームにします |
|
メッセージ中のユーザ名とホスト |
|
IRC メッセージ "xxx" (コマンドまたは 3 桁の番号) |
|
IRC 番号メッセージ |
|
IRC からのエラー |
|
あるニックネームからのアクション ( |
|
CTCP メッセージ |
|
CTCP メッセージに対する返信 |
|
"smart filter" でフィルタリング可能な IRC メッセージ |
|
離席状態のメッセージ |
注記
|
(1) When no tag "notify_xxx" is present, the default level is "low". If a tag "notify_xxx" is present, the real notify level can be different, for example if a max hotlist level is used for a nick, the notify level can be lower than the value in the tag. |
Local variables
Local variables can be defined in all buffers.
A local variable has:
-
a name (string)
-
a value (string, can be empty).
Local variables can be set by WeeChat, plugins, scripts, or manually on the command line in the buffer;
For example to add the local variable "completion_default_template":
/buffer setvar completion_default_template %(my_completion)
To list local variables in the current buffer:
/buffer listvar
To remove the local variable "completion_default_template":
/buffer delvar completion_default_template
By default WeeChat and its default plugins interpret these variables:
Name | Value | Description |
---|---|---|
|
any string |
Away message on the server, set by irc plugin. |
|
any string |
Channel name, set by irc/xfer plugins and debug buffer of relay/trigger plugins. |
|
any string |
Charset modifier for the server buffer, set by irc plugin. |
|
any string |
Default completion template for the buffer, overriding the option
|
|
any string |
Filter defined on some buffers like |
|
any string |
Self host (if known), set by irc plugin. |
|
any string |
Lag on the server, set by irc plugin. |
|
any string |
Buffer name (be careful, this is not the full name and this name is not enough to identify or search a buffer). |
|
any string |
Self nick, set by irc and xfer plugins. |
|
|
If set, the logger plugin does not log anything for the buffer. |
|
any string |
Name of plugin which created the buffer ( |
|
any string |
Close callback defined by a script for a buffer. |
|
any string |
Data for close callback defined by a script for a buffer. |
|
any string |
Input callback defined by a script for a buffer. |
|
any string |
Data for input callback defined by a script for a buffer. |
|
any string |
Name of the script which created the buffer. |
|
any string |
Server name, set by irc plugin and debug buffer of relay/trigger plugins. |
|
any string |
Misspelled word and suggestions (format: "misspelled:suggestions"), set by spell plugin. |
|
any string |
Trigger filter, set by trigger plugin. |
|
any string, for example:
|
Type of buffer, set by WeeChat and many plugins. |
注記
|
External plugins and scripts can define and use other local variables. |
5.5. List of buffers
Buflist プラグインを使うことで、"buflist" と呼ばれるバー要素の中にバッファリストを表示させることが可能になります
(four other bar items "buflist2", "buflist3", "buflist4" and "buflist5" are
available as well)。
プラグインは開始時にバー要素 "buflist" を持つデフォルトバー "buflist" を作成します。
コマンド
-
buflist
: ?????????????????
/buflist enable|disable|toggle bar refresh [<item>[,<item>...]] enable: enable buflist disable: disable buflist toggle: toggle buflist bar: add the "buflist" bar refresh: force the refresh of some bar items (if no item is given, all bar items used are refreshed, according to option buflist.look.use_items) The lines with buffers are displayed using string evaluation (see /help eval for the format), with these options: - buflist.look.display_conditions: conditions to display a buffer in the list - buflist.format.buffer: format for a buffer which is not current buffer - buflist.format.buffer_current: format for the current buffer The following variables can be used in these options: - bar item data (see hdata "bar_item" in API doc for a complete list), for example: - ${bar_item.name} - window data, where the bar item is displayed (there's no window in root bars, see hdata "window" in API doc for a complete list), for example: - ${window.number} - ${window.buffer.full_name} - buffer data (see hdata "buffer" in API doc for a complete list), for example: - ${buffer.number} - ${buffer.name} - ${buffer.full_name} - ${buffer.short_name} - ${buffer.nicklist_nicks_count} - irc_server: IRC server data, defined only on an IRC buffer (see hdata "irc_server" in API doc) - irc_channel: IRC channel data, defined only on an IRC channel buffer (see hdata "irc_channel" in API doc) - extra variables added by buflist for convenience: - ${format_buffer}: the evaluated value of option buflist.format.buffer; this can be used in option buflist.format.buffer_current to just change the background color for example - ${current_buffer}: a boolean ("0" or "1"), "1" if this is the current buffer; it can be used in a condition: ${if:${current_buffer}?...:...} - ${merged}: a boolean ("0" or "1"), "1" if the buffer is merged with at least another buffer; it can be used in a condition: ${if:${merged}?...:...} - ${format_number}: indented number with separator (evaluation of option buflist.format.number) - ${number}: indented number, for example " 1" if there are between 10 and 99 buffers; for merged buffers, this variable is set with number for the first buffer and spaces for the next buffers with same number - ${number2}: indented number, for example " 1" if there are between 10 and 99 buffers - ${number_displayed}: "1" if the number is displayed, otherwise "0" - ${indent}: indentation for name (channel, private and list buffers are indented) (evaluation of option buflist.format.indent) - ${format_nick_prefix}: colored nick prefix for a channel (evaluation of option buflist.format.nick_prefix) - ${color_nick_prefix}: color of nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled) - ${nick_prefix}: nick prefix for a channel (set only if the option buflist.look.nick_prefix is enabled) - ${format_name}: formatted name (evaluation of option buflist.format.name) - ${name}: the short name (if set), with a fallback on the name - ${color_hotlist}: the color depending on the highest hotlist level for the buffer (evaluation of option buflist.format.hotlist_xxx where xxx is the level) - ${format_hotlist}: the formatted hotlist (evaluation of option buflist.format.hotlist) - ${hotlist}: the raw hotlist - ${hotlist_priority}: "none", "low", "message", "private" or "highlight" - ${hotlist_priority_number}: -1 = none, 0 = low, 1 = message, 2 = private, 3 = highlight - ${format_lag}: the lag for an IRC server buffer, empty if there's no lag (evaluation of option buflist.format.lag) - ${format_tls_version}: indicator of TLS version for a server buffer, empty for channels (evaluation of option buflist.format.tls_version)
オプション
buflist.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
バッファリストの表示書式 |
|
|
外観 |
オプション:
-
-
??: format of each line with a buffer (note: content is evaluated, see /help buflist); example: standard format for bar item "buflist" and only the buffer number between square brackets for other bar items ("buflist2" to "buflist5"): "${if:${bar_item.name}==buflist?${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}:[${number}]}"
-
???: ???
-
?: ??????
-
??????:
"${format_number}${indent}${format_nick_prefix}${color_hotlist}${format_name}"
-
-
-
??: ???????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:,17}${format_buffer}"
-
-
-
??: ??????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
" ${color:green}(${hotlist}${color:green})"
-
-
buflist.format.hotlist_highlight
-
??: ?????????? "highlight" ?????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:magenta}"
-
-
-
??: ?????????? "low" ?????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:white}"
-
-
buflist.format.hotlist_message
-
??: ?????????? "message" ?????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:brown}"
-
-
-
??: ?????????????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:default}"
-
-
buflist.format.hotlist_private
-
??: ?????????? "private" ?????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:green}"
-
-
buflist.format.hotlist_separator
-
??: ???????????????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:default},"
-
-
-
??: string displayed to indent channel, private and list buffers (note: content is evaluated, see /help buflist)
-
???: ???
-
?: ??????
-
??????:
" "
-
-
-
??: IRC ????????????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
" ${color:green}[${color:brown}${lag}${color:green}]"
-
-
-
??: ???????? (??: ?????????/help buflist ?????????)
-
???: ???
-
?: ??????
-
??????:
"${name}"
-
-
-
??: ???????????????????????? (??: ?????????/help buflist ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color_nick_prefix}${nick_prefix}"
-
-
-
??: ????????????${number} ???????????? (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"${color:green}${number}${if:${number_displayed}?.: }"
-
-
-
??: format for TLS version on an IRC server buffer (note: content is evaluated, see /help buflist)
-
???: ???
-
?: ??????
-
??????:
" ${color:default}(${if:${tls_version}==TLS1.3?${color:green}:${if:${tls_version}==TLS1.2?${color:yellow}:${color:red}}}${translate:${tls_version}}${color:default})"
-
-
-
??: add newline between the buffers displayed, so each buffer is displayed on a separate line (recommended); if disabled, newlines must be manually added in the formats with "${\n}", and the mouse actions are not possible anymore
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????????????????? (??????????? "vertical" ?????????????????????); ?????????????????????????????? (-1 = ???????????); ????? 50 ?????????????????????????????????????????0 ??????????????100 ???????????????????
-
???: ??
-
?: -1 .. 100
-
??????:
50
-
-
buflist.look.display_conditions
-
??: ????????? (??: ?????????/help eval ?????????); ?????????????????????????????????????: "${buffer.hidden}==0 && ((${type}!=server && ${buffer.full_name}!=core.weechat) || ${buffer.active}==1)"
-
???: ???
-
?: ??????
-
??????:
"${buffer.hidden}==0"
-
-
-
??: enable buflist; it is recommended to use this option instead of just hiding the bar because it also removes some internal hooks that are not needed anymore when the bar is hidden; you can also use the command "/buflist toggle" or use the default key alt+shift+b
-
???: ???
-
?: on, off
-
??????:
on
-
-
buflist.look.mouse_jump_visited_buffer
-
??: ??????????????????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
buflist.look.mouse_move_buffer
-
??: ??????????????????? (???? & ????) ???????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????????????????????????????????????????? ${nick_prefix} ??????????????????????????????????????????????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
buflist.look.nick_prefix_empty
-
??: when the nick prefix is enabled, display a space instead if there is no nick prefix on the buffer (only for channel, private and list buffers)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????????; ??????????????????????????????????????????
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: comma-separated list of fields to sort buffers; each field is a hdata variable of buffer ("var"), a hdata variable of IRC server ("irc_server.var") or a hdata variable of IRC channel ("irc_channel.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case-insensitive comparison; examples: "-~short_name" for case-insensitive and reverse sort on buffer short name, "-hotlist.priority,hotlist.time,hotlist.time_usec,number,-active" for sort like the hotlist then by buffer number for buffers without activity (note: the content is evaluated, before being split into fields, but at that time "bar_item" is the only variable that can be used, to distinguish between different buflist items, for example "${bar_item.name}")
-
???: ???
-
?: ??????
-
??????:
"number,-active"
-
-
-
??: number of buflist bar items that can be used; the item names are: "buflist", "buflist2", "buflist3", "buflist4" and "buflist5"; be careful, using more than one bar item slows down the display of buffers list
-
???: ??
-
?: 1 .. 5
-
??????:
1
-
5.6. Cursor mode
The cursor mode allows you to move freely the cursor anywhere on screen, in chat
area and bars, and lets you perform actions at the given position.
You can enter in cursor mode either with the command /cursor
or with a mouse
middle click (mouse must have been enabled with key Alt+m or command
/mouse enable
).
Typical use is to quote messages (chat area) or interact with nicks (nicklist bar).
See command /cursor and key bindings in cursor context for the list of actions you can perform in this mode.
6. Key bindings
WeeChat provides a lot of default key bindings, listed in the following chapters.
They can be changed and new ones can be added with the /key command.
6.1. コマンドライン用のキー
Cursor movement
キー | 説明 | コマンド |
---|---|---|
← |
コマンドラインで前の文字に移動 |
|
→ |
コマンドラインで次の文字に移動 |
|
Shift+↑ |
Go to previous line. |
|
Shift+↓ |
Go to next line. |
|
Ctrl+← |
コマンドラインで前の単語に移動 |
|
Ctrl+→ |
コマンドラインで次の単語に移動 |
|
Home |
Go to the beginning of current line. |
|
Shift+Home |
Go to the beginning of command line. |
|
End |
Go to the end of current line. |
|
Shift+End |
Go to the end of command line. |
|
Editing
キー | 説明 | コマンド |
---|---|---|
Del |
コマンドラインで次の文字を削除 |
|
Backspace |
コマンドラインで前の文字を削除 |
|
Ctrl+k |
Delete from cursor until end of current line (deleted string is copied to the internal clipboard). |
|
Alt+Ctrl+k |
Delete from cursor until end of command line (deleted string is copied to the internal clipboard). |
|
Ctrl+t |
文字の入れ替え |
|
Ctrl+u |
Delete from cursor until beginning of current line (deleted string is copied to the internal clipboard). |
|
Alt+Ctrl+u |
Delete from cursor until beginning of command line (deleted string is copied to the internal clipboard). |
|
Alt+Backspace |
コマンドラインで前の単語を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) |
|
Ctrl+w |
Delete previous word of command line until whitespace (deleted string is copied to the internal clipboard). |
|
Ctrl+y |
WeeChat 専用の内部クリップボードの内容をペースト |
|
Ctrl+_ |
コマンドラインの最後の動作をやり直す |
|
Alt+_ |
コマンドラインの最後の動作を取り消す |
|
Tab |
コマンドやニックネームを補完 (再度 Tab することで次の補完候補を表示) |
|
Shift+Tab |
補完候補が無い場合: 部分補完を行う、補完候補が有る場合: 前の補完候補を表示 |
|
Enter |
コマンドを実行するか、メッセージを送信する (検索モードの場合: 検索の終了) |
|
Alt+Enter |
Insert a newline. |
|
Alt+d |
コマンドラインで次の単語を削除 (削除された文字列は WeeChat 専用の内部クリップボードに保存) |
|
Alt+k |
キー入力を奪って、コマンドラインにコード (キーが割り当てられていればコマンド) を入力 |
|
Alt+r |
Delete current line. |
|
Alt+R |
Delete entire command line. |
|
Color codes
キー | 説明 | コマンド |
---|---|---|
Ctrl+c, b |
テキストを太字化するコードの挿入 |
|
Ctrl+c, c |
テキストに色をつけるコードの挿入 |
|
Ctrl+c, d |
Insert code for colored text (RGB color, as hexadecimal). |
|
Ctrl+c, i |
テキストをイタリック体にするコードの挿入 |
|
Ctrl+c, o |
テキスト色のリセットを行うコードの挿入 |
|
Ctrl+c, v |
テキスト色の反転を行うコードの挿入 |
|
Ctrl+c, _ |
テキストに下線を引くコードの挿入 |
|
Command history
キー | 説明 | コマンド |
---|---|---|
↑ |
前のコマンド/メッセージを呼び出す (検索モードの場合: 上方向に検索) |
|
↓ |
次のコマンド/メッセージを呼び出す (検索モードの場合: 下方向に検索) |
|
Ctrl+↑ |
グローバル履歴から前のコマンド/メッセージを呼び出す (すべてのバッファに対して共通の履歴) |
|
Ctrl+↓ |
グローバル履歴から次のコマンド/メッセージを呼び出す (すべてのバッファに対して共通の履歴) |
|
6.2. Buffers
キー | 説明 | コマンド |
---|---|---|
Ctrl+r |
Search for text in commands history (see keys for context "histsearch"). |
|
Ctrl+s |
Search for text in buffer lines (see keys for context "search"). |
|
Ctrl+x |
Switch current buffer if buffers are merged with same number, for example switch to another IRC server buffer. |
|
Alt+x |
マージされたバッファに再ズーム (Alt+x: 全てのマージされたバッファを表示) |
|
PgUp |
バッファ履歴を 1 ページ分上方向にスクロール |
|
PgDn |
バッファ履歴を 1 ページ分下方向にスクロール |
|
Alt+PgUp |
バッファ履歴を数行分上方向にスクロール |
|
Alt+PgDn |
バッファ履歴を数行分下方向にスクロール |
|
Alt+Home |
バッファ履歴を最初までスクロール |
|
Alt+End |
バッファ履歴を最後までスクロール |
|
Alt+← |
前のバッファに移動 |
|
Alt+→ |
後のバッファに移動 |
|
Alt+j, Alt+f |
最初のバッファに移動 |
|
Alt+j, Alt+l ( |
最後のバッファに移動 |
|
Alt+j, Alt+r |
IRC 生バッファに移動 |
|
Alt+j, Alt+s |
IRC サーババッファに移動 |
|
Alt+0…9 |
番号のバッファに移動 (0 = 10) |
|
Alt+j, 01…99 |
番号のバッファに移動 |
|
Alt+n |
次のハイライトまでスクロール |
|
Alt+p |
前のハイライトまでスクロール |
|
Alt+u |
バッファを最初の未読行までスクロール |
|
Alt+Shift+U |
すべてのバッファに未読マークをセット |
|
Alt+< |
バッファ訪問履歴で前のバッファに移動 |
|
Alt+> |
バッファ訪問履歴で次のバッファに移動 |
|
Alt+/ |
最後に表示したバッファに移動 (バッファ移動前に表示していたウィンドウ) |
|
6.3. Windows
キー | 説明 | コマンド |
---|---|---|
Ctrl+l ( |
全ウィンドウを再描画 |
|
Alt+l ( |
最小限表示の有効無効を切り替え |
|
F7 |
ウィンドウを前に移動 |
|
F8 |
ウィンドウを後に移動 |
|
Alt+w, Alt+↑ |
上のウィンドウに移動 |
|
Alt+w, Alt+↓ |
下のウィンドウに移動 |
|
Alt+w, Alt+← |
左のウィンドウに移動 |
|
Alt+w, Alt+→ |
右のウィンドウに移動 |
|
Alt+w, Alt+b |
すべてのウィンドウサイズを均等に |
|
Alt+w, Alt+s |
2 つのウィンドウを入れ替え |
|
Alt+z |
現在のウィンドウを最大化 (再度 Alt+z することで: 最初のウィンドウ状態に戻す、最大化前の状態) |
|
6.4. Bars
キー | 説明 | コマンド |
---|---|---|
F1 |
バッファリストを上方に 1 ページスクロール |
|
F2 |
バッファリストを下方に 1 ページスクロール |
|
Alt+F1 |
バッファリストを上端までスクロール |
|
Alt+F2 |
バッファリストを下端までスクロール |
|
F9 |
バッファタイトルを左方向にスクロール |
|
F10 |
バッファタイトルを右方向にスクロール |
|
F11 |
ニックネームリストを上方向にスクロール |
|
F12 |
ニックネームリストを下方向にスクロール |
|
Alt+F11 |
ニックネームリストを一番上にスクロール |
|
Alt+F12 |
ニックネームリストを一番下にスクロール |
|
Alt+Shift+B |
Toggle buflist. |
|
Alt+Shift+N |
Toggle nicklist bar. |
|
6.5. Hotlist
キー | 説明 | コマンド |
---|---|---|
Alt+a |
変更のあった次のバッファに移動 (優先順位: ハイライト、新規メッセージ、その他) |
|
Alt+h, Alt+c |
Clear hotlist (activity notification on buffers). |
|
Alt+h, Alt+m |
Remove current buffer from hotlist. |
|
Alt+h, Alt+r |
Restore latest hotlist removed in the current buffer. |
|
Alt+h, Alt+Shift+R |
Restore latest hotlist removed in all buffers. |
|
6.6. Toggle keys
キー | 説明 | コマンド |
---|---|---|
Alt+m |
マウスの有効無効を切り替え |
|
Alt+s |
スペルチェッカの有効無効を切り替え |
|
Alt+= |
フィルタの有効無効を切り替え |
|
Alt+- |
現在のバッファのフィルタの有効無効を切り替え |
|
Alt+Ctrl+l ( |
Toggle between remote and local commands on a remote buffer (relay "api"). |
|
6.7. Search context
These keys are used in context "search" (when Ctrl+s is pressed to search text in buffer lines).
キー | 説明 | コマンド |
---|---|---|
Ctrl+x |
検索タイプを切り替え: 文字列 (デフォルト)、正規表現 |
|
Alt+c |
大文字小文字を区別して検索 |
|
Tab |
検索範囲: メッセージ (デフォルト)、プレフィックス、プレフィックスとメッセージ |
|
Ctrl+r |
前のキーワードで検索 |
|
Ctrl+s |
次のキーワードで検索 |
|
Enter |
現在の位置で検索を終了 |
|
Ctrl+q |
Stop search and reset scroll to pre-text search state. |
|
6.8. History search context
These keys are used in context "histsearch" (when Ctrl+r is pressed to search text in commands history).
キー | 説明 | コマンド |
---|---|---|
Ctrl+x |
検索タイプを切り替え: 文字列 (デフォルト)、正規表現 |
|
Alt+c |
大文字小文字を区別して検索 |
|
Tab |
Switch search in: buffer local history (default), global history. |
|
Ctrl+r |
Search in previous (older) history entries. |
|
Ctrl+s |
Search in next (newer) history entries. |
|
Enter |
Stop search and use matching input. |
|
Ctrl+o |
Execute the command found in history and insert the next one in the command line. |
|
Ctrl+q |
Stop search and restore input to its initial value. |
|
6.9. Cursor context
以下のキーは「カーソル」モード (画面上でカーソルを自由に動かせる状態) でのみ有効です, see Cursor mode.
キー | エリア | 説明 | コマンド |
---|---|---|---|
↑ |
- |
カーソルを上の行に移動 |
|
↓ |
- |
カーソルを下の行に移動 |
|
← |
- |
カーソルを左の列に移動 |
|
→ |
- |
カーソルを右の列に移動 |
|
Alt+↑ |
- |
Move cursor to the first line of the area. |
|
Alt+↓ |
- |
Move cursor to the last line of the area. |
|
Alt+← |
- |
Move cursor to the first column of the area. |
|
Alt+→ |
- |
Move cursor to the last column of the area. |
|
Alt+Home |
- |
Move cursor to the top left corner of the area. |
|
Alt+End |
- |
Move cursor to the bottom right corner of the area. |
|
Alt+Shift+↑ |
- |
カーソルを上のエリアに移動 |
|
Alt+Shift+↓ |
- |
カーソルを下のエリアに移動 |
|
Alt+Shift+← |
- |
カーソルを左のエリアに移動 |
|
Alt+Shift+→ |
- |
カーソルを右のエリアに移動 |
|
m |
チャット |
メッセージを引用 |
|
l |
チャット |
Quote focused line. |
|
q |
チャット |
プレフィックスとメッセージを引用 |
|
Q |
チャット |
時間、プレフィックス、メッセージを引用 |
|
b |
ニックネームリスト |
ニックネームをバンする |
|
k |
ニックネームリスト |
ニックネームをキックする |
|
K |
ニックネームリスト |
ニックネームをバンとキックする |
|
q |
ニックネームリスト |
ニックネームに対するクエリを開く |
|
w |
ニックネームリスト |
ニックネームに対して whois を行う |
|
Enter |
- |
カーソルモードを終了 |
|
6.10. Mouse
These mouse actions are possible only if mouse is enabled with key Alt+m
(command: /mouse toggle
).
ボタン/ホイール (1) | ジェスチャー | エリア | 説明 | コマンド |
---|---|---|---|---|
■ □ □ |
- |
チャット |
ウィンドウに移動 |
|
■ □ □ |
左 |
チャット |
前のバッファに移動 |
|
■ □ □ |
右 |
チャット |
次のバッファに移動 |
|
■ □ □ |
左 (長く) |
チャット |
最初のバッファに移動 |
|
■ □ □ |
右 (長く) |
チャット |
最後のバッファに移動 |
|
▲ |
- |
チャット |
バッファ履歴を上方向にスクロール |
|
▼ |
- |
チャット |
バッファ履歴を下方向にスクロール |
|
Ctrl+▲ |
- |
チャット |
水平左方向にスクロール |
|
Ctrl+▼ |
- |
チャット |
水平右方向にスクロール |
|
▲ |
- |
chat: fset buffer |
Move five lines up in fset buffer. |
|
▼ |
- |
chat: fset buffer |
Move five lines down in fset buffer. |
|
■ □ □ |
- |
chat: fset buffer |
Select line in fset buffer. |
|
□ □ ■ |
- |
chat: fset buffer |
Toggle boolean (on/off) or edit the option value. |
|
□ □ ■ |
left |
chat: fset buffer |
Decrease value for integer/color/enum, set/append to value for other types. |
|
□ □ ■ |
right |
chat: fset buffer |
Increase value for integer/color/enum, set/append to value for other types. |
|
□ □ ■ |
up / down |
chat: fset buffer |
Mark/unmark multiple options. |
|
▲ |
- |
chat: /list buffer |
Move five lines up in /list buffer. |
|
▼ |
- |
chat: /list buffer |
Move five lines down in /list buffer. |
|
■ □ □ |
- |
chat: /list buffer |
Select line in /list buffer. |
|
□ □ ■ |
- |
chat: /list buffer |
Join IRC channel on selected line. |
|
▲ |
- |
チャット: スクリプトバッファ |
スクリプトバッファを 5 行上方向にスクロール |
|
▼ |
- |
チャット: スクリプトバッファ |
スクリプトバッファで 5 行下方向にスクロール |
|
■ □ □ |
- |
チャット: スクリプトバッファ |
スクリプトバッファで行選択 |
|
□ □ ■ |
- |
チャット: スクリプトバッファ |
スクリプトのインストール `+/ 削除 |
/script -go ${_chat_line_y};/script installremove ${script_name_with_extension}+` |
■ □ □ |
上 / 左 |
バッファリスト |
指定したバッファを下の番号に移動 |
|
■ □ □ |
下 / 右 |
バッファリスト |
指定したバッファを上の番号に移動 |
|
■ □ □ |
- |
バッファリスト |
指定したバッファに切り替える (現在のバッファを指定した場合、バッファ切り替え履歴で前のバッファに切り替える) |
|
□ □ ■ |
- |
バッファリスト |
現在のバッファを指定した場合、バッファ切り替え履歴で次のバッファに切り替える |
|
Ctrl+▲ |
- |
バッファリスト |
バッファ切り替え履歴で前のバッファに切り替える |
|
Ctrl+▼ |
- |
バッファリスト |
バッファ切り替え履歴で次のバッファに切り替える |
|
■ □ □ |
上 |
ニックネームリスト |
ニックネームリストを 1 ページ分上方向にスクロール |
|
■ □ □ |
下 |
ニックネームリスト |
ニックネームリストを 1 ページ分下方向にスクロール |
|
■ □ □ |
上 (長く) |
ニックネームリスト |
ニックネームリストの最初に移動 |
|
■ □ □ |
下 (長く) |
ニックネームリスト |
ニックネームリストの最後に移動 |
|
■ □ □ |
- |
ニックネームリスト |
ニックネームに対するクエリを開く |
|
□ □ ■ |
- |
ニックネームリスト |
ニックネームに対する whois を行う |
|
■ □ □ |
左 |
ニックネームリスト |
ニックネームをキックする |
|
■ □ □ |
左 (長く) |
ニックネームリスト |
ニックネームをキックとバンする |
|
□ □ ■ |
左 |
ニックネームリスト |
ニックネームをバンする |
|
□ □ ■ |
- |
入力 |
マウスイベントを奪ってコマンドラインにコードを入力 |
|
▲ |
- |
任意のバー |
バーを -20% スクロール |
|
▼ |
- |
任意のバー |
バーを +20% スクロール |
|
□ ■ □ |
- |
任意の場所 |
この場所でカーソルモードを開始 |
|
注記
|
(1) Buttons: ◼ □ □: click on left button □ ◼ □: click on middle button □ □ ◼: click on right button Wheel: ▲: wheel up ▼: wheel down |
6.11. Fset buffer
These keys and actions are used on the fset buffer (see Fset plugin).
Key | Action (1) | Description | Command |
---|---|---|---|
↑ |
Move one line up. |
|
|
↓ |
Move one line down. |
|
|
PgUp |
Move one page up. |
|
|
PgDn |
Move one page down. |
|
|
Alt+Home |
|
Move to first line. |
|
Alt+End |
|
Move to last line. |
|
F11 |
|
Scroll horizontally on the left. |
|
F12 |
|
Scroll horizontally on the right. |
|
Alt+Space |
|
Toggle boolean value. |
|
Alt+- |
|
Subtract 1 from value for integer/color/enum, set value for other types. |
|
Alt++ |
|
Add 1 to value for integer/color/enum, append to value for other types. |
|
Alt+f, Alt+r |
|
Reset value. |
|
Alt+f, Alt+u |
|
Unset value. |
|
Alt+Enter |
|
Set value. |
|
Alt+f, Alt+n |
|
Set new value. |
|
Alt+f, Alt+a |
|
Append to value. |
|
Alt+, |
|
Mark/unmark option. |
|
Shift+↑ |
Move one line up and mark/unmark option. |
|
|
Shift+↓ |
Mark/unmark option and move one line down. |
|
|
|
Mark options displayed that are matching filter "xxx" (any filter on option or value is allowed, see /fset command). |
||
|
Unmark options displayed that are matching filter "xxx" (any filter on option or value is allowed, see /fset command). |
||
Ctrl+l ( |
Refresh options and whole screen. |
|
|
|
Refresh options (keep marked options). |
||
|
Refresh options (unmark all options). |
||
Alt+p |
|
Toggle plugin description options ( |
|
Alt+v |
|
Toggle help bar. |
|
|
Sort options by fields x,y (see option fset.look.sort). |
|
|
|
Reset sort to its default value (see option fset.look.sort). |
|
|
|
Export options in file "xxx". |
|
|
|
Export options in file "xxx" without help. |
|
|
|
Export options in file "xxx" with help. |
|
|
Ctrl+x |
|
Switch the format used to display options. |
|
|
Close fset buffer. |
|
注記
|
(1) The action must be entered as input on the command line, followed by Enter. |
6.12. IRC /list buffer
These keys and actions are used on the IRC /list buffer (see command /list).
Key | Action (1) | Description | Command |
---|---|---|---|
↑ |
Move one line up. |
|
|
↓ |
Move one line down. |
|
|
PgUp |
Move one page up. |
|
|
PgDn |
Move one page down. |
|
|
Alt+Home |
|
Move to first line. |
|
Alt+End |
|
Move to last line. |
|
F11 |
|
Scroll horizontally on the left. |
|
F12 |
|
Scroll horizontally on the right. |
|
Ctrl+j |
|
Join IRC channel on selected line. |
|
|
Show only channels with "xxx" in name or topic (case-insensitive). |
||
|
Show only channels with "xxx" in name (case-insensitive). |
||
|
Show only channels with "xxx" in topic (case-insensitive). |
||
|
Show only channels with at least "n" users. |
||
|
Show only channels with more than "n" users. |
||
|
Show only channels with less than "n" users. |
||
|
Show only channels matching the evaluated condition "xxx", using following variables: name, name2, users, topic. |
||
|
Sort channels by fields x,y (see command /list). |
||
|
Reset sort to its default value (see command /list). |
||
|
Refresh list (run again command /list). |
||
|
Close buffer. |
|
注記
|
(1) The action must be entered as input on the command line, followed by Enter. |
6.13. Script buffer
These keys and actions are used on the script buffer (see script manager).
Key | Action (1) | Description | Command |
---|---|---|---|
↑ |
Move one line up. |
|
|
↓ |
Move one line down. |
|
|
PgUp |
Move one page up. |
|
|
PgDn |
Move one page down. |
|
|
Alt+i |
|
Install script. |
|
Alt+r |
|
Remove script. |
|
Alt+l |
|
Load script. |
|
Alt+L |
|
Reload script. |
|
Alt+u |
|
Unload script. |
|
Alt+Shift+A |
|
Autoload script. |
|
Alt+h |
|
Hold/unhold script. |
|
Alt+v |
|
View script. |
|
|
Sort scripts by fields x,y (see option script.look.sort). |
||
|
Reset sort to its default value (see option script.look.sort). |
||
|
Refresh list. |
||
|
Close buffer. |
|
注記
|
(1) The action must be entered as input on the command line, followed by Enter. |
7. Configuration
7.1. Fset
fset (高速設定) プラグインはバッファ内にオプションのリストを表示し、WeeChat とプラグインのオプション設定を支援します。
Example of fset buffer displaying options starting with weechat.look
:
┌──────────────────────────────────────────────────────────────────────────────────────┐ │1.weechat│7/125 | Filter: weechat.look.* | Sort: ~name | Key(input): alt+space=toggl>>│ │2.fset │weechat.look.bare_display_exit_on_input: 入力の変更に対する最小限表示モード │ │ │を終了する [デフォルト: on] │ │ │----------------------------------------------------------------------------│ │ │ weechat.look.align_end_of_lines enum message │ │ │ weechat.look.align_multiline_words ブール on │ │ │ weechat.look.bar_more_down 文字列 "++" │ │ │ weechat.look.bar_more_left 文字列 "<<" │ │ │ weechat.look.bar_more_right 文字列 ">>" │ │ │ weechat.look.bar_more_up 文字列 "--" │ │ │ weechat.look.bare_display_exit_on_input ブール on │ │ │ weechat.look.bare_display_time_format 文字列 "%H:%M" │ │ │ weechat.look.buffer_auto_renumber ブール on │ │ │ weechat.look.buffer_notify_default enum all │ │ │ weechat.look.buffer_position enum end │ │ │ weechat.look.buffer_search_case_sensitive ブール off │ │ │ weechat.look.buffer_search_force_default ブール off │ │ │ weechat.look.buffer_search_history enum local │ │ │ weechat.look.buffer_search_regex ブール off │ │ │ weechat.look.buffer_search_where enum prefix_message │ │ │ weechat.look.buffer_time_format 文字列 "%H:%M:%S" │ │ │[12:55] [2] [fset] 2:fset │ │ │█ │ └──────────────────────────────────────────────────────────────────────────────────────┘
コマンド
-
fset
: WeeChat ?????????????????
/fset -bar -refresh -up|-down [<number>] -left|-right [<percent>] -go <line>|end -toggle -add [<value>] -reset -unset -set -setnew -append -mark -format -export [-help|-nohelp] <filename> -import <filename> <filter> -bar: add the help bar -refresh: refresh list of options, then whole screen (command: /window refresh) -up: move the selected line up by "number" lines -down: move the selected line down by "number" lines -left: scroll the buffer by "percent" of width on the left -right: scroll the buffer by "percent" of width on the right -go: select a line by number, first line number is 0 ("end" to select the last line) -toggle: toggle the boolean value -add: add "value" (which can be a negative number) for integers, colors and enums, set/append to value for other types (set for a negative value, append for a positive value) -reset: reset the value of option -unset: unset the option -set: add the /set command in input to edit the value of option (move the cursor at the beginning of value) -setnew: add the /set command in input to edit a new value for the option -append: add the /set command to append something in the value of option (move the cursor at the end of value) -mark: toggle mark -format: switch to the next available format -export: export the options and values displayed to a file (each line has format: "/set name value" or "/unset name") -import: import the options from a file (all lines containing commands are executed) -help: force writing of help on options in exported file (see /help fset.look.export_help_default) -nohelp: do not write help on options in exported file (see /help fset.look.export_help_default) filter: set a new filter to see only matching options (this filter can be used as input in fset buffer as well); allowed formats are: `*`: show all options (no filter) `xxx`: show only options with "xxx" in name `f:xxx`: show only configuration file "xxx" `t:xxx`: show only type "xxx" (bool/int/str/col/enum or boolean/integer/string/color/enum) `d`: show only changed options `d:xxx`: show only changed options with "xxx" in name `d=xxx`: show only changed options with "xxx" in value `d==xxx`: show only changed options with exact value "xxx" `h=xxx`: show only options with "xxx" in description (translated) `he=xxx`: show only options with "xxx" in description (in English) `=xxx`: show only options with "xxx" in value `==xxx`: show only options with exact value "xxx" `c:xxx`: show only options matching the evaluated condition "xxx", using following variables: file, section, option, name, parent_name, type, type_en, type_short (bool/int/str/col/enum), type_tiny (b/i/s/c/e), default_value, default_value_undef, value, quoted_value, value_undef, value_changed, parent_value, min, max, description, description2, description_en, description_en2, string_values, allowed_values The lines with options are displayed using string evaluation (see /help eval for the format), with these options: - fset.format.option1: first format for an option - fset.format.option2: second format for an option The following variables can be used in these options: - option data, with color and padded by spaces on the right: - ${file}: configuration file (for example "weechat" or "irc") - ${section}: section - ${option}: option name - ${name}: full option name (file.section.option) - ${parent_name}: parent option name - ${type}: option type (translated) - ${type_en}: option type (in English) - ${type_short}: short option type (bool/int/str/col/enum) - ${type_tiny}: tiny option type (b/i/s/c/e) - ${default_value}: option default value - ${default_value_undef}: "1" if default value is null, otherwise "0" - ${value}: option value - ${value_undef}: "1" if value is null, otherwise "0" - ${value_changed}: "1" if value is different from default value, otherwise "0" - ${value2}: option value, with inherited value if null - ${parent_value}: parent option value - ${min}: min value - ${max}: max value - ${description}: option description (translated) - ${description2}: option description (translated), "(no description)" (translated) if there's no description - ${description_en}: option description (in English) - ${description_en2}: option description (in English), "(no description)" if there's no description - ${string_values}: string values allowed for set of an enum option - ${allowed_values}: allowed values - ${marked}: "1" if option is marked, otherwise "0" - ${index}: index of option in list - option data, with color but no spaces: - same names prefixed by underscore, for example: ${_name}, ${_type}, ... - option data, raw format (no colors/spaces): - same names prefixed by two underscores, for example: ${__name}, ${__type}, ... - option data, only spaces: - same names prefixed with "empty_", for example: ${empty_name}, ${empty_type} - other data: - ${selected_line}: "1" if the line is selected, otherwise "0" - ${newline}: insert a new line at point, so the option is displayed on multiple lines For keys, input and mouse actions on the buffer, see key bindings in User's guide. Note: if input has one or more leading spaces, the following text is interpreted as a filter, without the spaces. For example " q" searches all options with "q" inside name while "q" closes the fset buffer. Examples: /fset d:irc.* /fset nicklist /fset =red /fset ==red /fset c:${file} == irc && ${type_en} == integer
オプション
fset.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
色 |
|
|
オプションリストの表示書式 |
|
|
外観 |
オプション:
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
fset.color.allowed_values_selected
-
??: color for allowed values on the selected line
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: color for color name when option fset.look.use_color_value is enabled
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
246
-
-
fset.color.color_name_selected
-
??: color for color name on the selected line when option fset.look.use_color_value is enabled
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
fset.color.default_value_selected
-
??: ???????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ??????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
242
-
-
fset.color.description_selected
-
??: ?????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ?????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
fset.color.file_changed_selected
-
??: ?????????? (?????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ?????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????????? (??????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ?????????????? (??????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ???????????? (??????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
darkgray
-
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ?????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: ????????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: ?????????? (1 ???????????????fset.format.option1 ?????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
17
-
-
-
??: ?????????? (2 ???????????????fset.format.option2 ?????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
17
-
-
-
??: ??????? (1 ???????????????fset.format.option1 ?????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
24
-
-
-
??: ??????? (2 ???????????????fset.format.option2 ?????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
24
-
-
-
??: ?????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
-
??: ????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
185
-
-
fset.color.name_changed_selected
-
??: ??????????????? (?????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ??????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ???????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
fset.color.option_changed_selected
-
??: ???????????? (?????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ???????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
fset.color.parent_name_selected
-
??: ????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
fset.color.parent_value_selected
-
??: ????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
darkgray
-
-
-
??: ???????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
fset.color.quotes_changed_selected
-
??: ???????????????? (?????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ???????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
fset.color.section_changed_selected
-
??: ???????????? (?????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ???????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
fset.color.string_values_selected
-
??: ?????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
fset.color.title_count_options
-
??: ????????????????????????? (????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
fset.color.title_current_option
-
??: ???????????????? (????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: ?????????? (????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
fset.color.title_marked_options
-
??: ????????????????? (????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: ??????????? (????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
138
-
-
-
??: ??????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
216
-
-
-
??: ??????????? (??????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????? (????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
38
-
-
-
??: ??????? (?????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
185
-
-
fset.color.value_changed_selected
-
??: ??????? (???????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ??????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
159
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
magenta
-
-
fset.color.value_undef_selected
-
??: ?????????? (???????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: ?????????????????????????????? (??: ?????????/help fset ?????????)
-
???: ???
-
?: ??????
-
??????:
"# ${description2}"
-
-
-
??: ??????????????????????????????? (??: ?????????/help fset ?????????)
-
???: ???
-
?: ??????
-
??????:
"/set ${name} ${quoted_value}"
-
-
fset.format.export_option_null
-
??: ??????? "null" ?????????????????????????????????????? (??: ?????????/help fset ?????????)
-
???: ???
-
?: ??????
-
??????:
"/unset ${name}"
-
-
-
??: first format of each line, used when option fset.look.format_number is set to 1 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl-x
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: second format of each line, used when option fset.look.format_number is set to 2 (note: content is evaluated, see /help fset); an empty string uses the default format ("${marked} ${name} ${type} ${value2}"), which is without evaluation of string and then much faster; formats can be switched with key ctrl-x
-
???: ???
-
?: ??????
-
??????:
"${marked} ${name} ${type} ${value2}${newline} ${empty_name} ${_default_value}${color:244} -- ${_allowed_values}${newline} ${empty_name} ${_description}"
-
-
-
??: comma separated list of options to automatically refresh on the fset buffer (if opened); "*" means all options (recommended), a name beginning with "!" is a negative value to prevent an option to be refreshed, wildcard "*" is allowed in names (example: "*,!plugin.section.*")
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
-
??: ??????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: /set ?????????? fset ??????????????; ???????????: ${name} (/set ?????????????)?${count} (/set ?????????); ????? /set ??????????????; ?? "1" ????fset ??????? /set ?????????????
-
???: ???
-
?: ??????
-
??????:
"${count} >= 1"
-
-
-
??: ?????????????????????????????? (???? /fset -export ??? "-help" ? "-nohelp" ????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: number of format used to display options; this is dynamically changed by the key ctrl-x on the fset buffer
-
???: ??
-
?: 1 .. 2
-
??????:
1
-
-
-
??: ????????????????????? (???????????????????????????????)
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
-
??: fset ????????????? (?????)
-
???: ??
-
?: 1 .. 100
-
??????:
10
-
-
-
??: ??????????????? (plugins.desc.*)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: comma-separated list of fields to sort options (see /help fset for a list of fields); char "-" can be used before field to reverse order, char "~" can be used to do a case-insensitive comparison; example: "-~name" for case-insensitive and reverse sort on option name
-
???: ???
-
?: ??????
-
??????:
"~name"
-
-
-
??: ??????????????????????????
-
???: ???
-
?: ??????
-
??????:
" "
-
-
-
??: ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: fset ?????????????????????? alt+X ???; ?????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????? /mute ???????
-
???: ???
-
?: on, off
-
??????:
off
-
7.2. Colors
基本色
WeeChat における基本色とは:
名前 | 色 |
---|---|
|
デフォルトの端末色 (背景色を透過色とする) |
|
黒 |
|
暗い灰色 |
|
暗い赤 |
|
明るい赤 |
|
暗い緑色 |
|
明るい緑色 |
|
茶色 |
|
黄色 |
|
暗い青 |
|
明るい青 |
|
暗い赤紫色 |
|
明るい赤紫色 |
|
暗い青緑色 |
|
明るい青緑色 |
|
灰色 |
|
白 |
拡張色
WeeChat は画面に色が表示された時点で色ペアを動的に割り当てます (バッファとバーを表示する時点で)。
基本色に加えて、1 番 から端末の対応状況に依存する番号までの色番号を利用できます。
/color
コマンドで現在の色と色制限を確認できます。Alt+c
をタイプすることで、一時的に端末色を選択された色に変更できます。
例えば、バッファ中のに表示される時刻をオレンジ色にしたい場合、以下のようにしてください:
/set weechat.color.chat_time 214
ステータスバーの色を非常に暗い緑色にしたい場合:
/set weechat.bar.status.color_bg 22
別名
/color alias
コマンドを使えば色の別名を追加できます。
追加後は任意の色関連オプションで別名を使えます。
例:
/color alias 214 orange /set weechat.color.chat_delimiters orange
属性
色に対していくつかの属性を付加することができます。1 つ以上の属性を色名または色番号の前に付加できます:
-
%
: blink -
.
: "dim" (half bright) -
*
: テキストを太字に -
!
: テキストを反転 -
/
: テキストをイタリック体に -
_
: テキストに下線を引く -
|
: keep attributes: do not reset blink/dim/bold/reverse/italic/underlined when changing color
例えば、自分自身のニックネームの表示色を白にして、下線を引きたい場合:
/set weechat.color.chat_nick_self _white
ステータスバーの時刻の表示色を橙色にして、下線を引いて、太字にしたい場合:
/set weechat.color.status_time *_214
デフォルト端末色 (-1) に対して属性を設定したい場合、端末色番号の最大値よりも大きな値を利用してください。例えば、WeeChat における色番号の最大値は 99999 です。
端末の表示色に太字の属性を付加する例:
/set weechat.color.status_time *99999
7.3. Charset
Charset プラグインを使うことで、文字コードに従ってデータのデコードとエンコードができます。
デコード/エンコード用にデフォルトの文字コードが設定されていますが、それぞれのバッファ (バッファグループ) に対して個別に文字コードを設定することもできます。
このプラグインの導入は任意ですが、導入を推奨します: このプラグインがロードされていない場合、WeeChat が読み書きできるデータは UTF-8 データのみになります。
Charset プラグインは WeeChat によって自動的にロードされるべきです。プラグインがロードされていることを確認するには、以下のようにしてください:
/charset
コマンドが見つからない場合、以下のコマンドでプラグインをロードしてください:
/plugin load charset
プラグインが見つからない場合、文字コードサポートを有効化した状態で WeeChat を再コンパイルしてください。
Charset プラグインがロードされた場合、端末文字コードと内部文字コードが表示されます。端末文字コードはロケールに依存し、内部文字コードは UTF-8 です。
例:
charset: terminal: ISO-8859-15, internal: UTF-8
文字コードの設定
グローバルデコード文字コードとエンコード文字コードを設定するには、/set
コマンドを使ってください。
例:
/set charset.default.decode ISO-8859-15 /set charset.default.encode ISO-8859-15
グローバルデコード文字コードが設定されていない場合 (例えば Charset プラグインを始めてロードした場合)、これは自動的に端末の文字コードか (UTF-8 でなければ)、デフォルトの ISO-8859-1 に設定されます。
デフォルトのエンコード文字コードはありません。従って、内部文字コード (UTF-8) が使われます。
IRC サーバの文字コードを設定するには、サーババッファで /charset
コマンドを使ってください。文字コードのみを引数として与えた場合、この文字コードがデコードとエンコードに利用されます。
例:
/charset ISO-8859-15
これは以下と等価です:
/charset decode ISO-8859-15 /charset encode ISO-8859-15
IRC チャンネル (またはプライベートメッセージ) の文字コードを設定するには、サーバの文字コード設定と同様のコマンドをチャンネル (またはプライベートメッセージ) バッファで使ってください。
IRC サーバの全てのチャンネルおよびプライベートバッファに対する文字コードを設定するには:
/set charset.encode.irc.libera ISO-8859-15
すべての文字コード設定を確認するには、以下のコマンドを利用してください:
/set charset.*
トラブルシューティング
文字コードに関する問題があれば、WeeChat FAQ (よくある質問) / いくつかの文字が見えません。どうすれば良いですか。 ↗を参照してください。
コマンド
-
charset
: ????????????????
/charset decode|encode <charset> reset decode: change decoding charset encode: change encoding charset charset: new charset for current buffer reset: reset charsets for current buffer
オプション
charset.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
デフォルトのデコード/エンコード文字セット |
|
|
バッファのデコード文字セット (オプションをセクションに追加/削除出来ます) |
|
|
バッファのエンコード文字セット (オプションをセクションに追加/削除出来ます) |
オプション:
7.4. 通知レベル
通知レベルの設定
バッファに表示された各メッセージには 4 つのレベルが設定されています。レベルの低いものから順に:
-
low: 重要性の低いメッセージ (例えば irc の参加/退出/終了メッセージ)
-
message: ユーザからのメッセージ
-
private: プライベートバッファのメッセージ
-
highlight: ハイライトされたメッセージ
それぞれのバッファには通知レベルが設定されており、通知レベルに対応するメッセージの数がホットリストに表示されます。
デフォルトの通知レベルは weechat.look.buffer_notify_default オプションで指定し、デフォルトは all です。
通知レベル | ホットリストに追加されるメッセージのレベル |
---|---|
|
(無効) |
|
highlight + private |
|
highlight + private + message |
|
highlight + private + message + low |
通知レベルはバッファグループに対して設定することも可能で、例えば irc サーバ "libera" に含まれる全てのバッファに対して設定する場合:
/set weechat.notify.irc.libera message
"#weechat" チャンネルだけに対して、通知レベルを highlight に設定する場合:
/set weechat.notify.irc.libera.#weechat highlight
/buffer
コマンドで、あるバッファに対する通知レベルを設定できます:
/buffer notify highlight
ニックネームに対するホットリストレベルの最大値
ニックネーム、バッファ、バッファグループ (IRC サーバなど) に対してホットリストレベルの最大値を設定することが可能です。
あるニックネームのリストに対してバッファプロパティ "hotlist_max_level_nicks" を設定したり、各ニックネームに対してホットリストレベルの最大値を設定することも可能です。設定可能なレベルは以下です:
-
-1: ニックネームがホットリストを変更しない優先度
-
0: 低優先度 (参加および退出メッセージなど)
-
1: 通常メッセージ
-
2: プライベートメッセージ
-
3: ハイライト (これはすべてのメッセージのデフォルト最大値であるため、通常これを指定することはありません)
例えば現在のバッファで "joe" と "mike" からのメッセージに対するハイライトを無効化するには以下のように設定します:
/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2
7.5. ハイライト
Disable highlights
You can disable highlights with option
weechat.look.highlight_disable_regex
(regular expression).
When a highlight is disabled with this option, the other highlight options are
ignored.
For example to disable any highlight on messages with a word beginning with "flash" between chevrons:
/set weechat.look.highlight_disable_regex "<flash.*>"
This can also be set with the buffer property "highlight_disable_regex".
Same example, specific to the current buffer:
/buffer setauto highlight_disable_regex <flash.*>
ハイライトする単語の追加
デフォルトで WeeChat は自分のニックネームが含まれる他のユーザからのメッセージをハイライトします。このため、ハイライトはバッファに依存します (ニックネームはバッファごとに異なる場合があります)。
他の単語を追加するには weechat.look.highlight オプションを使います。例えば自分のニックネーム、"word1"、"word2"、"test" から始まる任意の単語をハイライトするには以下のように設定します:
/set weechat.look.highlight "word1,word2,test*"
単語に対してさらに具体的なルールを設定する必要がある場合、weechat.look.highlight_regex オプションを使って正規表現で指定することも可能です。例えば "flashcode"、"flashcöde"、"flashy" という単語をハイライトするには以下のように設定します:
/set weechat.look.highlight_regex "flashc[oö]de|flashy"
ハイライトする単語の区切りは weechat.look.word_chars_highlight オプションを使って設定します。
ハイライトするタグの追加
表示される行には「タグ」を含めることが可能です。「タグ」とはメッセージの出自やメッセージ自身に関する情報を与えるものです。
/debug tags
コマンドでタグを表示することが可能です
(タグを非表示にする場合も同じコマンドを使います)。
ハイライトするタグを明示するには
weechat.look.highlight_tags
オプションを使います。複数のタグを指定するにはコンマで区切り、複数のタグの論理
"and" を表すには +
で区切ります。
例えば "FlashCode" というニックネームからのすべてのメッセージと "toto" で始まるニックネームからのすべての通知メッセージをハイライトするには以下のように設定します:
/set weechat.look.highlight_tags "nick_flashcode,irc_notice+nick_toto*"
7.6. Buffer logging
Logger プラグインを使うことで、バッファの内容をファイルに保存できます。保存形式とその方法をオプションで設定できます。
ログレベル
ログ保存はそれぞれのバッファに対して設定されたログレベルに従って行われます。デフォルトのレベルは 9 (バッファに表示されたメッセージをすべて保存) です。特定のバッファやバッファグループに対して個別にログレベルを設定できます。
設定可能なレベルは 0 から 9 です。0 は "保存しない"、9 は「すべてのメッセージを保存」を意味します。
それぞれのプラグインでレベルの意味が変わります。IRC プラグインに対しては以下のレベルが利用されます:
-
レベル 1: ユーザからのメッセージ (チャンネルまたはプライベート)
-
レベル 2: ニックネームの変更 (自身と他のユーザ)
-
レベル 3: 任意のサーバメッセージ (参加/退出/終了メッセージを除く)
-
レベル 4: 参加/退出/終了メッセージ
従って、IRC チャンネルに対してレベル 3 を設定した場合、WeeChat は参加/退出/終了メッセージを除いて全てのメッセージを保存します。
例:
-
IRC チャンネル #weechat に対してレベル 3 を設定:
/set logger.level.irc.libera.#weechat 3
-
libera サーババッファに対してレベル 3 を設定:
/set logger.level.irc.server.libera 3
-
libera サーバの全てのチャンネルに対してレベル 3 を設定:
/set logger.level.irc.libera 3
-
全ての IRC バッファに対してレベル 2 を設定:
/set logger.level.irc 2
ファイル名マスク
It is possible to define a filename mask for each buffer, and use local buffer variables to build filename. To see available local variables for current buffer:
/buffer listvar
Masks will be matched on options in descending order of specificity on
logger.mask.$plugin.*
, with logger.file.mask
as fallback option.
例えば "irc.libera.#weechat" バッファの場合、WeeChat は以下の順番でオプションに設定されたファイル名マスクを検索します:
logger.mask.irc.libera.#weechat logger.mask.irc.libera logger.mask.irc logger.file.mask
特定の IRC サーバ ("logger.mask.irc.libera") またはプラグイン ("logger.mask.irc") のグループに対して共通のマスクを適用できます。
ログファイルに日付を利用する
ログファイルに日付を使うには、マスクに日時/時間指定子を利用できます
(書式に関しては man strftime
を参照してください)。例えば:
/set logger.file.mask "%Y/%m/$plugin.$name.weechatlog"
以下のファイルが作成されます:
~/.local/share/weechat └── logs ├── 2010 │ ├── 11 │ │ ├── irc.server.libera.weechatlog │ │ └── irc.libera.#weechat.weechatlog │ └── 12 │ ├── irc.server.libera.weechatlog │ └── irc.libera.#weechat.weechatlog ├── 2011 │ ├── 01 │ │ ├── irc.server.libera.weechatlog │ │ └── irc.libera.#weechat.weechatlog │ ├── 02 ...
IRC ログファイルにサーバとチャンネル名を利用する
IRC サーバ名を使ったディレクトリに、チャンネル名を使ったファイルを作成する場合:
/set logger.mask.irc "irc/$server/$channel.weechatlog"
以下のファイルが作成されます:
~/.local/share/weechat └── logs └── irc ├── libera │ ├── libera.weechatlog │ ├── #weechat.weechatlog │ └── #mychan.weechatlog ├── oftc │ ├── oftc.weechatlog │ ├── #channel1.weechatlog │ └── #channel2.weechatlog ...
Rotation and compression
It is possible to define a max size for log files, and when it is reached, there is automatic rotation of log file.
The rotated log files can be compressed with gzip or zstd ↗.
注記
|
As the compression of a file can take some time, it is performed in background. |
Example with a max size of 2GB and compression with gzip, using good compression level (slower than default one):
/set logger.file.rotation_compression_type gzip /set logger.file.rotation_compression_level 80 /set logger.file.rotation_size_max "2g"
If you want to use a decimal number, you can use the unit below and multiply by 1000, for example to set max size to 2.5GB:
/set logger.file.rotation_size_max "2500m"
With these settings, you’ll end with files like these ones (in this example there is rotation only for the log of #weechat channel):
~/.local/share/weechat └── logs ├── core.weechat.weechatlog ├── irc.server.libera.weechatlog ├── irc.libera.#weechat.weechatlog ├── irc.libera.#weechat.weechatlog.1.gz ├── irc.libera.#weechat.weechatlog.2.gz └── irc.libera.#weechat.weechatlog.3.gz
コマンド
-
logger
: logger ???????
/logger list set <level> flush disable list: show logging status for opened buffers set: set logging level on current buffer level: level for messages to be logged (0 = logging disabled, 1 = a few messages (most important) .. 9 = all messages) flush: write all log files now disable: disable logging on current buffer (set level to 0) Options "logger.level.*" and "logger.mask.*" can be used to set level or mask for a buffer, or buffers beginning with name. Log levels used by IRC plugin: 1: user message (channel and private), notice (server and channel) 2: nick change 3: server message 4: join/part/quit 9: all other messages Examples: set level to 5 for current buffer: /logger set 5 disable logging for current buffer: /logger disable set level to 3 for all IRC buffers: /set logger.level.irc 3 disable logging for main WeeChat buffer: /set logger.level.core.weechat 0 use a directory per IRC server and a file per channel inside: /set logger.mask.irc "$server/$channel.weechatlog"
オプション
logger.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
ログファイルのオプション |
|
|
バッファのログレベル (オプションをセクションに追加/削除出来ます) |
|
|
バッファのファイル名マスク (オプションをセクションに追加/削除出来ます) |
オプション:
-
-
??: ???????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
246
-
-
-
??: color for backlog lines, used only if the option logger.file.color_lines is off
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
246
-
-
-
??: automatically save content of buffers to files (unless a buffer disables log); if disabled, logging is disabled on all buffers
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: use ANSI color codes in lines written in log files and display backlog lines with these colors
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????????????? (0 = ??????????????????????)
-
???: ??
-
?: 0 .. 3600
-
??????:
120
-
-
-
??: ???????????? fsync ????????????????????????????????? (man fsync ?????????); fsync ???????fsync ???????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: conditions to save content of buffers to files (note: content is evaluated, see /help eval); empty value saves content on all buffers; for example to log only private buffers: "${type} == private"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????????????????? (??? "directory/to/file" ??? "file" ????? "/" ????? "path" ????????????????????????????); ???????????????????? (???????????????????????????????????$server ? $channel ??????????????); ??????????????? (strftime ? man ?????????)
-
???: ???
-
?: ??????
-
??????:
"$plugin.$name.weechatlog"
-
-
-
??: ????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????? (????????????)??: "<"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ??????????????? (????????????)??: ">"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: path for WeeChat log files; date specifiers are permitted (see man strftime) (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_data_dir}/logs"
-
-
-
??: ????????????????????????????????????? (???????????????)
-
???: ???
-
?: ??????
-
??????:
"_"
-
-
logger.file.rotation_compression_level
-
??: compression level for rotated log files (with extension ".1", ".2", etc.), if option logger.file.rotation_compression_type is enabled: 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for gzip and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed
-
???: ??
-
?: 1 .. 100
-
??????:
20
-
-
logger.file.rotation_compression_type
-
??: compression type for rotated log files; if set to "none", rotated log files are not compressed; WARNING: if rotation was enabled with another type of compression (or no compression), you must first unload the logger plugin, compress files with the new type (or decompress files), then change the option in logger.conf, then load the logger plugin
-
???: enum
-
?: none, gzip, zstd
-
??????:
none
-
-
-
??: when this size is reached, a rotation of log files is performed: the existing rotated log files are renamed (.1 becomes .2, .2 becomes .3, etc.) and the current file is renamed with extension .1; an integer number with a suffix is allowed: b = bytes (default if no unit given), k = kilobytes, m = megabytes, g = gigabytes, t = terabytes; example: "2g" causes a rotation if the file size is > 2,000,000,000 bytes; if set to "0", no rotation is performed (unlimited log size); WARNING: before changing this option, you should first set the compression type via option logger.file.rotation_compression_type
-
???: ???
-
?: ??????
-
??????:
"0"
-
-
-
??: timestamp used in log files (see man strftime for date/time specifiers, extra specifiers are supported, see function util_strftimeval in Plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"%Y-%m-%d %H:%M:%S"
-
-
-
??: ???????????????????????????? (0 = ???????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
20
-
-
logger.look.backlog_conditions
-
??: ?????????? (??: ???????????/help eval ?????????); ???????????????????????????; ?????????????????????????????"${type} == private" ???????????
-
???: ???
-
?: ??????
-
??????:
""
-
7.7. マウスサポート
WeeChat はマウスクリックとマウスジェスチャーをサポートしています。 ローカル端末と screen/tmux の有無にかかわらず ssh 接続経由で利用可能です。
マウスの有効化
起動時にマウスを有効化するには:
/set weechat.look.mouse on
マウスを有効化するには Alt+m を押すか、以下のコマンドを使います:
/mouse enable
キーにマウスの一時的な無効化を割り当てることができます。例えば、Alt+% キーにマウスを 10 秒間無効化する機能を割り当てるには:
/key bind meta-% /mouse toggle 10
重要
|
WeeChat でマウスを有効化した場合、すべてのマウスイベントは WeeChat によって捕捉されます。したがって、カット/ペーストなどの操作や URL のクリックなどは端末に送信されません。Shift キーを使えば、一時的にマウスを無効化して、端末へ直接イベントを送信する事が可能です (一部の端末、例えば iTerm などでは Shift の代わりに Alt を使ってください)。 |
注記
|
マウスに関するトラブルがあれば WeeChat FAQ (よくある質問) / マウス ↗を参照してください。 |
コマンドに対してマウスイベントを割り当てる
WeeChat はデフォルトマウスイベントの多くを定義しています (mouse actionsを参照)。
/key
コマンドで "mouse" コンテキストを指定することで割り当てを追加、変更できます
(詳しい使い方は /key コマンドを参照)。
イベント名には修飾キー (任意)、ボタン/ホイール名、ジェスチャー (任意)
を利用できます。異なるイベントは -
で分割してください。
List of modifiers (by order in the event name):
修飾キー | 説明 |
---|---|
|
Alt キー |
|
Ctrl キー |
|
Shift キー (1) |
注記
|
(1) The shift modifier can rarely be used in WeeChat because many terminals
use this modifier to catch directly mouse events.
|
Several modifiers can be combined, for example:
-
alt-ctrl
-
ctrl-shift
-
alt-ctrl-shift
ボタン/ホイールのリスト:
ボタン/ホイール | 説明 |
---|---|
|
左ボタンクリック |
|
右ボタンクリック |
|
中ボタンクリック (多くの場合ホイールクリック) |
|
その他のボタンクリック |
|
ホイール (上方向) |
|
ホイール (下方向) |
ジェスチャーのリスト (ボタンのみ対応、ホイール未対応):
ジェスチャー | 距離 |
---|---|
|
3 から 19 |
|
20 以上 |
|
3 から 19 |
|
20 以上 |
|
3 から 39 |
|
40 以上 |
|
3 から 39 |
|
40 以上 |
未完了イベントのリスト (ボタンのみ、プラグイン/スクリプトで便利):
イベント | 説明 |
---|---|
|
マウスボタンが押され、離されていない状態 |
|
マウスボタンが押された状態でマウスが動かされた |
イベントの表記例:
-
button1
-
ctrl-button1
-
button1-gesture-right
-
button1-event-down
-
button1-event-drag
-
alt-button2-gesture-down-long
-
wheelup
-
alt-ctrl-wheeldown
-
…
ヒント
|
"mouse" イベントにキーを割り当てる場合、イベント名の最初または最後に *
を使うことで複数のイベントにマッチさせることができます。例えば
button1-gesture-* は左クリックを利用したすべてのジェスチャーにマッチします。
|
ヒント
|
/input grab_mouse
コマンドの後にマウスを動かすことでコマンドラインにマウスイベントが入力されます。これにより対応するイベントを確認できます。
|
7.8. Spell checking
Spell プラグインを使うことで、コマンドラインに入力した文字列のスペルチェックができます。バッファごとに異なる言語に対するスペルチェックを実行できます。
スペルチェック機能はデフォルトで無効化されています。Alt+s で有効無効を切り替える事が可能です。
辞書
スペルチェック機能を使う前に、すべてのバッファまたは特定のバッファに対して辞書を定義しなければいけません。
同時に複数の辞書を使用可能です: WeeChat はすべての辞書を使って単語をチェックします。
英語とフランス語の辞書を使う例:
/set spell.check.default_dict "en,fr"
特定のバッファで使用する辞書を定義することも可能です。ドイツ語のチャンネルでドイツ語の辞書を使う例:
/spell setdict de
バッファグループに対して特定の辞書を指定することも可能です。libera IRC サーバに対して英語の辞書を使う例:
/set spell.dict.irc.libera en
詳しい情報はコマンド /spell を参照してください。
Speller オプション
Speller オプションは aspell 設定の "option" セクションにあるオプションを追加して定義します。
ここで利用するオプション名は aspell 設定オプションと同じものです。オプションのリストはシェルで以下のコマンドを実行することで確認できます:
aspell config
例えば、"ignore-case" オプションを有効化するには:
/set spell.option.ignore-case "true"
修正候補
"spell_suggest" バー要素内に修正候補が表示されます。修正候補の数は spell.check.suggestions オプションで設定します。
修正候補を利用するには、spell.check.suggestions オプションをゼロ以上の整数に設定し、status バーなどに "spell_suggest" バー要素を追加してください。
英語辞書 (en
) を用いた修正候補の例:
│[12:55] [6] [irc/libera] 3:#test(+n){4} [print,prone,prune] │ │[@Flashy] prinr █ │ └─────────────────────────────────────────────────────────────────────────────────┘
英語とフランス語辞書 (en,fr
) を用いた修正候補の例:
│[12:55] [6] [irc/libera] 3:#test(+n){4} [print,prone,prune/prime,primer,primé] │ │[@Flashy] prinr █ │ └─────────────────────────────────────────────────────────────────────────────────┘
コマンド
-
spell
: ??????????????
/spell enable|disable|toggle listdict setdict -|<dict>[,<dict>...] deldict addword [<dict>] <word> enable: enable spell checker disable: disable spell checker toggle: toggle spell checker listdict: show installed dictionaries setdict: set dictionary for current buffer (multiple dictionaries can be separated by a comma, the special value "-" disables spell checking on current buffer) deldict: delete dictionary used on current buffer addword: add a word in personal dictionary Input line beginning with a "/" is not checked, except for some commands (see /set spell.check.commands). To enable spell checker on all buffers, use option "default_dict", then enable spell checker, for example: /set spell.check.default_dict "en" /spell enable To display a list of suggestions in a bar, use item "spell_suggest". Default key to toggle spell checker is alt-s.
オプション
spell.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
色 |
|
|
スペルチェックの操作コマンド |
|
|
バッファが利用するディレクトリ (オプションをセクションに追加/削除出来ます) |
|
|
外観 |
|
|
Speller オプション (オプションをセクションに追加/削除出来ます) |
オプション:
-
-
??: ??????????????????????????? (?????????????????????)
-
???: ???
-
?: ??????
-
??????:
"away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"
-
-
-
??: ??????????????????????????????? (???????????????) (???????????????????????????????????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????????????? (????????????: ??????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????????????????? "spell_suggest" ????????? (-1 = ???????????0 = ??????????????????????)
-
???: ??
-
?: -1 .. 2147483647
-
??????:
-1
-
-
-
??: ????????????????? (0 ??????????????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
2
-
-
-
??: ??????????????? (????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: ???? "spell_suggest" ?????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
spell.color.suggestion_delimiter_dict
-
??: ???? "spell_suggest" ?? 2 ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
spell.color.suggestion_delimiter_word
-
??: ???? "aspell_suggest" ?? 2 ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
spell.look.suggestion_delimiter_dict
-
??: ???? "spell_suggest" ?? 2 ???????????
-
???: ???
-
?: ??????
-
??????:
" / "
-
-
spell.look.suggestion_delimiter_word
-
??: ???? "spell_suggest" ?? 2 ???????????
-
???: ???
-
?: ??????
-
??????:
","
-
7.9. バー
バー とは任意のテキストを含めることができるチャットエリア以外の場所です。
バーオプションは weechat.bar.name.option
オプションで設定します。ここで
name
はバーの名前、option
はこのバーのオプション名です。
バーオプションのリスト:
オプション名 | 値 | 説明 |
---|---|---|
|
|
|
|
|
バーの位置: チャットエリアの上、下、左、右。 |
|
0 以上の整数 |
バーの表示優先度:
型と位置が同じ複数のバーを画面に表示する順番に利用される。 |
|
0 以上の整数 |
バーのサイズ:
位置が右/左の場合は列数、位置が上/下の場合は行数。値が |
|
0 以上の整数 |
バーの最大サイズ、 |
|
色 |
バーのデフォルトの背景色 |
|
色 |
バーのデフォルトのテキスト色 |
|
色 |
バーの区切り文字の色 |
|
|
このオプションが |
|
|
このオプションが |
|
文字列 |
items のリスト (詳細はバー要素を参照)。 |
|
|
位置が |
|
|
位置が |
|
文字列 |
バーを表示する状態 (詳細はバー状態を参照)。 |
バー要素
items オプションはバー要素をコンマ (画面上の要素同士に間隔を空ける)
または +
(間隔を空けない) で区切った文字列です。
バー要素のリストは /bar listitems
コマンドで表示されます。
要素名の前または後に文字を表示させることができます (英数字以外の文字、-
または _
)。この文字はバー (color_delim オプション)
で定義された区切り文字の色をつけて要素の前または後に表示されます。
バー要素を含むバーの例 "[time],buffer_number+:+buffer_plugin+.+buffer_name,[buffer_last_number]":
┌───────────────────────────────────────────────────────────────────────────┐ │[12:55] 3:irc/libera.#weechat [9] │ └───────────────────────────────────────────────────────────────────────────┘
Spacer item
An item called spacer
can be used to align items (left, center, right).
When at least one spacer
item is used in a bar, the whole bar width is used:
the spacers auto expand with the same size (or almost).
When the bar is not large enough for all items, spacers are not displayed.
注記
|
The spacer bar item can be used only in bars with position top or bottom ,
filling horizontal and size 1 .
|
Example of bar with items "[time],spacer,buffer_number+:+buffer_plugin+.+buffer_name,spacer,[buffer_last_number]":
┌───────────────────────────────────────────────────────────────────────────┐ │[12:55] 3:irc/libera.#weechat [9]│ └───────────────────────────────────────────────────────────────────────────┘
Force buffer
特殊構文を使うことで、バー要素: "@buffer:item" ("buffer" はバッファの完全な名前、"item" はバー要素の名前) を表示する際に強制的に指定されたバッファを利用することが可能です。
これはルートバーに現在のウィンドウで表示されない (またはどこにも表示されない) 特定のバッファの要素を表示させる際に便利です。
例: bitlbee のニックネームリストをルートバーに表示させる (バーが bitlist で bitlbee サーバが bitlbee の場合):
/set weechat.bar.bitlist.items "@irc.bitlbee.&bitlbee:buffer_nicklist"
Custom bar items
Custom bar items can be added with the /item command, each new item having two properties defined via configuration options:
-
conditions
: evaluated conditions to display the bar item, for example to restrict the bar item to some specific buffers (if empty, the bar item is displayed everywhere) -
content
: evaluated content of bar item.
In both options, the following variables can be used:
-
window
: pointer to the window where the bar is displayed (NULL
for root bars) -
buffer
: pointer to buffer where the bar is displayed (current buffer for root bars).
Examples of conditions:
Condition | Description |
---|---|
|
Displayed in window bars only |
|
Displayed in all buffers with number = 1 |
|
Displayed in all IRC buffers |
|
Displayed in all buffers where local variable |
|
Displayed in all buffers where local variable |
注記
|
There’s no builtin way to refresh the custom bar items. You can use the Trigger plugin to force the refresh, for example via one or more signals received. |
For more information and examples, see the /item command.
バーフィリング
フィリングタイプには 4 つの種類があります:
-
horizontal
: 左から右に向かって要素を水平に表示。要素内に改行がある場合、空白を行区切りに利用します。 -
vertical
: 上から下に向かって要素を表示。要素内に改行がある場合、改行を行区切りに利用します。 -
columns_horizontal
: テキストを左寄せして、列形式で要素を表示。最初の要素は左上、2 番目は同じ行の 1 列右側。 -
columns_vertical
: テキストを左寄せして、列形式で要素を表示。最初の要素は左上、2 番目は同じ列の 1 行下側。
デフォルトバーである title、status、input は horizontal フィリング、nicklist は vertical フィリング。
nicklist バーに対するフィリングの例:
┌───────────────────────────────────────────────────────────────────────┐ │Welcome to #test, this is a test channel │ │12:54:15 peter | hey! │@carl │ │12:55:01 +Max | hello │@jessika│ │ │@maddy │ │ │%Diego │ │ │%Melody │ │ │+Max │ │ │ celia │ │ │ Eva │ │ │ freddy │ │ │ Harold^│ │ │ henry4 │ │ │ jimmy17│ │ │ jodie ▼│ │[12:55] [6] [irc/libera] 3:#test(+n){24} │ │[@carl] █ │ └───────────────────────────────────────────────────────────────────────┘ filling_left_right = vertical ▲ ┌───────────────────────────────────────────────────────────────────────┐ │Welcome to #test, this is a test channel │ │12:54:15 peter | hey! │@carl lee │ │12:55:01 +Max | hello │@jessika louise │ │ │@maddy mario │ │ │%Diego mark │ │ │%Melody peter │ │ │+Max Rachel │ │ │ celia richard│ │ │ Eva sheryl │ │ │ freddy Vince │ │ │ Harold^ warren │ │ │ henry4 zack │ │ │ jimmy17 │ │ │ jodie │ │[12:55] [6] [irc/libera] 3:#test(+n){24} │ │[@carl] █ │ └───────────────────────────────────────────────────────────────────────┘ filling_left_right = columns_vertical ▲ ┌───────────────────────────────────────────────────────────────────────┐ │@carl %Diego celia Harold^ jodie mario Rachel Vince │ │@jessika %Melody Eva henry4 lee mark richard warren │ │@maddy +Max freddy jimmy17 louise peter sheryl zack │ │───────────────────────────────────────────────────────────────────────│ │ │ filling_top_bottom = columns_vertical ▲ ┌───────────────────────────────────────────────────────────────────────┐ │@carl @jessika @maddy %Diego %Melody +Max celia Eva │ │ freddy Harold^ henry4 jimmy17 jodie lee louise mario │ │ mark peter Rachel richard sheryl Vince warren zack │ │───────────────────────────────────────────────────────────────────────│ │ │ filling_top_bottom = columns_horizontal ▲
バー状態
conditions オプションはバーを表示するか否かを評価する文字列です。
文字列は以下のいずれか:
-
active: 非アクティブ状態のウィンドウ
-
inactive: 非アクティブ状態のウィンドウ
-
nicklist: ニックネームリストが含まれるバッファのウィンドウ
-
式: ブール値として評価 (/eval コマンドを参照)
式に使える変数は以下:
-
${active}
: ウィンドウがアクティブ状態の時に真 -
${inactive}
: ウィンドウが非アクティブ状態の時に真 -
${nicklist}
: ウィンドウに表示されるバッファがニックネームリストの場合に真。
式に使えるポインタは以下:
-
${window}
: 状態が評価されたウィンドウ -
${buffer}
: 状態が評価されたウィンドウのバッファ
Example to display nicklist bar in all buffers with a nicklist, and only if width of terminal is > 100:
/set weechat.bar.nicklist.conditions "${nicklist} && ${info:term_width} > 100"
Same condition, but always display nicklist on buffer &bitlbee (even if terminal is small):
/set weechat.bar.nicklist.conditions "${nicklist} && (${info:term_width} > 100 || ${buffer.full_name} == irc.bitlbee.&bitlbee)"
7.10. 暗号化データ
データの保存
WeeChat はパスワードおよび sec.conf ファイルに保存されている個人データを暗号化することができます。
この設定ファイルは他のどのファイルよりも先に読まれ、ファイルに保存されている値を WeeChat およびプラグイン/スクリプトのオプションで使うことができます。
sec.conf に含まれるデータを暗号化するパスフレーズを設定することが可能です。これは必須ではありませんが、パスフレーズを設定することを強く勧めます。パスフレーズを設定しない場合、データは平文でファイルに保存されます。
/secure passphrase this is my passphrase
Passphrase on startup
When a passphrase is set, WeeChat will ask you to enter it on startup
(but not on /upgrade
).
If you are using a password manager, you can run an external program to read
the passphrase instead of having to type it manually on WeeChat startup.
For example with password-store (command pass
):
/set sec.crypt.passphrase_command "/usr/bin/pass show weechat/passphrase"
The program may ask you unlock your GPG key or enter another passphrase to
read the secret. WeeChat will wait for the end of the command to read the
passphrase on the standard output (it must be on the first line without any
extra character).
If the output contains no passphrase or if it is wrong, WeeChat will then ask
you to enter it.
暗号化
データの暗号化は 3 段階に分けて行われます:
-
パスフレーズから鍵を生成 (任意の salt を加えます)。
-
暗号化するデータのハッシュを計算。
-
ハッシュとデータを暗号化 (出力: salt + 暗号化済みのハッシュ/データ)。
注記
|
ブロック暗号モードは CFB です。 |
結果は 16 進数文字列として sec.conf ファイルに保存されます、例:
[data] __passphrase__ = on libera = "53B1C86FCDA28FC122A95B0456ABD79B5AB74654F21C3D099A6CCA8173239EEA59533A1D83011251F96778AC3F5166A394"
暗号化データの管理
暗号化データを追加するには、/secure set
を使ってください、libera
IRC サーバのパスワードを設定する例:
/secure set libera mypassword
利便性を考慮して、暗号化データを専用のバッファに表示できるようになっています (値を見るにはバッファで Alt+v、以下のコマンドを実行してください:
/secure
例えばパスワードなどの個人データを含むオプションで暗号化データを使うことができます、書式:
"${sec.data.xxx}" ここで "xxx" は暗号化データの名前です
(/secure set xxx …
のように使います)。
For a complete list of supported options, see the /secure command.
例えば上の libera パスワードを SASL 認証で使うには:
/set irc.server.libera.sasl_password "${sec.data.libera}"
7.11. Command aliases
Alias プラグインを使うことで、コマンドの別名を定義できます (WeeChat だけでなく他のプラグインが提供するコマンドの別名を定義することもできます)。
大文字の別名はデフォルトで定義されたものです (標準コマンドと区別するために大文字を使っています);
WeeChat はコマンドの大文字小文字を区別しないので、コマンド
/close
は別名である /CLOSE
を実行します。
デフォルトで定義された別名のリスト:
?? | ???? | ?? |
---|---|---|
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
%(buffers_plugins_names) |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
|
|
- |
コマンド
-
alias
: ???????????????????
/alias list [<name>] add|addreplace <name> [<command>[;<command>...]] addcompletion|addreplacecompletion <completion> <name> [<command>[;<command>...]] del <name>|<mask>... rename <name> <new_name> missing list: list aliases (without argument, this list is displayed) add: add an alias addreplace: add or replace an existing alias addcompletion: add an alias with a custom completion addreplacecompletion: add or replace an existing alias with a custom completion name: name of alias completion: completion for alias: by default completion is done with target command (you can use "%%command" to use the completion of an existing command) command: command name with arguments (many commands can be separated by semicolons) del: delete aliases mask: name where wildcard "*" is allowed rename: rename an alias missing: add missing aliases (using default aliases) In command, special variables are replaced: $n: argument "n" (between 1 and 9) $-m: arguments from 1 to "m" $n-: arguments from "n" to last $n-m: arguments from "n" to "m" $*: all arguments $&: all arguments, with " replaced by \" $~: last argument $var: where "var" is a local variable of buffer (see /buffer listvar), examples: $nick, $channel, $server, $plugin, $name Examples: /alias add split /window splith /alias add hello /allchan -exclude=#weechat hello /alias rename hello Hello /alias addcompletion %%sajoin forcejoin /quote forcejoin
7.12. コマンドとオプション
WeeChat コマンド
-
allbuf
: execute a command on all buffers
/allbuf <command> command: command to execute (or text to send to buffer if command does not start with "/") Example: set read marker on all buffers: /allbuf /buffer set unread
-
away
: ?????????
/away [-all] [<message>] -all: set or remove away status on all connected servers message: message for away (if no message is given, away status is removed)
-
bar
: ?????
/bar list|listfull|listitems add|addreplace <name> <type>[,<conditions>] <position> <size> <separator> <item1>[,<item2>...] default [input|title|status|nicklist] rename <name> <new_name> del <name>|<mask>... set <name> <option> <value> hide|show|toggle <name> scroll <name> <window> <scroll_value> list: list all bars listfull: list all bars (verbose) listitems: list all bar items add: add a new bar addreplace: add or replace an existing bar name: name of bar (must be unique) type: type of bar: root: outside windows window: inside windows, with optional conditions (see below) conditions: the conditions to display the bar (without conditions, the bar is always displayed): active: on active window inactive: on inactive windows nicklist: on windows with nicklist other condition: see /help weechat.bar.xxx.conditions and /help eval 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) rename: rename a bar del: delete bars mask: name where wildcard "*" is allowed set: set a value for a bar property option: option to change (for options list, look at /set weechat.bar.<barname>.*) 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 ("*" 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 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
-
buffer
: ???????
/buffer list add [-free] [-switch] <name> clear [<id>|<number>|<name>|-merged|-all [<id>|<number>|<name>...]] move <number>|-|+ swap <id1>|<number1>|<name1> [<id2>|<number2>|<name2>] cycle <id>|<number>|<name>... merge <id>|<number>|<name> unmerge [<number>|-all] hide [<id>|<number>|<name>|-all [<id>|<number>|<name>...]] unhide [<id>|<number>|<name>|-all [<id>|<number>|<name>...]] switch [-previous] zoom renumber [<number1> [<number2> [<start>]]] close [<n1>[-<n2>]|<name>...] notify [<level>] listvar [<id>|<number>|<name>] setvar <name> [<value>] delvar <name> set <property> [<value>] setauto <property> [<value>] get <property> jump smart|last_displayed|prev_visited|next_visited <id>|<number>|-|+|<name> list: list buffers (without argument, this list is displayed) add: add a new buffer (it can be closed with "/buffer close" or input "q") 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); "-" = move to first buffer number, "+" = move to last buffer number + 1 swap: swap two buffers (swap with current buffer if only one number/name given) cycle: jump loop between a list of buffers 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 hide: hide the buffer unhide: unhide the buffer switch: switch to next merged buffer (or to previous buffer with "-previous") zoom: zoom on merged buffer renumber: renumber buffers (works only if option weechat.look.buffer_auto_renumber is off) close: close buffer (number/range or name is optional) notify: display or 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: for all messages reset: reset to default value (all) listvar: display local variables in a buffer setvar: set a local variable in the current buffer delvar: delete a local variable from the current buffer set: set a property in the current buffer setauto: like "set" and also define option "weechat.buffer.<name>.<property>" so that the property is saved in configuration and applied each time this buffer is opened get: display a property of current buffer jump: jump to another buffer: smart: next buffer with activity last_displayed: last buffer displayed (before last jump to a buffer) prev_visited: previously visited buffer next_visited: jump to next visited buffer id: jump to buffer by id 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" -: jump to first buffer number +: jump to last buffer number name: jump to buffer by (partial) name; if the name starts with "(?i)", the search is case-insensitive (for example "(?i)upper" will find buffer "irc.libera.#UPPERCASE") Examples: /buffer move 5 /buffer swap 1 3 /buffer swap #weechat /buffer cycle #chan1 #chan2 #chan3 /buffer merge 1 /buffer merge #weechat /buffer close 5-7 /buffer #weechat /buffer +1 /buffer +
-
color
: ?????????????????
/color alias <color> <name> unalias <color> reset term2rgb <color> rgb2term <rgb> [<limit>] -o alias: add an alias for a color unalias: delete an alias color: color number (greater than or equal to 0, max depends on terminal, commonly 63 or 255) name: alias name for color (for example: "orange") reset: reset all color pairs (required when no more color pairs are available if automatic reset is disabled, see option "weechat.look.color_pairs_auto_reset") term2rgb: convert a terminal color (0-255) to RGB color rgb2term: convert a RGB color to terminal color (0-255) limit: number of colors to use in terminal table (starting from 0); default is 256 -o: send terminal/colors info to current buffer as input Without argument, this command displays colors in a new buffer. Examples: /color alias 214 orange /color unalias 214
-
command
: WeeChat ??????????????
/command [-buffer <name>] <plugin> <command> -s <command>[;<command>...] -buffer: execute the command on this buffer plugin: execute the command from this plugin; "core" for a WeeChat command, "*" for automatic plugin (it depends on the buffer where the command is executed) command: command to execute (a "/" is automatically added if not found at beginning of command) -s: execute one or multiple commands separated by semicolons (the semicolon can be escaped with "\;")
-
cursor
: ?????????????????????????
/cursor go chat|<bar> [top_left|top_right|bottom_left|bottom_right] go <x>,<y> move up|down|left|right|top_left|top_right|bottom_left|bottom_right|edge_top|edge_bottom|edge_left|edge_right|area_up|area_down|area_left|area_right stop go: move cursor to chat area, a bar (using bar name) or coordinates "x,y" move: move cursor with direction stop: stop cursor mode Without argument, this command toggles cursor mode. When mouse is enabled (see /help mouse), by default a middle click will start cursor mode at this point. See chapter on key bindings in User's guide for a list of keys that can be used in cursor mode. Examples: /cursor go chat bottom_left /cursor go nicklist /cursor go 10,5
-
debug
: ??????
/debug list set <plugin> <level> dump [<plugin>] hooks [<plugin_mask> [<hook_type>...]] buffer|certs|color|dirs|infolists|key|libs|memory|tags|term|url|windows callbacks <duration>[<unit>] mouse|cursor [verbose] hdata [free] time <command> unicode <string> whitespace 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) hooks: display infos about hooks (with a plugin: display detailed info about hooks created by the plugin) plugin_mask: plugin mask, "*" for all plugins hook_type: hook type buffer: dump buffer content with hexadecimal values in WeeChat log file callbacks: write hook and bar item callbacks that took more than "duration" in the WeeChat log file (0 = disable), where optional unit is one of: us: microseconds (default) ms: milliseconds s: seconds m: minutes h: hours certs: display number of loaded trusted certificate authorities 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) infolists: display infos about infolists key: enable keyboard and mouse debug: display raw codes, expanded key name and associated command ("q" to quit this mode) 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 url: toggle debug for calls to hook_url (display output hashtable) windows: display windows tree time: measure time to execute a command or to send text to the current buffer unicode: display information about string and unicode chars (evaluated, see /help eval) whitespace: toggle whitespace mode: make spaces and tabulations visible in buffers and bars (see options weechat.look.whitespace_char and weechat.look.tab_whitespace_char) Examples: /debug set irc 1 /debug mouse verbose /debug time /filter toggle /debug hooks * process connect url /debug unicode ${chars:${\u26C0}-${\u26CF}}
-
eval
: ????
/eval [-n|-s] [-d] <expression> [-n] [-d [-d]] -c <expression1> <operator> <expression2> -n: display result without sending it to buffer (debug mode) -s: split expression before evaluating it (many commands can be separated by semicolons) -d: display debug output after evaluation (with two -d: more verbose debug) -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 (see below) An expression is considered as "true" if it is not NULL, not empty, and different from "0". The comparison is made using floating point numbers if the two expressions are valid numbers, with one of the following formats: integer (examples: 5, -7), floating point number (examples: 5.2, -7.5, 2.83e-2), hexadecimal number (examples: 0xA3, -0xA3). To force a string comparison, you can add double quotes around each expression, for example: 50 > 100 == 0 and "50" > "100" == 1 Some variables are replaced in expression, using the format ${variable}, which can be, by order of priority: - ${raw_hl:string}: the string itself without evaluation but with syntax highlighting - ${raw:string}: the string itself without evaluation - ${hl:string}: the string with syntax highlighting - ${name}: the user-defined variable - ${weechat_config_dir}: WeeChat config directory - ${weechat_data_dir}: WeeChat data directory - ${weechat_state_dir}: WeeChat state directory - ${weechat_cache_dir}: WeeChat cache directory - ${weechat_runtime_dir}: WeeChat runtime directory - ${eval:string}: the evaluated string - ${eval_cond:string}: the evaluated condition - ${esc:string} or ${\string}: the string with escaped chars - ${chars:range}: the string with a range of chars, "range" is one of: "digit", "xdigit", "lower", "upper", "alpha", "alnum" or "c1-c2" ("c1" and "c2" are code points with c1 ? c2) - ${lower:string}: the string converted to lower case - ${upper:string}: the string converted to upper case - ${hide:char,string}: the string with hidden chars - ${cut:max,suffix,string}: the string with max chars (excluding the suffix) - ${cut:+max,suffix,string}: the string with max chars (including the suffix) - ${cutscr:max,suffix,string}: the string with max chars displayed on screen (excluding the suffix) - ${cutscr:+max,suffix,string}: the string with max chars displayed on screen (including the suffix) - ${rev:string}: the reversed string - ${revscr:string}: the reversed string for display (color codes are not reversed) - ${repeat:count,string}: the repeated string - ${length:string}: the length of the string (number of UTF-8 chars) - ${lengthscr:string}: the length of the string on screen (sum of the width of each UTF-8 char displayed on screen, colors codes are ignored) - ${split:N,separators,flags,string}: Nth item of the split string (N is an integer ? 1 or ? -1, if negative, counts from the last item) - ${split:random,separators,flags,string}: random item of the split string - ${split:count,separators,flags,string}: number of items of the split string - ${split_shell:N,string}: Nth item of the split shell arguments (N is an integer ? 1 or ? -1, if negative, counts from the last item) - ${split_shell:random,string}: random item of the split shell arguments - ${split_shell:count,string}: number of items of the split shell arguments - ${color:name}: the color (see "Plugin API reference", function "color") - ${modifier:name,data,string}: the modifier - ${info:name,arguments}: the info (arguments are optional) - ${base_encode:base,string}: the string encoded to base: 16, 32, 64 or 64url - ${base_decode:base,string}: the string decoded from base: 16, 32, 64 or 64url - ${date} or ${date:format}: current date/time - ${env:NAME}: the environment variable - ${if:condition?value_if_true:value_if_false}: the result of ternary operator - ${calc:expression}: the result of the expression with parentheses and operators (+, -, *, /, //, %, **) - ${random:min,max}: a random integer number between "min" and "max" (inclusive) - ${translate:string}: the translated string - ${define:name,value}: declaration of a user variable (return an empty string) - ${hdata_count:name[list]}: number of items in this hdata with list - ${hdata_count:name[ptr]}: number of items in this hdata with pointer - ${sec.data.xxx}: the value of the secured data "xxx" - ${file.section.option}: the value of the config option - ${name}: the local variable in buffer - the 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/pointer/pointer name, 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 - ${hdata[pointer].var1.var2...}: start with a hdata using a pointer, for example: - ${buffer[0x1234abcd].full_name}: full name of the buffer with this pointer (can be used in triggers) - ${buffer[my_pointer].full_name}: full name of the buffer with this pointer name (can be used in triggers) - ${hdata[pointer].var1.method()}: when var1 is a hashtable, methods can be called: "keys()", "values()", "keys_sorted()", "keys_values()" and "keys_values_sorted()" For name of hdata and variables, please look at "Plugin API reference", function "weechat_hdata_get". Logical operators (by order of priority): && boolean "and" || boolean "or" Comparison operators (by order of priority): =~ is matching POSIX extended regex !~ is NOT matching POSIX extended regex ==* is matching mask, case-sensitive (wildcard "*" is allowed) !!* is NOT matching mask, case-sensitive (wildcard "*" is allowed) =* is matching mask, case-insensitive (wildcard "*" is allowed) !* is NOT matching mask, case-insensitive (wildcard "*" is allowed) ==- is included, case-sensitive !!- is NOT included, case-sensitive =- is included, case-insensitive !- is NOT included, case-insensitive == equal != not equal <= less or equal < less >= greater or equal > greater Examples (simple strings): /eval -n ${raw:${info:version}} ==> ${info:version} /eval -n ${eval_cond:${window.win_width}>100} ==> 1 /eval -n ${info:version} ==> 4.6.0 /eval -n ${env:HOME} ==> /home/user /eval -n ${weechat.look.scroll_amount} ==> 3 /eval -n ${sec.data.password} ==> secret /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 ${buffer.local_variables.keys_values()} ==> plugin:core,name:weechat /eval -n ${buffer.local_variables.plugin} ==> core /eval -n ${hdata_count:buffer[gui_buffers]} ==> 15 /eval -n ${\t} ==> <tab> /eval -n ${chars:digit} ==> 0123456789 /eval -n ${chars:J-T} ==> JKLMNOPQRST /eval -n ${lower:TEST} ==> test /eval -n ${upper:test} ==> TEST /eval -n ${hide:-,${relay.network.password}} ==> -------- /eval -n ${cut:3,+,test} ==> tes+ /eval -n ${cut:+3,+,test} ==> te+ /eval -n ${date:%H:%M:%S} ==> 07:46:40 /eval -n ${if:${info:term_width}>80?big:small} ==> big /eval -n ${rev:Hello} ==> olleH /eval -n ${repeat:5,-} ==> ----- /eval -n ${length:test} ==> 4 /eval -n ${split:1,,,abc,def,ghi} ==> abc /eval -n ${split:-1,,,abc,def,ghi} ==> ghi /eval -n ${split:count,,,abc,def,ghi} ==> 3 /eval -n ${split:random,,,abc,def,ghi} ==> def /eval -n ${split_shell:1,"arg 1" arg2} ==> arg 1 /eval -n ${split_shell:-1,"arg 1" arg2} ==> arg2 /eval -n ${split_shell:count,"arg 1" arg2} ==> 2 /eval -n ${split_shell:random,"arg 1" arg2} ==> arg2 /eval -n ${calc:(5+2)*3} ==> 21 /eval -n ${random:0,10} ==> 3 /eval -n ${base_encode:64,test} ==> dGVzdA== /eval -n ${base_decode:64,dGVzdA==} ==> test /eval -n ${define:len,${calc:5+3}}${len}x${len} ==> 8x8 Examples (conditions): /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 /eval -n -c abcd =* a*d ==> 1 /eval -n -c abcd =- bc ==> 1
-
filter
: ????????????????????????/??
/filter list enable|disable|toggle [<name>|<mask>|@...] add|addreplace <name> <buffer>[,<buffer>...] <tags> <regex> rename <name> <new_name> recreate <name> del <name>|<mask>... list: list all filters enable: enable filters (filters are enabled by default) disable: disable filters toggle: toggle filters mask: name where wildcard "*" is allowed ("@" = enable/disable all filters in current buffer) add: add a filter addreplace: add or replace an existing filter name: filter name rename: rename a filter recreate: set input with the command used to edit the filter del: delete filters buffer: comma separated list of buffers where filter is active: - this is full name including plugin (example: "irc.libera.#weechat" or "irc.server.libera") - "*" means all buffers - a name starting with "!" is excluded - wildcard "*" is allowed tags: comma separated list of tags (for example "irc_join,irc_part,irc_quit"): - logical "and": "+" between tags (for example: "nick_toto+irc_action") - wildcard "*" is allowed - if tag starts with "!", then it is excluded and must NOT be in message 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 globally and alt+"-" toggles filtering on/off in the current buffer. Tags most commonly used: no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, self_msg, nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), host_xxx (xxx is username + host in message), 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.libera.#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.libera.#weechat * weechat sucks filter lines that are strictly equal to "WeeChat sucks" on all buffers: /filter add sucks2 * * (?-i)^WeeChat sucks$
-
help
: ????????????????????
/help -list|-listfull [<plugin>...]] <command> <option> -list: list commands, by plugin (without argument, this list is displayed) -listfull: list commands with description, by plugin plugin: list commands for this plugin command: a command name option: an option name (use /set to see list)
-
history
: ?????????????
/history clear <value> clear: clear history value: number of history entries to show
-
hotlist
: manage hotlist
/hotlist add [low|message|private|highlight] clear [<level>] remove restore [-all] add: add current buffer in hotlist (default level: "low", conditions defined in option weechat.look.hotlist_add_conditions are NOT checked) clear: clear hotlist level: "lowest" to clear only lowest level in hotlist, highest" to clear only highest level in hotlist, or level mask: integer which is a combination of 1=join/part, 2=message, 4=private, 8=highlight remove: remove current buffer from hotlist restore: restore latest hotlist removed in the current buffer (or all buffers with "-all")
-
input
: ?????????
/input <action> [<arguments>] action: the action, one of: return: simulate key "enter" split_return: split input on newlines then simulate key "enter" for each line complete_next: complete word with next completion complete_previous: complete word with previous completion search_text_here: search text in buffer at current position search_text: search text in buffer search_history: search text in command line history 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_here: stop search at current position search_stop: stop search delete_previous_char: delete previous char delete_next_char: delete next char delete_previous_word: delete previous word delete_previous_word_whitespace: delete previous word (until whitespace) delete_next_word: delete next word delete_beginning_of_line: delete from beginning of line until cursor delete_beginning_of_input: delete from beginning of input until cursor delete_end_of_line: delete from cursor until end of line delete_end_of_input: delete from cursor until end of input delete_line: delete current line delete_input: delete entire input clipboard_paste: paste from the internal 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_beginning_of_input: move cursor to beginning of input move_end_of_line: move cursor to end of line move_end_of_input: move cursor to end of input 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 move_previous_line: move cursor to previous line move_next_line: move cursor to next line 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 history_use_get_next: send the current history entry (found with search or recalled with "up"key) and insert the next history entry in the command line without sending it 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 insert: insert text in command line (escaped chars are allowed, see /help print) send: send text to the buffer arguments: optional arguments for the action This command is used by key bindings or plugins.
-
item
: manage custom bar items
/item list add|addreplace <name> "<conditions>" "<content>" rename <name> <new_name> refresh <name>|<mask>... recreate <name> del <name>|<mask>... list: list all custom bar items add: add a custom bar item addreplace: add or replace an existing custom bar item name: custom bar item name mask: name where wildcard "*" is allowed conditions: evaluated conditions to display the bar item (for example to display the bar item only in specific buffers) content: content (evaluated, see /help eval) rename: rename a custom bar item refresh: update content of item in all bars where the item is displayed; any item can be refreshed: default/plugin/custom bar items recreate: set input with the command used to edit the custom bar item del: delete custom bar items Examples: add item with terminal size, displayed only in buffers with number = 1: /item add terminfo "${buffer.number} == 1" "term:${info:term_width}x${info:term_height}" add item with buffer info: /item add bufinfo "" "${buffer.number}:${buffer.name}${if:${buffer.zoomed}?(Z)}" add item with date/time using format "Dec 25, 12:34 +0100", refreshed every minute: /item add datetime "" "${date:%b %d, %H:%M %z}" /trigger add datetime_refresh timer "60000;60" "" "" "/item refresh datetime" add item with number of lines in buffer (displayed/total), refreshed each time a new line is displayed or if filtered lines have changed: /item add lines_count "" "${calc:${buffer.lines.lines_count}-${buffer.lines.lines_hidden}}/${buffer.lines.lines_count} lines" /trigger add lines_count_refresh_print print "" "" "" "/item refresh lines_count" /trigger add lines_count_refresh_signal signal "window_switch;buffer_switch;buffer_lines_hidden;filters_*" "" "" "/item refresh lines_count" force refresh of item "lines_count": /item refresh lines_count recreate item "lines_count" with different conditions or content: /item recreate lines_count delete item "lines_count": /item del lines_count
-
key
: ??????????????
/key [list|listdefault|listdiff] [<context>] bind <key> [<command> [<args>]] bindctxt <context> <key> [<command> [<args>]] unbind <key> unbindctxt <context> <key> reset <key> resetctxt <context> <key> resetall -yes [<context>] missing [<context>] legacy <key>... list: list all current keys 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 command: command (many commands can be separated by semicolons); quotes can be used to preserve spaces at the beginning/end of command 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 legacy: display new name for legacy keys 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 name in command line. For some keys you might need to use /debug key, this displays the raw key code that can be used (for example the key ctrl+backspace could be "ctrl-h" or "ctrl-?", depending on your terminal and other settings). Modifiers allowed (in this order when multiple are used): "meta-": alt key "ctrl-": control key "shift-": shift key, can only be used with key names below Key names allowed: f0 to f20, home, insert, delete, end, backspace, pgup, pgdn, up, down, right, left, tab, return, comma, space. Combo of keys must be separated by a comma. 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): chat 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" Wildcard "*" is allowed in key to match many mouse events. A special value for command with format "hsignal:name" can be used for context mouse, this will send the hsignal "name" with the focus hashtable as argument. Another special value "-" can be used to disable key (it will be ignored when looking for keys). Examples: /key bind meta-r /buffer #weechat /key reset meta-r /key bind meta-v,f1 /help /key bindctxt search f12 /input search_stop /key bindctxt mouse @item(buffer_nicklist):button3 /msg nickserv info ${nick}
-
layout
: ????/?????????????
/layout store [<name>] [buffers|windows] apply [<name>] [buffers|windows] leave del [<name>] [buffers|windows] rename <name> <new_name> 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. The current layout can be saved on /quit command with the option "weechat.look.save_layout_on_exit". Note: the layout only remembers windows split and buffers numbers. It does not open buffers. That means for example you must still auto-join IRC channels to open the buffers, the saved layout only applies once the buffers are opened.
-
mouse
: ?????
/mouse enable|disable|toggle [<delay>] enable: enable mouse disable: disable mouse toggle: toggle mouse delay: delay (in seconds) after which initial mouse state is restored (useful to temporarily disable mouse) The mouse state is saved in option "weechat.look.mouse". Examples: /mouse enable /mouse toggle 5
-
mute
: ??????????
/mute [-core|-current|-buffer <name>] <command> -core: no output on WeeChat core buffer -current: no output on current buffer -buffer: no output on specified buffer name: full buffer name (examples: "irc.server.libera", "irc.libera.#weechat") command: command to execute silently (a "/" is automatically added if not found at beginning of command) If no target is specified ("-core", "-current" or "-buffer"), then default is to mute all buffers. Examples: /mute save /mute -current msg * hi! /mute -buffer irc.libera.#weechat msg #weechat hi!
-
pipe
: redirect command output to a buffer, a file or a hsignal
/pipe [-buffer <name>|-file <filename>|-hsignal <name>] [-color strip|keep|ansi] [-concat <separator>] [-strip <chars>] [-skipempty] [-c] [-o] [-g] [-nl] <command> -buffer: display command output on this buffer name: full buffer name (examples: "core.weechat", "irc.server.libera", "irc.libera.#weechat") -file: write command output in this file -hsignal: send command output as hsignal; keys: "command", "output" (lines separated by separator) and "tags" (tags of each line separated by newline) -color: convert colors -o: send command output to the buffer as input; colors are stripped and commands are NOT executed (used only with -buffer) -concat: concatenate all lines displayed using a separator; chars can be escaped (example: \x20 for space) -strip: strip chars from lines (beginning/end); chars can be escaped (example: \x20 for space) -skipempty: skip empty lines when lines are concatenated -c: alias for "-concat \x20 -strip \x20 -skipempty" -nl: display messages in English during the command execution (do not use the current locale) command: command to execute (a "/" is automatically added if not found at beginning of command) If no target is specified ("-buffer", "-file" or "-hsignal"), then the command output is sent on the current buffer. Note: for commands that display messages in an asynchronous way (like /exec and many IRC commands), the output will not be caught by this command. For example "/pipe /whois nick" will NOT redirect the answer from IRC server to the current buffer. Examples: write info about external libraries in a file: /pipe -file /tmp/libs.txt /debug libs send output of "/debug libs" as a single line on current channel: /pipe -o -c /debug libs display info about all buffers on current buffer: /pipe /allbuf /eval /print ${buffer.full_name} -> ${buffer.number}. ${buffer.short_name} (${buffer}) send list of filters on current channel, in English: /pipe -o -nl /filter
-
plugin
: ????????/???/?????
/plugin list [-o|-ol|-i|-il|<name>] listfull [<name>] load <filename> [<arguments>] autoload [<arguments>] reload [<name>|* [<arguments>]] unload [<name>] list: list loaded plugins -o: send list of loaded plugins to buffer (string in English) -ol: send list of loaded plugins to buffer (translated string) -i: copy list of loaded plugins in command line (for sending to buffer) (string in English) -il: copy list of loaded plugins in command line (for sending to buffer) (translated string) name: a plugin name listfull: list loaded plugins (verbose) load: load a plugin filename: plugin (file) to load arguments: arguments given to plugin on load autoload: autoload plugins in system or user directory reload: reload a plugin (if no name given, unload all plugins, then autoload plugins) unload: unload a plugin (if no name given, unload all plugins) Without argument, this command lists loaded plugins.
-
print
: ?????????????
/print [-buffer <id>|<number>|<name>] [-newbuffer <name>] [-free] [-switch] [-core|-current] [-y <line>] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] [<text>] -stdout|-stderr [<text>] -beep -buffer: display text in this buffer (default: buffer where command is executed) -newbuffer: create a new buffer and display text in this buffer -free: create a buffer with free content (with -newbuffer only) -switch: switch to the buffer -core: alias of "-buffer core.weechat" -current: display text on current buffer -y: display on a custom line (for buffer with free content only) line: line number for buffer with free content (first line is 0, a negative number displays after last line: -1 = after last line, -2 = two lines after last line, etc.) -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 and/or time (ISO 8601): see function "util_parse_time" in Plugin API reference (examples: "11:29:09", "2023-12-25T10:29:09.456789Z") -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.libera.#weechat Message on #weechat display a snowman (U+2603): /print -escape \u2603 send alert (BEL): /print -beep
-
proxy
: ???????
/proxy list add|addreplace <name> <type> <address> <port> [<username> [<password>]] del <name>|<mask>... set <name> <option> <value> list: list all proxies add: add a new proxy addreplace: add or replace an existing proxy name: name of proxy (must be unique) type: http, socks4 or socks5 address: IP or hostname port: port number username: username (optional) password: password (optional) del: delete proxies mask: name where wildcard "*" is allowed set: set a value for a proxy property option: option to change (for options list, look at /set weechat.proxy.<proxyname>.*) value: new value for option Examples: add a http proxy, running on local host, port 8888: /proxy add local http 127.0.0.1 8888 add a http proxy using IPv6 protocol only: /proxy add local http ::1 8888 /proxy set local ipv6 force add a socks5 proxy with username/password: /proxy add myproxy socks5 sample.host.org 3128 myuser mypass delete a proxy: /proxy del myproxy
-
quit
: WeeChat ???
/quit [-yes] [<arguments>] -yes: required if option "weechat.look.confirm_quit" is enabled arguments: text sent with signal "quit" (for example irc plugin uses this text to send quit message to server) By default when quitting the configuration files are saved (see option "weechat.look.save_config_on_exit") and the current layout can be saved (see option "weechat.look.save_layout_on_exit").
-
reload
: ?????????????????
/reload [<file>...] file: configuration file to reload (without extension ".conf") Without argument, all files (WeeChat and plugins) are reloaded.
-
repeat
: ??????????
/repeat [-interval <delay>[<unit>]] <count> <command> delay: delay between execution of commands (minimum: 1 millisecond) unit: optional, values are: us: microseconds ms: milliseconds s: seconds (default) m: minutes h: hours count: number of times to execute command command: command to execute (or text to send to buffer if command does not start with "/"), evaluated and the following variables are set each time the command is executed: ${buffer}: buffer pointer ${repeat_count}: number of times the command is executed ${repeat_index}: current index (from 1 to "count") ${repeat_index0}: current index (from 0 to "count" - 1) ${repeat_revindex}: current index from the end (from "count" to 1) ${repeat_revindex0}: current index from the end (from "count" - 1 to 0) ${repeat_first}: "1" for the first execution, "0" for the others ${repeat_last}: "1" for the last execution, "0" for the others Note: the command is executed on buffer where /repeat was executed (if the buffer does not exist anymore, the command is not executed). Examples: scroll 2 pages up: /repeat 2 /window page_up print a countdown, starting at 5: /repeat -interval 1 6 /print ${if:${repeat_last}?Boom!:${repeat_revindex0}}
-
reset
: reset config options
/reset <option> -mask <option> option: name of an option -mask: use a mask in option (wildcard "*" is allowed to mass-reset options, use carefully!) Examples: /reset weechat.look.item_time_format /reset -mask weechat.color.*
-
save
: ??????????
/save [<file>...] file: configuration file to save (without extension ".conf") Without argument, all files (WeeChat and plugins) are saved. By default all configuration files are saved to disk on /quit command (see option "weechat.look.save_config_on_exit").
-
secure
: ??????????? (?????????????????????? sec.conf ???????)
/secure passphrase <passphrase>|-delete decrypt <passphrase>|-discard set <name> <value> del <name> passphrase: change the passphrase (without passphrase, data is stored as plain text in file sec.conf) -delete: delete passphrase decrypt: decrypt data still encrypted (it happens only if passphrase was not given on startup) -discard: discard all data still encrypted set: add or change secured data del: delete secured data Without argument, this command displays secured data in a new buffer. Keys on secure buffer: alt+v toggle values When a passphrase is used (data encrypted), it is asked by WeeChat on startup. It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade), or to set option sec.crypt.passphrase_command to read the passphrase from the output of an external command like a password manager (see /help sec.crypt.passphrase_command). Secured data with format ${sec.data.xxx} can be used in: - command /eval - command line argument "--run-command" - options weechat.startup.command_{before|after}_plugins - other options that may contain a password or sensitive data (for example proxy, irc server and relay); see /help on the options to check if they are evaluated. Examples: set a passphrase: /secure passphrase this is my passphrase use program "pass" to read the passphrase on startup: /set sec.crypt.passphrase_command "/usr/bin/pass show weechat/passphrase" encrypt libera SASL password: /secure set libera mypassword /set irc.server.libera.sasl_password "${sec.data.libera}" encrypt oftc password for nickserv: /secure set oftc mypassword /set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}" alias to ghost the nick "mynick": /alias add ghost /eval /msg -server libera nickserv ghost mynick ${sec.data.libera}
-
set
: ???????????????
/set [<option> [<value>]] diff [<option>...] env [<variable> [<value>]] option: name of an option (wildcard "*" is allowed to list options, if no value is specified) value: new value for option, according to type: boolean: on, off or toggle integer: number, ++number or --number string: any string ("" for empty string) color: color name, ++number or --number diff: display only changed options env: display or set an environment variable ("" to unset a variable) Note: the value "null" (without quotes) can be used to remove option value (undefined value). This works only for some special plugin variables. Examples: /set *highlight* /set weechat.look.highlight "word" /set diff /set diff irc.* /set env LANG /set env LANG fr_FR.UTF-8 /set env ABC ""
-
sys
: system actions
/sys get rlimit|rusage malloc_trim [<size>] suspend waitpid <number> get: display system info rlimit: display resource limits (see /help weechat.startup.sys_rlimit and "man getrlimit") rusage: display resource usage (see "man getrusage") malloc_trim: call function malloc_trim to release free memory from the heap size: amount of free space to leave untrimmed at the top of the heap (default is 0: only the minimum amount of memory is maintained at the top of the heap) suspend: suspend WeeChat and go back to the shell, by sending signal SIGTSTP to the WeeChat process waitpid: acknowledge the end of children processes (to prevent "zombie" processes) number: number of processes to clean
-
toggle
: toggle value of a config option
/toggle <option> [<value>...] option: name of an option value: possible values for the option (values are split like the shell command arguments: quotes can be used to preserve spaces at the beginning/end of values) Behavior: - only an option of type boolean or string can be toggled without a value: - boolean: toggle between on/off according to current value - string: toggle between empty string and default value (works only if empty string is allowed for the option) - with a single value given, toggle between this value and the default value of option - with multiple values given, toggle between these values: the value used is the one following the current value of option; if the current value of option is not in list, the first value in the list is used - the special value "null" can be given, but only as first value in the list and without quotes around. Examples: toggle display of time in chat area (without displaying the new value used): /mute /toggle weechat.look.buffer_time_format switch format of time in chat area (with seconds, without seconds, disabled): /toggle weechat.look.buffer_time_format "%H:%M:%S" "%H:%M" "" toggle autojoin of #weechat channel on libera server: /toggle irc.server.libera.autojoin null #weechat
-
unset
: ???????????/????
/unset <option> -mask <option> option: name of an option -mask: use a mask in option (wildcard "*" is allowed to mass-reset options, use carefully!) According to option, it's reset (for standard options) or removed (for optional settings, like server values). Examples: /unset weechat.look.item_time_format /unset -mask weechat.color.*
-
upgrade
: save WeeChat session and reload the WeeChat binary without disconnecting from servers
/upgrade [-yes] [<path_to_binary>|-save|-quit] -o|-ol -yes: required if option "weechat.look.confirm_upgrade" is enabled path_to_binary: path to WeeChat binary (default is current binary) -dummy: do nothing (option used to prevent accidental completion with "-quit") -save: only save the session, neither quit nor reload WeeChat; the configuration files are not saved (if needed you can use /save before this command) -quit: close *ALL* connections, save session and quit WeeChat, which makes possible a delayed restoration (see below) -o: send number of upgrades and date of first/last start to current buffer as input (English string) -ol: send number of upgrades and date of first/last start to current buffer as input (translated string) 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: TLS connections are lost during upgrade (except with -save), because the reload of TLS sessions is currently not possible with GnuTLS. There is automatic reconnection after upgrade. Important: use of option "-save" can be dangerous, it is recommended to use only /upgrade (or with "-quit") for a standard upgrade and a restart; the option "-save" can be used to save the session regularly and restore it in case of after abnormal exit (power outage, crash, etc.). 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: 1. close *ALL* connections (irc, xfer, relay, ...) 2. save session into files (*.upgrade) 3. unload all plugins 4. save WeeChat configuration 5. quit WeeChat With option "-save", the process is: 1. save session into files (*.upgrade) with a disconnected state for IRC servers and Relay clients (but no disconnection is made) With -quit or -save, you can restore the session later with this command: weechat --upgrade IMPORTANT: you must restore the session with exactly same configuration (files *.conf) and if possible the same WeeChat version (or a more recent one). It is possible to restore WeeChat session on another machine if you copy the content of WeeChat home directories (see /debug dirs).
-
uptime
: WeeChat ?????????
/uptime [-o|-ol] -o: send uptime to current buffer as input (English string) -ol: send uptime to current buffer as input (translated string)
-
version
: WeeChat ?????????????????
/version [-o|-ol] [-v] -o: send version to current buffer as input (English string) -ol: send version to current buffer as input (translated string) -v: verbose mode: display information about upgrades of WeeChat with /upgrade The default alias /v can be used to execute this command on all buffers (otherwise the irc command /version is used on irc buffers).
-
wait
: ??????????
/wait <number>[<unit>] <command> number: amount of time to wait (minimum: 1 millisecond) unit: optional, values are: us: microseconds ms: milliseconds s: seconds (default) m: minutes h: hours command: command to execute (or text to send to buffer if command does not start with "/") Note: the command is executed on buffer where /wait was executed (if the buffer does not exist anymore, the command is not executed). Examples: join channel #test in 10 seconds: /wait 10 /join #test set away in 15 minutes: /wait 15m /away -all I'm away say "hello" in 2 minutes: /wait 2m hello
-
window
: ????????
/window list -1|+1|b#|up|down|left|right [-window <number>] <number> splith|splitv [-window <number>] [<pct>] resize [-window <number>] [h|v][+|-]<pct> balance merge [-window <number>] [all] close [-window <number>] page_up|page_down [-window <number>] refresh scroll [-window <number>] [+|-]<value>[s|m|h|d|M|y] scroll_horiz [-window <number>] [+|-]<value>[%] scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_beyond_end|scroll_previous_highlight|scroll_next_highlight|scroll_unread [-window <number>] swap [-window <number>] [up|down|left|right] zoom [-window <number>] bare [<delay>] 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 (to undo: /window merge) splitv: split current window vertically (to undo: /window merge) resize: resize window size, new size is <pct> percentage of parent window; if "h" or "v" is specified, the resize affects the nearest parent window with a split of this type (horizontal/vertical) balance: balance the sizes of all windows merge: merge window with another (all = keep only one window) close: close 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 seconds 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: /window b1 /window scroll -2 /window scroll -2d /window scroll -d /window zoom -window 2 /window splith 30 /window resize 75 /window resize v+10 /window bare 2
保護データのオプション
sec.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
暗号化に関するオプション |
|
保護データ |
オプション:
-
-
??: ????????????? (??????????????????????)
-
???: enum
-
?: aes128, aes192, aes256
-
??????:
aes256
-
-
-
??: hash algorithm used to check the decrypted data; some of them require a specific libgcrypt version: sha3-*: libgcrypt >= 1.7.0, blake2*: libgcrypt >= 1.8.0, sha512-*: libgcrypt >= 1.9.4
-
???: enum
-
?: sha224, sha256, sha384, sha512, sha512-224, sha512-256, sha3-224, sha3-256, sha3-384, sha3-512, blake2b-160, blake2b-256, blake2b-384, blake2b-512, blake2s-128, blake2s-160, blake2s-224, blake2s-256
-
??????:
sha256
-
-
-
??: read the passphrase from the output of this system command (only the first line is used and it must not contain any extra character); this option is used only when reading file sec.conf and if the environment variable "WEECHAT_PASSPHRASE" is not set (the environment variable has higher priority); example with password-store: "/usr/bin/pass show weechat/passphrase"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ????????????????? salt ????????? (????????????); ????????sec.conf ??????????????????????????????????????????; sec.conf ???????????????????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
WeeChat オプション
weechat.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
core とプラグインのデバッグレベル (オプションをセクションに追加/削除出来ます) |
|
|
起動オプション |
|
|
外観 |
|
|
色の別名 (オプションをセクションに追加/削除出来ます) |
|
|
色 |
|
|
補完オプション |
|
|
履歴オプション (コマンドとバッファ) |
|
|
プロキシオプション |
|
|
ネットワーク/TLS オプション |
|
|
Options on plugins. |
|
|
Options on signals. |
|
|
バーオプション |
|
レイアウト |
|
|
Properties auto-applied on buffers when they are opened. |
|
|
バッファに対する通知レベル (オプションをセクションに追加/削除出来ます) |
|
|
フィルタ |
|
|
デフォルトコンテキストのキー |
|
|
検索コンテキストのキー |
|
|
カーソルコンテキストのキー |
|
|
マウスコンテキストのキー |
オプション:
-
-
??: ???????????? "+" ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ???????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ?????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: ?????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
22
-
-
-
??: ?????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
weechat.color.chat_highlight_bg
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
124
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
weechat.color.chat_inactive_buffer
-
??: ????????????????? (???????????????????????????????) ???????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.chat_inactive_window
-
??: ???????????????????? (?????????????) ???????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
240
-
-
-
??: ??????????????????????: ??????????????????????????????????????????; ???????????????????? weechat.color.chat_nick_colors ???????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
weechat.color.chat_nick_colors
-
??: ???????????? (????????????????????????: "fg:bg"??: "lightred:blue")
-
???: ???
-
?: ??????
-
??????:
"cyan,magenta,green,brown,lightblue,lightcyan,lightmagenta,lightgreen,31,35,38,40,49,63,70,80,92,99,112,126,130,138,142,148,160,162,167,169,174,176,178,184,186,210,212,215,248"
-
-
weechat.color.chat_nick_offline
-
??: text color for offline nick (not in nicklist anymore); this color is used only if option weechat.look.color_nick_offline is enabled
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
242
-
-
weechat.color.chat_nick_offline_highlight
-
??: ??????????????????????????; ????????? weechat.look.color_nick_offline ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.chat_nick_offline_highlight_bg
-
??: ????????????????????????; ????????? weechat.look.color_nick_offline ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
17
-
-
-
??: ??????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
weechat.color.chat_nick_prefix
-
??: ??????????????? (??????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: ???????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
weechat.color.chat_nick_suffix
-
??: ?????????????? (??????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
weechat.color.chat_prefix_action
-
??: ??????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
weechat.color.chat_prefix_buffer
-
??: ??????????? (???????????????????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
180
-
-
weechat.color.chat_prefix_buffer_inactive_buffer
-
??: ????????????????? (??????????????????????????????????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.chat_prefix_error
-
??: ????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
weechat.color.chat_prefix_join
-
??: join ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
weechat.color.chat_prefix_more
-
??: ??????????????? "+" ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
weechat.color.chat_prefix_network
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
magenta
-
-
weechat.color.chat_prefix_quit
-
??: quit ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
weechat.color.chat_prefix_suffix
-
??: ???????????? (??????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
24
-
-
weechat.color.chat_read_marker
-
??: ???????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
magenta
-
-
weechat.color.chat_read_marker_bg
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
weechat.color.chat_status_disabled
-
??: text color for "disabled" status
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
weechat.color.chat_status_enabled
-
??: text color for "enabled" status
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: ????????????????? (/debug tags ???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
-
??: ????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
weechat.color.chat_text_found_bg
-
??: ??????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.chat_time_delimiters
-
??: ???????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
-
??: ???????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: ?? null (???) ?????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
blue
-
-
-
??: ???????? (???????????); ???????? weechat.look.emphasized_attributes ?????????? (??????) ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ?????????? (???????????); ???????? weechat.look.emphasized_attributes ?????????? (??????) ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
54
-
-
weechat.color.eval_syntax_colors
-
??: text color for syntax highlighting in evaluated strings, with "${raw_hl:...}" and "${hl:...}" (comma separated list of colors, background is allowed with format: "fg:bg", for example: "lightred:blue")
-
???: ???
-
?: ??????
-
??????:
"green,lightred,lightblue,lightmagenta,yellow,cyan"
-
-
-
??: ?????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
weechat.color.input_text_not_found
-
??: ???????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
-
??: ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ?????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
240
-
-
-
??: ?????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: ?????????? (???) ???????? (??????????) ??
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
236
-
-
weechat.color.status_count_highlight
-
??: ????????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
magenta
-
-
weechat.color.status_count_msg
-
??: ???????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
weechat.color.status_count_other
-
??: ???????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.status_count_private
-
??: ?????????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
weechat.color.status_data_highlight
-
??: ?????????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: ???????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
weechat.color.status_data_other
-
??: ?????? (???????) ???????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.color.status_data_private
-
??: ??????????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: ?????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: text color for buffer modes in status bar
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ?????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: ???????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
weechat.color.status_name_insecure
-
??: text color for current buffer name in status bar, if data are exchanged and not secured with a protocol like TLS
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: text color for current buffer name in status bar, if data are exchanged and secured with a protocol like TLS
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
weechat.color.status_nicklist_count
-
??: ???????????????????????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ???????? (???????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
weechat.completion.base_word_until_cursor
-
??: ????????????????????????????; ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.case_sensitive
-
??: if enabled, the completion is case-sensitive by default
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.command_inline
-
??: ???????????????????????????? (??????????????????????????); ??: ??????????????"/" ?????????????????? (?????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.default_template
-
??: ?????????????? (???????????????????????????: ????? API ???????"weechat_hook_command" ??)
-
???: ???
-
?: ??????
-
??????:
"%(nicks)|%(irc_channels)"
-
-
weechat.completion.nick_add_space
-
??: ???????????????? (???????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.nick_case_sensitive
-
??: case-sensitive completion for nicks
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.completion.nick_completer
-
??: ?????????????????? (??????????????????????)
-
???: ???
-
?: ??????
-
??????:
": "
-
-
weechat.completion.nick_first_only
-
??: ???????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.completion.nick_ignore_chars
-
??: ???????????????
-
???: ???
-
?: ??????
-
??????:
"[]`_-^"
-
-
weechat.completion.nick_ignore_words
-
??: comma-separated list of nicks to ignore (not completed); the whole nick must be set in this option even if chars are ignored in completion with option weechat.completion.nick_ignore_chars; look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.completion.partial_completion_alert
-
??: ??????????????? (BEL) ???
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.partial_completion_command
-
??: ?????????? (??????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.completion.partial_completion_command_arg
-
??: ???????????? (?????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.completion.partial_completion_count
-
??: ??????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.completion.partial_completion_other
-
??: ??????????? (?????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.completion.partial_completion_templates
-
??: ????????????????? (shift-Tab ??????? Tab ?????) ????????????????; ??????????? WeeChat ????? API ??????? "weechat_hook_command" ?????????????
-
???: ???
-
?: ??????
-
??????:
"config_options"
-
-
weechat.history.display_default
-
??: ??????????????????????????????? (0 = ????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
5
-
-
weechat.history.max_buffer_lines_minutes
-
??: ????????????? (?) (0 = ????); ?: 1440 = ???10080 = ????43200 = ????525600 = ???; weechat.history.max_buffer_lines_number ?????? 0 ??????? 0 ?????????
-
???: ??
-
?: 0 .. 2147483647
-
??????:
0
-
-
weechat.history.max_buffer_lines_number
-
??: ?????????? (0 = ????); weechat.history.max_buffer_lines_minutes ?????? 0 ??????? 0 ?????????
-
???: ??
-
?: 0 .. 2147483647
-
??????:
4096
-
-
-
??: ??????????????? (0 = ????????????????????????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
100
-
-
weechat.history.max_visited_buffers
-
??: ????????????????
-
???: ??
-
?: 0 .. 1000
-
??????:
50
-
-
-
??: "backspace" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_previous_char"
-
-
-
??: "ctrl-_" (default)
-
???: ???
-
?: ??????
-
??????:
"/input undo"
-
-
-
??: "ctrl-a" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_beginning_of_line"
-
-
-
??: "ctrl-b" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_char"
-
-
-
??: "ctrl-c,_" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x1F"
-
-
-
??: "ctrl-c,b" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x02"
-
-
-
??: "ctrl-c,c" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x03"
-
-
-
??: "ctrl-c,d" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x04"
-
-
-
??: "ctrl-c,i" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x1D"
-
-
-
??: "ctrl-c,o" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x0F"
-
-
-
??: "ctrl-c,v" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \x16"
-
-
-
??: "ctrl-d" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_next_char"
-
-
-
??: "ctrl-down" (default)
-
???: ???
-
?: ??????
-
??????:
"/input history_global_next"
-
-
-
??: "ctrl-e" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_end_of_line"
-
-
-
??: "ctrl-f" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_char"
-
-
-
??: "ctrl-f1" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * -100%"
-
-
-
??: "ctrl-f11" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * -100%"
-
-
-
??: "ctrl-f12" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * +100%"
-
-
-
??: "ctrl-f2" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * +100%"
-
-
-
??: "ctrl-k" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_end_of_line"
-
-
-
??: "ctrl-l" (default)
-
???: ???
-
?: ??????
-
??????:
"/window refresh"
-
-
-
??: "ctrl-left" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_word"
-
-
-
??: "ctrl-n" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer +1"
-
-
-
??: "ctrl-o" (default)
-
???: ???
-
?: ??????
-
??????:
"/input history_use_get_next"
-
-
-
??: "ctrl-p" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer -1"
-
-
-
??: "ctrl-r" (default)
-
???: ???
-
?: ??????
-
??????:
"/input search_history"
-
-
-
??: "ctrl-right" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_word"
-
-
-
??: "ctrl-s" (default)
-
???: ???
-
?: ??????
-
??????:
"/input search_text_here"
-
-
-
??: "ctrl-t" (default)
-
???: ???
-
?: ??????
-
??????:
"/input transpose_chars"
-
-
-
??: "ctrl-u" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_beginning_of_line"
-
-
-
??: "ctrl-up" (default)
-
???: ???
-
?: ??????
-
??????:
"/input history_global_previous"
-
-
-
??: "ctrl-w" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_previous_word_whitespace"
-
-
-
??: "ctrl-x" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer switch"
-
-
-
??: "ctrl-y" (default)
-
???: ???
-
?: ??????
-
??????:
"/input clipboard_paste"
-
-
-
??: "ctrl-z" (default)
-
???: ???
-
?: ??????
-
??????:
"/sys suspend"
-
-
-
??: "delete" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_next_char"
-
-
-
??: "down" (default)
-
???: ???
-
?: ??????
-
??????:
"/input history_next"
-
-
-
??: "end" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_end_of_line"
-
-
-
??: "f1" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * -100%"
-
-
-
??: "f10" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll title * +30%"
-
-
-
??: "f11" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * -100%"
-
-
-
??: "f12" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * +100%"
-
-
-
??: "f2" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * +100%"
-
-
-
??: "f5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer -1"
-
-
-
??: "f6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer +1"
-
-
-
??: "f7" (default)
-
???: ???
-
?: ??????
-
??????:
"/window -1"
-
-
-
??: "f8" (default)
-
???: ???
-
?: ??????
-
??????:
"/window +1"
-
-
-
??: "f9" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll title * -30%"
-
-
-
??: "home" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_beginning_of_line"
-
-
-
??: "left" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_char"
-
-
-
??: "meta--" (default)
-
???: ???
-
?: ??????
-
??????:
"/filter toggle @"
-
-
[[option_weechat.key.meta-/]] weechat.key.meta-/
-
??: "meta-/" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer jump last_displayed"
-
-
-
??: "meta-0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *10"
-
-
-
??: "meta-1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *1"
-
-
-
??: "meta-2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *2"
-
-
-
??: "meta-3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *3"
-
-
-
??: "meta-4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *4"
-
-
-
??: "meta-5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *5"
-
-
-
??: "meta-6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *6"
-
-
-
??: "meta-7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *7"
-
-
-
??: "meta-8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *8"
-
-
-
??: "meta-9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *9"
-
-
[[option_weechat.key.meta-<]] weechat.key.meta-<
-
??: "meta-<" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer jump prev_visited"
-
-
[[option_weechat.key.meta-=]] weechat.key.meta-=
-
??: "meta-=" (default)
-
???: ???
-
?: ??????
-
??????:
"/filter toggle"
-
-
[[option_weechat.key.meta→]] weechat.key.meta->
-
??: "meta->" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer jump next_visited"
-
-
-
??: "meta-B" (default)
-
???: ???
-
?: ??????
-
??????:
"/buflist toggle"
-
-
-
??: "meta-N" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar toggle nicklist"
-
-
-
??: "meta-R" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_input"
-
-
-
??: "meta-U" (default)
-
???: ???
-
?: ??????
-
??????:
"/allbuf /buffer set unread"
-
-
-
??: "meta-_" (default)
-
???: ???
-
?: ??????
-
??????:
"/input redo"
-
-
-
??: "meta-a" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer jump smart"
-
-
-
??: "meta-b" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_word"
-
-
-
??: "meta-backspace" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_previous_word"
-
-
-
??: "meta-ctrl-k" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_end_of_input"
-
-
-
??: "meta-ctrl-l" (default)
-
???: ???
-
?: ??????
-
??????:
"/remote togglecmd"
-
-
-
??: "meta-ctrl-u" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_beginning_of_input"
-
-
-
??: "meta-d" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_next_word"
-
-
-
??: "meta-down" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer +1"
-
-
-
??: "meta-end" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_bottom"
-
-
-
??: "meta-f" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_word"
-
-
-
??: "meta-f1" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * b"
-
-
-
??: "meta-f11" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * b"
-
-
-
??: "meta-f12" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist * e"
-
-
-
??: "meta-f2" (default)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll buflist * e"
-
-
-
??: "meta-h,meta-R" (default)
-
???: ???
-
?: ??????
-
??????:
"/hotlist restore -all"
-
-
-
??: "meta-h,meta-c" (default)
-
???: ???
-
?: ??????
-
??????:
"/hotlist clear"
-
-
-
??: "meta-h,meta-m" (default)
-
???: ???
-
?: ??????
-
??????:
"/hotlist remove"
-
-
-
??: "meta-h,meta-r" (default)
-
???: ???
-
?: ??????
-
??????:
"/hotlist restore"
-
-
-
??: "meta-home" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_top"
-
-
-
??: "meta-j,0,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *1"
-
-
-
??: "meta-j,0,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *2"
-
-
-
??: "meta-j,0,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *3"
-
-
-
??: "meta-j,0,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *4"
-
-
-
??: "meta-j,0,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *5"
-
-
-
??: "meta-j,0,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *6"
-
-
-
??: "meta-j,0,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *7"
-
-
-
??: "meta-j,0,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *8"
-
-
-
??: "meta-j,0,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *9"
-
-
-
??: "meta-j,1,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *10"
-
-
-
??: "meta-j,1,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *11"
-
-
-
??: "meta-j,1,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *12"
-
-
-
??: "meta-j,1,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *13"
-
-
-
??: "meta-j,1,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *14"
-
-
-
??: "meta-j,1,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *15"
-
-
-
??: "meta-j,1,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *16"
-
-
-
??: "meta-j,1,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *17"
-
-
-
??: "meta-j,1,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *18"
-
-
-
??: "meta-j,1,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *19"
-
-
-
??: "meta-j,2,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *20"
-
-
-
??: "meta-j,2,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *21"
-
-
-
??: "meta-j,2,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *22"
-
-
-
??: "meta-j,2,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *23"
-
-
-
??: "meta-j,2,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *24"
-
-
-
??: "meta-j,2,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *25"
-
-
-
??: "meta-j,2,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *26"
-
-
-
??: "meta-j,2,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *27"
-
-
-
??: "meta-j,2,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *28"
-
-
-
??: "meta-j,2,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *29"
-
-
-
??: "meta-j,3,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *30"
-
-
-
??: "meta-j,3,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *31"
-
-
-
??: "meta-j,3,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *32"
-
-
-
??: "meta-j,3,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *33"
-
-
-
??: "meta-j,3,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *34"
-
-
-
??: "meta-j,3,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *35"
-
-
-
??: "meta-j,3,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *36"
-
-
-
??: "meta-j,3,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *37"
-
-
-
??: "meta-j,3,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *38"
-
-
-
??: "meta-j,3,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *39"
-
-
-
??: "meta-j,4,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *40"
-
-
-
??: "meta-j,4,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *41"
-
-
-
??: "meta-j,4,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *42"
-
-
-
??: "meta-j,4,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *43"
-
-
-
??: "meta-j,4,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *44"
-
-
-
??: "meta-j,4,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *45"
-
-
-
??: "meta-j,4,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *46"
-
-
-
??: "meta-j,4,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *47"
-
-
-
??: "meta-j,4,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *48"
-
-
-
??: "meta-j,4,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *49"
-
-
-
??: "meta-j,5,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *50"
-
-
-
??: "meta-j,5,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *51"
-
-
-
??: "meta-j,5,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *52"
-
-
-
??: "meta-j,5,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *53"
-
-
-
??: "meta-j,5,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *54"
-
-
-
??: "meta-j,5,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *55"
-
-
-
??: "meta-j,5,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *56"
-
-
-
??: "meta-j,5,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *57"
-
-
-
??: "meta-j,5,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *58"
-
-
-
??: "meta-j,5,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *59"
-
-
-
??: "meta-j,6,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *60"
-
-
-
??: "meta-j,6,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *61"
-
-
-
??: "meta-j,6,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *62"
-
-
-
??: "meta-j,6,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *63"
-
-
-
??: "meta-j,6,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *64"
-
-
-
??: "meta-j,6,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *65"
-
-
-
??: "meta-j,6,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *66"
-
-
-
??: "meta-j,6,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *67"
-
-
-
??: "meta-j,6,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *68"
-
-
-
??: "meta-j,6,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *69"
-
-
-
??: "meta-j,7,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *70"
-
-
-
??: "meta-j,7,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *71"
-
-
-
??: "meta-j,7,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *72"
-
-
-
??: "meta-j,7,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *73"
-
-
-
??: "meta-j,7,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *74"
-
-
-
??: "meta-j,7,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *75"
-
-
-
??: "meta-j,7,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *76"
-
-
-
??: "meta-j,7,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *77"
-
-
-
??: "meta-j,7,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *78"
-
-
-
??: "meta-j,7,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *79"
-
-
-
??: "meta-j,8,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *80"
-
-
-
??: "meta-j,8,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *81"
-
-
-
??: "meta-j,8,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *82"
-
-
-
??: "meta-j,8,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *83"
-
-
-
??: "meta-j,8,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *84"
-
-
-
??: "meta-j,8,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *85"
-
-
-
??: "meta-j,8,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *86"
-
-
-
??: "meta-j,8,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *87"
-
-
-
??: "meta-j,8,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *88"
-
-
-
??: "meta-j,8,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *89"
-
-
-
??: "meta-j,9,0" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *90"
-
-
-
??: "meta-j,9,1" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *91"
-
-
-
??: "meta-j,9,2" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *92"
-
-
-
??: "meta-j,9,3" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *93"
-
-
-
??: "meta-j,9,4" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *94"
-
-
-
??: "meta-j,9,5" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *95"
-
-
-
??: "meta-j,9,6" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *96"
-
-
-
??: "meta-j,9,7" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *97"
-
-
-
??: "meta-j,9,8" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *98"
-
-
-
??: "meta-j,9,9" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer *99"
-
-
-
??: "meta-j,meta-f" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer -"
-
-
-
??: "meta-j,meta-l" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer +"
-
-
-
??: "meta-j,meta-r" (default)
-
???: ???
-
?: ??????
-
??????:
"/server raw"
-
-
-
??: "meta-j,meta-s" (default)
-
???: ???
-
?: ??????
-
??????:
"/server jump"
-
-
-
??: "meta-k" (default)
-
???: ???
-
?: ??????
-
??????:
"/input grab_key_command"
-
-
-
??: "meta-l" (default)
-
???: ???
-
?: ??????
-
??????:
"/window bare"
-
-
-
??: "meta-left" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer -1"
-
-
-
??: "meta-m" (default)
-
???: ???
-
?: ??????
-
??????:
"/mute mouse toggle"
-
-
-
??: "meta-n" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_next_highlight"
-
-
-
??: "meta-p" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_previous_highlight"
-
-
-
??: "meta-pgdn" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_down"
-
-
-
??: "meta-pgup" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_up"
-
-
-
??: "meta-r" (default)
-
???: ???
-
?: ??????
-
??????:
"/input delete_line"
-
-
-
??: "meta-return" (default)
-
???: ???
-
?: ??????
-
??????:
"/input insert \n"
-
-
-
??: "meta-right" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer +1"
-
-
-
??: "meta-s" (default)
-
???: ???
-
?: ??????
-
??????:
"/mute spell toggle"
-
-
-
??: "meta-u" (default)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_unread"
-
-
-
??: "meta-up" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer -1"
-
-
-
??: "meta-w,meta-b" (default)
-
???: ???
-
?: ??????
-
??????:
"/window balance"
-
-
-
??: "meta-w,meta-down" (default)
-
???: ???
-
?: ??????
-
??????:
"/window down"
-
-
-
??: "meta-w,meta-left" (default)
-
???: ???
-
?: ??????
-
??????:
"/window left"
-
-
-
??: "meta-w,meta-right" (default)
-
???: ???
-
?: ??????
-
??????:
"/window right"
-
-
-
??: "meta-w,meta-s" (default)
-
???: ???
-
?: ??????
-
??????:
"/window swap"
-
-
-
??: "meta-w,meta-up" (default)
-
???: ???
-
?: ??????
-
??????:
"/window up"
-
-
-
??: "meta-x" (default)
-
???: ???
-
?: ??????
-
??????:
"/buffer zoom"
-
-
-
??: "meta-z" (default)
-
???: ???
-
?: ??????
-
??????:
"/window zoom"
-
-
-
??: "pgdn" (default)
-
???: ???
-
?: ??????
-
??????:
"/window page_down"
-
-
-
??: "pgup" (default)
-
???: ???
-
?: ??????
-
??????:
"/window page_up"
-
-
-
??: "return" (default)
-
???: ???
-
?: ??????
-
??????:
"/input return"
-
-
-
??: "right" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_char"
-
-
-
??: "shift-down" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_line"
-
-
-
??: "shift-end" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_end_of_input"
-
-
-
??: "shift-home" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_beginning_of_input"
-
-
-
??: "shift-left" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_char"
-
-
-
??: "shift-right" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_next_char"
-
-
-
??: "shift-tab" (default)
-
???: ???
-
?: ??????
-
??????:
"/input complete_previous"
-
-
-
??: "shift-up" (default)
-
???: ???
-
?: ??????
-
??????:
"/input move_previous_line"
-
-
-
??: "tab" (default)
-
???: ???
-
?: ??????
-
??????:
"/input complete_next"
-
-
-
??: "up" (default)
-
???: ???
-
?: ??????
-
??????:
"/input history_previous"
-
-
-
??: "@chat:Q" (cursor)
-
???: ???
-
?: ??????
-
??????:
"hsignal:chat_quote_time_prefix_message;/cursor stop"
-
-
-
??: "@chat:l" (cursor)
-
???: ???
-
?: ??????
-
??????:
"hsignal:chat_quote_focused_line;/cursor stop"
-
-
-
??: "@chat:m" (cursor)
-
???: ???
-
?: ??????
-
??????:
"hsignal:chat_quote_message;/cursor stop"
-
-
-
??: "@chat:q" (cursor)
-
???: ???
-
?: ??????
-
??????:
"hsignal:chat_quote_prefix_message;/cursor stop"
-
-
weechat.key_cursor.@item(buffer_nicklist):K
-
??: "@item(buffer_nicklist):K" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/kickban ${nick}"
-
-
weechat.key_cursor.@item(buffer_nicklist):b
-
??: "@item(buffer_nicklist):b" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/ban ${nick}"
-
-
weechat.key_cursor.@item(buffer_nicklist):k
-
??: "@item(buffer_nicklist):k" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/kick ${nick}"
-
-
weechat.key_cursor.@item(buffer_nicklist):q
-
??: "@item(buffer_nicklist):q" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/query ${nick};/cursor stop"
-
-
weechat.key_cursor.@item(buffer_nicklist):w
-
??: "@item(buffer_nicklist):w" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/whois ${nick}"
-
-
-
??: "down" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move down"
-
-
-
??: "left" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move left"
-
-
-
??: "meta-down" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move edge_bottom"
-
-
-
??: "meta-end" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move bottom_right"
-
-
-
??: "meta-home" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move top_left"
-
-
-
??: "meta-left" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move edge_left"
-
-
-
??: "meta-right" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move edge_right"
-
-
weechat.key_cursor.meta-shift-down
-
??: "meta-shift-down" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move area_down"
-
-
weechat.key_cursor.meta-shift-left
-
??: "meta-shift-left" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move area_left"
-
-
weechat.key_cursor.meta-shift-right
-
??: "meta-shift-right" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move area_right"
-
-
weechat.key_cursor.meta-shift-up
-
??: "meta-shift-up" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move area_up"
-
-
-
??: "meta-up" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move edge_top"
-
-
-
??: "return" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor stop"
-
-
-
??: "right" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move right"
-
-
-
??: "up" (cursor)
-
???: ???
-
?: ??????
-
??????:
"/cursor move up"
-
-
-
??: "ctrl-o" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input history_use_get_next"
-
-
-
??: "ctrl-q" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_stop"
-
-
-
??: "ctrl-r" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_previous"
-
-
-
??: "ctrl-s" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_next"
-
-
-
??: "ctrl-x" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_regex"
-
-
-
??: "down" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_next"
-
-
-
??: "meta-c" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_case"
-
-
-
??: "return" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_stop_here"
-
-
-
??: "tab" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_where"
-
-
-
??: "up" (histsearch)
-
???: ???
-
?: ??????
-
??????:
"/input search_previous"
-
-
-
??: "@*:button3" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/cursor go ${_x},${_y}"
-
-
weechat.key_mouse.@bar(buflist):ctrl-wheeldown
-
??: "@bar(buflist):ctrl-wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@bar(buflist):ctrl-wheelup
-
??: "@bar(buflist):ctrl-wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@bar(input):button2
-
??: "@bar(input):button2" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/input grab_mouse_area"
-
-
weechat.key_mouse.@bar(nicklist):button1-gesture-down
-
??: "@bar(nicklist):button1-gesture-down" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist ${_window_number} +100%"
-
-
weechat.key_mouse.@bar(nicklist):button1-gesture-down-long
-
??: "@bar(nicklist):button1-gesture-down-long" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist ${_window_number} e"
-
-
weechat.key_mouse.@bar(nicklist):button1-gesture-up
-
??: "@bar(nicklist):button1-gesture-up" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist ${_window_number} -100%"
-
-
weechat.key_mouse.@bar(nicklist):button1-gesture-up-long
-
??: "@bar(nicklist):button1-gesture-up-long" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll nicklist ${_window_number} b"
-
-
weechat.key_mouse.@bar:wheeldown
-
??: "@bar:wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll ${_bar_name} ${_window_number} +20%"
-
-
weechat.key_mouse.@bar:wheelup
-
??: "@bar:wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/bar scroll ${_bar_name} ${_window_number} -20%"
-
-
weechat.key_mouse.@chat(fset.fset):button1
-
??: "@chat(fset.fset):button1" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/fset -go ${fset_option_index}"
-
-
weechat.key_mouse.@chat(fset.fset):button2*
-
??: "@chat(fset.fset):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:fset_mouse"
-
-
weechat.key_mouse.@chat(fset.fset):wheeldown
-
??: "@chat(fset.fset):wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/fset -down 5"
-
-
weechat.key_mouse.@chat(fset.fset):wheelup
-
??: "@chat(fset.fset):wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/fset -up 5"
-
-
weechat.key_mouse.@chat(irc.list_*):button1
-
??: "@chat(irc.list_*):button1" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/list -go ${_chat_line_y}"
-
-
weechat.key_mouse.@chat(irc.list_*):button2*
-
??: "@chat(irc.list_*):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:irc_list_mouse"
-
-
weechat.key_mouse.@chat(irc.list_*):wheeldown
-
??: "@chat(irc.list_*):wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/list -down 5"
-
-
weechat.key_mouse.@chat(irc.list_*):wheelup
-
??: "@chat(irc.list_*):wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/list -up 5"
-
-
weechat.key_mouse.@chat(script.scripts):button1
-
??: "@chat(script.scripts):button1" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/script -go ${_chat_line_y}"
-
-
weechat.key_mouse.@chat(script.scripts):button2
-
??: "@chat(script.scripts):button2" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/script -go ${_chat_line_y};/script installremove -q ${script_name_with_extension}"
-
-
weechat.key_mouse.@chat(script.scripts):wheeldown
-
??: "@chat(script.scripts):wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/script -down 5"
-
-
weechat.key_mouse.@chat(script.scripts):wheelup
-
??: "@chat(script.scripts):wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/script -up 5"
-
-
weechat.key_mouse.@chat:button1
-
??: "@chat:button1" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number}"
-
-
weechat.key_mouse.@chat:button1-gesture-left
-
??: "@chat:button1-gesture-left" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/buffer -1"
-
-
weechat.key_mouse.@chat:button1-gesture-left-long
-
??: "@chat:button1-gesture-left-long" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/buffer 1"
-
-
weechat.key_mouse.@chat:button1-gesture-right
-
??: "@chat:button1-gesture-right" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/buffer +1"
-
-
weechat.key_mouse.@chat:button1-gesture-right-long
-
??: "@chat:button1-gesture-right-long" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/buffer +"
-
-
weechat.key_mouse.@chat:ctrl-wheeldown
-
??: "@chat:ctrl-wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_horiz -window ${_window_number} +10%"
-
-
weechat.key_mouse.@chat:ctrl-wheelup
-
??: "@chat:ctrl-wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_horiz -window ${_window_number} -10%"
-
-
weechat.key_mouse.@chat:wheeldown
-
??: "@chat:wheeldown" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_down -window ${_window_number}"
-
-
weechat.key_mouse.@chat:wheelup
-
??: "@chat:wheelup" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window scroll_up -window ${_window_number}"
-
-
weechat.key_mouse.@item(buffer_nicklist):button1
-
??: "@item(buffer_nicklist):button1" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/query ${nick}"
-
-
weechat.key_mouse.@item(buffer_nicklist):button1-gesture-left
-
??: "@item(buffer_nicklist):button1-gesture-left" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/kick ${nick}"
-
-
weechat.key_mouse.@item(buffer_nicklist):button1-gesture-left-long
-
??: "@item(buffer_nicklist):button1-gesture-left-long" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/kickban ${nick}"
-
-
weechat.key_mouse.@item(buffer_nicklist):button2
-
??: "@item(buffer_nicklist):button2" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/whois ${nick}"
-
-
weechat.key_mouse.@item(buffer_nicklist):button2-gesture-left
-
??: "@item(buffer_nicklist):button2-gesture-left" (mouse)
-
???: ???
-
?: ??????
-
??????:
"/window ${_window_number};/ban ${nick}"
-
-
weechat.key_mouse.@item(buflist):button1*
-
??: "@item(buflist):button1*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist):button2*
-
??: "@item(buflist):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist2):button1*
-
??: "@item(buflist2):button1*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist2):button2*
-
??: "@item(buflist2):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist3):button1*
-
??: "@item(buflist3):button1*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist3):button2*
-
??: "@item(buflist3):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist4):button1*
-
??: "@item(buflist4):button1*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist4):button2*
-
??: "@item(buflist4):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist5):button1*
-
??: "@item(buflist5):button1*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
weechat.key_mouse.@item(buflist5):button2*
-
??: "@item(buflist5):button2*" (mouse)
-
???: ???
-
?: ??????
-
??????:
"hsignal:buflist_mouse"
-
-
-
??: "ctrl-q" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_stop"
-
-
-
??: "ctrl-r" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_previous"
-
-
-
??: "ctrl-s" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_next"
-
-
-
??: "ctrl-x" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_regex"
-
-
-
??: "down" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_next"
-
-
-
??: "meta-c" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_case"
-
-
-
??: "return" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_stop_here"
-
-
-
??: "tab" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_switch_where"
-
-
-
??: "up" (search)
-
???: ???
-
?: ??????
-
??????:
"/input search_previous"
-
-
weechat.look.align_end_of_lines
-
??: ????? (2 ???????): ????? (time?buffer?prefix?suffix?message (?????)) ?????????
-
???: enum
-
?: time, buffer, prefix, suffix, message
-
??????:
message
-
-
weechat.look.align_multiline_words
-
??: weechat.look.align_end_of_lines ???????????????????; ?????????????????????????????????? URL ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ?????????????????????????? (????????????????)
-
???: ???
-
?: ??????
-
??????:
"++"
-
-
-
??: ?????????????????????????? (???????????????)
-
???: ???
-
?: ??????
-
??????:
"<<"
-
-
-
??: ?????????????????????????? (???????????????)
-
???: ???
-
?: ??????
-
??????:
">>"
-
-
-
??: ?????????????????????????? (????????????????)
-
???: ???
-
?: ??????
-
??????:
"--"
-
-
weechat.look.bare_display_exit_on_input
-
??: ??????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.bare_display_time_format
-
??: time format in bare display mode (see API man strftime for date/time specifiers, extra specifiers are supported, see function util_strftimeval in Plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"%H:%M"
-
-
weechat.look.buffer_auto_renumber
-
??: ???????????????1 ????????????; ??????????????????????????????1???????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.buffer_notify_default
-
??: ??????????????????? (??????????????????????????????????? WeeChat ???????????): all=???????? (?????)?message=????????????highlight=????????none=?????????????
-
???: enum
-
?: none, highlight, message, all
-
??????:
all
-
-
-
??: ??????????: end = ?????? (?? = ????? + 1) (?????)?first_gap = ?????????????????? (??????????????????); ??????????????????????????????????
-
???: enum
-
?: end, first_gap
-
??????:
end
-
-
weechat.look.buffer_search_case_sensitive
-
??: default text search in buffer: case-sensitive or not
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.buffer_search_force_default
-
??: ?????????????????????? (??????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.buffer_search_history
-
??: default text search command line history: local (buffer) or global history
-
???: enum
-
?: local, global
-
??????:
local
-
-
weechat.look.buffer_search_regex
-
??: ????????????????: ?????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.buffer_search_where
-
??: ????????????????: ??????????????????????????????
-
???: enum
-
?: prefix, message, prefix_message
-
??????:
prefix_message
-
-
weechat.look.buffer_time_format
-
??: time format for each line displayed in buffers (see man strftime for date/time specifiers, extra specifiers are supported, see function util_strftimeval in Plugin API reference) (note: content is evaluated, so you can use colors with format "${color:xxx}", see /help eval); variable "${highlight}" can be used in a condition to have a format specific to lines with highlight (see also option weechat.look.highlight_prefix); for example time using grayscale: "${color:252}%H${color:243}%M${color:237}%S", the same with milliseconds: "${color:252}%H${color:243}%M${color:237}%S.%.3", red background in case of highlight: "${if:${highlight}?${color:,red}}%H:%M:%S", red background in case of highlight with grayscale: ${if:${highlight}?${color:yellow,124}%H${color:187}%M${color:181}%S.%.3:${color:252}%H${color:243}%M${color:237}%S.%.3}
-
???: ???
-
?: ??????
-
??????:
"%H:%M:%S"
-
-
-
??: ??????????????????????????????: ???? " " ?????????????????????????????????????????????????????? (????????) (??: ????????????${color:xxx} ????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: keep a space on the right side of chat area if there is a bar displayed on the right (for both text and read marker)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.color_basic_force_bold
-
??: ??????????? "darkgray" ?? "??" ????? (?????????????????: ?????? 16 ????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.color_inactive_buffer
-
??: ??????????????????????? (??????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_inactive_message
-
??: ????????????????????? (??????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_inactive_prefix
-
??: ??????????????????????? (??????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_inactive_prefix_buffer
-
??: ????????????????????????????? (??????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_inactive_time
-
??: ?????????????????? (??????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_inactive_window
-
??: ???????????????????????? (????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.color_nick_offline
-
??: use a different color for offline nicks (not in nicklist anymore)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.color_pairs_auto_reset
-
??: ?????????????????????????????????????? (-1 = ?????????????????????????? "/color reset")
-
???: ??
-
?: -1 .. 256
-
??????:
5
-
-
-
??: ????????????????????????????????????? (??????????????????????????????????????????? on ?????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????????????????: ???????????????????????????; ????? ("/") ????????????????????? (?: ".$")
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.command_incomplete
-
??: ??????????????????????????????????????????? /he ? /help ?????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.config_permissions
-
??: permissions for configuration files (*.conf), as octal value (see man chmod); it must be a number with 3 digits, each digit can be 0 (no permissions), 2 (write only), 4 (read only) or 6 (read and write); the first digit must be 6 so that the user can read and write the file; by default configuration files can be read and written by the user only, for security reasons; for example 660 = "rw-rw-r--" = file readable and writable by the user and members of the group
-
???: ???
-
?: ??????
-
??????:
"600"
-
-
-
??: ??????????/quit ??????????? "-yes" ?????????????? (/help quit ??)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????/upgrade ??????????? "-yes" ?????????????? (/help upgrade ??)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.day_change_message_1date
-
??: ????????????????????1 ??????? (???????????) (??/?????? strftime ? man ?????????) (??: ????????? "${color:xxx}" ????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"-- %a, %d %b %Y --"
-
-
weechat.look.day_change_message_2dates
-
??: ????????????????????2 ??????? (2 ??????????); ??????? strftime ? 2 ??????????2 ????????? 2 ?? "%" ???????? (??/?????? strftime ? man ?????????) (??: ????????? "${color:xxx}" ????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"-- %%a, %%d %%b %%Y (%a, %d %b %Y) --"
-
-
weechat.look.eat_newline_glitch
-
??: ?????????eat_newline_glitch ? 0 ???; ??????????????????????????WeeChat ?????????????????????/???????????????????? (?????????????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.emphasized_attributes
-
??: attributes for emphasized text: one or more attribute chars ("%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline); if the string is empty, the colors weechat.color.emphasized* are used
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: comma separated list of words to highlight; case-insensitive comparison (use "(?-i)" at beginning of words to make them case-sensitive), words may begin or end with "*" for partial match; example: "test,(?-i)*toto*,flash*"
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.highlight_disable_regex
-
??: POSIX extended regular expression used to prevent any highlight from a message: this option has higher priority over other highlight options (if the string is found in the message, the highlight is disabled and the other options are ignored), regular expression is case-insensitive (use "(?-i)" at beginning to make it case-sensitive), examples: "
", "(?-i) " -
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: use a specific color for prefix of line in case of highlight (see also option weechat.look.buffer_time_format)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: POSIX extended regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by delimiters (chars different from: alphanumeric, "-", "_" and "|"), regular expression is case-insensitive (use "(?-i)" at beginning to make it case-sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: comma separated list of tags to highlight; case-insensitive comparison; wildcard "*" is allowed in each tag; many tags can be separated by "+" to make a logical "and" between tags; examples: "nick_flashcode" for messages from nick "FlashCode", "irc_notice+nick_toto*" for notices from a nick starting with "toto"
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.hotlist_add_conditions
-
??: ?????????????????? (??????????????? OK ???); ???????????????: "window" (????????????)?"buffer" (???????????????????)?"priority" (0 = ???1 = ??????2 = ????????????3 = ?????); ????????????????????????????????????1???????????? weechat ???????????????????????????????????
-
???: ???
-
?: ??????
-
??????:
"${away} || ${buffer.num_displayed} == 0 || ${info:relay_client_count,weechat,connected} > 0"
-
-
weechat.look.hotlist_buffer_separator
-
??: ????????????????????????
-
???: ???
-
?: ??????
-
??????:
", "
-
-
weechat.look.hotlist_count_max
-
??: ?????????????????????????????????: 0 = ?????????????0 ???? = ??? N ??????????? (???????????????????)
-
???: ??
-
?: 0 .. 4
-
??????:
2
-
-
weechat.look.hotlist_count_min_msg
-
??: ??????????????????????????
-
???: ??
-
?: 1 .. 100
-
??????:
2
-
-
weechat.look.hotlist_names_count
-
??: ????????????????????? (0 = ?????????????)
-
???: ??
-
?: 0 .. 10000
-
??????:
3
-
-
weechat.look.hotlist_names_length
-
??: ?????????????????????? (0 = ????)
-
???: ??
-
?: 0 .. 32
-
??????:
0
-
-
weechat.look.hotlist_names_level
-
??: ???????????????? (???????: 1=join/part?2=??????4=????????????8=???????: 12=?????????????????)
-
???: ??
-
?: 1 .. 15
-
??????:
12
-
-
weechat.look.hotlist_names_merged_buffers
-
??: ?????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????????????????
-
???: ???
-
?: ??????
-
??????:
"H: "
-
-
-
??: ??????????????????: buffer = ????????merged = ????????????????????????
-
???: enum
-
?: buffer, merged
-
??????:
merged
-
-
weechat.look.hotlist_short_names
-
??: ?????????????????????????????? (?????????? "." ??)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: comma-separated list of fields to sort hotlist; each field is a hdata variable of hotlist ("var") or a hdata variable of buffer ("buffer.var"); char "-" can be used before field to reverse order, char "~" can be used to do a case-insensitive comparison; examples: "-priority,buffer.number" for sort on hotlist priority then by buffer number, "-~buffer.full_name" for case-insensitive and reverse sort on buffer full name
-
???: ???
-
?: ??????
-
??????:
"-priority,time,time_usec"
-
-
-
??: ???????????????????
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.hotlist_unique_numbers
-
??: ?????????????????? (?????????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.hotlist_update_on_buffer_switch
-
??: update the hotlist when switching buffers
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.input_cursor_scroll
-
??: ??????????????????????????????????
-
???: ??
-
?: 0 .. 100
-
??????:
20
-
-
weechat.look.input_multiline_lead_linebreak
-
??: start the input text on a new line when the input contains multiple lines, so that the start of the lines align
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????? (??????????????????)
-
???: enum
-
?: none, commands, text, all
-
??????:
none
-
-
weechat.look.input_share_overwrite
-
??: ???????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????????? "undo" ?????? (0 = ???????)
-
???: ??
-
?: 0 .. 65535
-
??????:
32
-
-
weechat.look.item_away_message
-
??: ?????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.item_buffer_filter
-
??: ??????????????????????????? (???? "buffer_filter")
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
-
??: ??????????????????????????? (???? "buffer_zoom")
-
???: ???
-
?: ??????
-
??????:
"!"
-
-
weechat.look.item_mouse_status
-
??: ????????????????? (???? "mouse_status")
-
???: ???
-
?: ??????
-
??????:
"M"
-
-
-
??: "time" ????????? (??/?????? strftime ? man ?????????) (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"%H:%M"
-
-
weechat.look.jump_current_to_previous_buffer
-
??: ?????????????????????????????????/buffer *N (N ???????) ????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.jump_previous_buffer_when_closing
-
??: ??????????????????????????? (???????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.jump_smart_back_to_buffer
-
??: ???????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: "???" ?? (ctrl ??? meta ???????????) ????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????????? (?????) (??????? alt-k ?????); /input ?????????????????? (/help input ??)
-
???: ??
-
?: 1 .. 10000
-
??????:
800
-
-
-
??: ???????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: force color for some nicks: hash computed with nickname to find color will not be used for these nicks (format is: "nick1:color1;nick2:color2"); look up for nicks is with exact case then lower case, so it's possible to use only lower case for nicks in this option; color can include background with the format "text,background", for example "yellow,red"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer
-
???: enum
-
?: djb2, sum, djb2_32, sum_32
-
??????:
djb2
-
-
weechat.look.nick_color_hash_salt
-
??: salt for the hash algorithm used to find nick colors (the nickname is appended to this salt and the hash algorithm operates on this string); modifying this shuffles nick colors
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.nick_color_stop_chars
-
??: ?????????????????????????? (?????????????????????????????????????????????????) (?: "|" ????????"|nick|away" ??????? "|nick" ?????????); ????????????????? weechat.look.nick_color_force ?????????????????????????????????????????????????????????????????
-
???: ???
-
?: ??????
-
??????:
"_|["
-
-
-
??: ?????????????????????????????????: "<"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ?????????????????????????????????: ">"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????????????????? (?????/????????????): ??????????????????????????????????????????? WeeChat ???????????????????????????? ("ESC[200~"?????????????"ESC[201~")
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.paste_bracketed_timer_delay
-
??: ????????????????????????? ("ESC[201~") ???????????????????????????????????? (???)
-
???: ??
-
?: 1 .. 60
-
??????:
10
-
-
-
??: ?????????????????????? (-1 = ????????); ????????????? 1 ??????????? "input_paste" ???????????????? (????????? "input" ??????? "input_paste" ????????)
-
???: ??
-
?: -1 .. 2147483647
-
??????:
100
-
-
-
??: ?????????????????? (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
" *"
-
-
-
??: ?????????? (none?left?right (?????))
-
???: enum
-
?: none, left, right
-
??????:
right
-
-
-
??: ??????????????? (0 = ????????)
-
???: ??
-
?: 0 .. 128
-
??????:
0
-
-
-
??: ??????????????
-
???: ??
-
?: 0 .. 128
-
??????:
0
-
-
weechat.look.prefix_align_more
-
??: ???????????????????????? (???????? 1 ??)
-
???: ???
-
?: ??????
-
??????:
"+"
-
-
weechat.look.prefix_align_more_after
-
??: ?????????????? (??????? "+") ??? (???????????????????); ??????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.prefix_buffer_align
-
??: ???????????????????????????????????????????? (none, left, right (?????))
-
???: enum
-
?: none, left, right
-
??????:
right
-
-
weechat.look.prefix_buffer_align_max
-
??: ????????????????????????????????????????? (0 = ????????)
-
???: ??
-
?: 0 .. 128
-
??????:
0
-
-
weechat.look.prefix_buffer_align_more
-
??: ?????????????????????? (??????????????????????????) (???????? 1 ??)
-
???: ???
-
?: ??????
-
??????:
"+"
-
-
weechat.look.prefix_buffer_align_more_after
-
??: ?????????????? (??????? "+") ??? (???????????????????); ??????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????? (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"=!="
-
-
-
??: ??????????????? (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"-->"
-
-
-
??: ??????????????????? (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"--"
-
-
-
??: ??????????????? (??: ??????????"${color:xxx}" ????????????????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
"<--"
-
-
-
??: ???????????????????????????????????????????: ???? " " ???????????????????????????????????????????????????????????? (??????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.prefix_same_nick_middle
-
??: ???????????????????????????????????????????????????: ???? " " ???????????????????????????????????????????????????????????? (??????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????????????????
-
???: ???
-
?: ??????
-
??????:
"?"
-
-
weechat.look.quote_nick_prefix
-
??: ???????????????????????????? (/help cursor ??)
-
???: ???
-
?: ??????
-
??????:
"<"
-
-
weechat.look.quote_nick_suffix
-
??: ???????????????????????????? (/help cursor ??)
-
???: ???
-
?: ??????
-
??????:
">"
-
-
weechat.look.quote_time_format
-
??: time format when quoting a message (see /help cursor) (see man strftime for date/time specifiers, extra specifiers are supported, see function util_strftimeval in Plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"%H:%M:%S"
-
-
-
??: ??????????????? (line ? char) ?????????
-
???: enum
-
?: none, line, char
-
??????:
line
-
-
weechat.look.read_marker_always_show
-
??: ??????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.read_marker_string
-
??: ??????????????????? (??????????????)
-
???: ???
-
?: ??????
-
??????:
"- "
-
-
weechat.look.read_marker_update_on_buffer_switch
-
??: update the read marker when switching buffers
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.save_config_on_exit
-
??: ?????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.save_config_with_fsync
-
??: fsync ????????????????????????????????? (man fsync ?????????); fsync ???????fsync ???????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.save_layout_on_exit
-
??: ???????????? (?????????????)
-
???: enum
-
?: none, buffers, windows, all
-
??????:
none
-
-
-
??: scroll_up ? scroll_down ??????????
-
???: ??
-
?: 1 .. 2147483647
-
??????:
3
-
-
weechat.look.scroll_bottom_after_switch
-
??: ???????????????????????????? (???????????????????); ????????????????????? (????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.scroll_page_percent
-
??: 1 ????????????????????????????? (??? 100 ? 1 ????50 ?????)
-
???: ??
-
?: 1 .. 100
-
??????:
100
-
-
weechat.look.search_text_not_found_alert
-
??: ??????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.separator_horizontal
-
??: ???????????????????? (????? ncurses ???????????????? URL ?????????????????); ???????????????? 1 ????????????
-
???: ???
-
?: ??????
-
??????:
"-"
-
-
weechat.look.separator_vertical
-
??: ???????????????????? (????? ncurses ?????????????????? URL ?????????????????); ???????????????? 1 ????????????
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.tab_whitespace_char
-
??: first char to display for tabulations when whitespace mode is enabled with command `/debug whitespace`; width on screen must be exactly one char; subsequent chars are set by option weechat.look.whitespace_char
-
???: ???
-
?: ??????
-
??????:
"?"
-
-
-
??: ?????????????????????????????
-
???: ??
-
?: 1 .. 64
-
??????:
1
-
-
-
??: ???????????????????????????? (??/?????? strftime ? man ?????????)
-
???: ???
-
?: ??????
-
??????:
"%a, %d %b %Y %T"
-
-
-
??: char to display for spaces when whitespace mode is enabled with command `/debug whitespace`; width on screen must be exactly one char; see also option weechat.look.tab_whitespace_char
-
???: ???
-
?: ??????
-
??????:
"?"
-
-
-
??: ????????????????????????????????????????????????? (?????????????????alt-z ?????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
weechat.look.window_separator_horizontal
-
??: ?????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.look.window_separator_vertical
-
??: ?????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????? (Curses GUI ??????); ???????????????????? (??: ?????????/help eval ?????????); ?: "WeeChat ${info:version}"
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.look.word_chars_highlight
-
??: ???????????????????? (???????) ??????????; ????????????????? (??: a-z)????????? (??? "alnum"?wctype ? man ??); ????? "!" ????????? (??????????????????); "*" ?????????????; unicode ??? \u1234 ???????????????? \u00A0 ????????????? (?????????? /help print ?????????)
-
???: ???
-
?: ??????
-
??????:
"!\u00A0,-,_,|,alnum"
-
-
-
??: ????????????????????? (???????) ??????????; ????????????????? (??: a-z)????????? (??? "alnum"?wctype ? man ??); ????? "!" ????????? (??????????????????); "*" ?????????????; unicode ??? \u1234 ???????????????? \u00A0 ????????????? (?????????? /help print ?????????)
-
???: ???
-
?: ??????
-
??????:
"!\u00A0,-,_,|,alnum"
-
-
weechat.network.connection_timeout
-
??: ??????????????????? (???) (????????)
-
???: ??
-
?: 1 .. 2147483647
-
??????:
60
-
-
weechat.network.gnutls_ca_system
-
??: load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using TLS connections at all
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.network.gnutls_ca_user
-
??: extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.network.gnutls_handshake_timeout
-
??: gnutls ?????????????? (???)
-
???: ??
-
?: 1 .. 2147483647
-
??????:
30
-
-
-
??: Curl ????? URL ???????????????????? (?????????????????????? hook_process ???????????????????); ??????????? /proxy ?????????????
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ??????????????????????????????"*" ???????????????"!" ?????????????????????????????? "*" ?????????? (?: "*" ??? "*,!lua,!tcl")
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
-
??: ???????????????????????
-
???: ???
-
?: ??????
-
??????:
".so,.dll"
-
-
-
??: path for searching plugins (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_data_dir}/plugins"
-
-
weechat.plugin.save_config_on_unload
-
??: ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
"${if:${info:weechat_headless}?/reload:/quit -yes}"
-
-
-
??: command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
"/quit -yes"
-
-
-
??: command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
"/quit -yes"
-
-
-
??: command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: command to execute when the signal is received, multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.startup.command_after_plugins
-
??: command executed when WeeChat starts, after loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
""
-
-
weechat.startup.command_before_plugins
-
??: command executed when WeeChat starts, before loading plugins; multiple commands can be separated by semicolons (note: commands are evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: WeeChat ?????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
weechat.startup.display_version
-
??: WeeChat ????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: WeeChat ?????????????????: "res1:limit1,res2:limit2"; ???????? (RLIMIT_XXX) ?????????? (?? man setrlimit ?????????) ??; ?? -1 ? "???" ??; ?: core ????????????????????? 1GB ???: "core:-1,as:1000000000"
-
???: ???
-
?: ??????
-
??????:
""
-
8. IRC
IRC プラグインは IRC プロトコルに従って他の人と会話を行うために設計されています。
マルチサーバに対応し、DCC チャットとファイル転送 (xfer プラグインを使います。Xfer プラグインを参照) を含む全ての IRC コマンドをサポートしています。
8.1. コマンドラインオプション
以下のように 1 つ以上の IRC サーバに対応する URL を引数として与えることができます:
irc[6][s]://[nick[:password]@]irc.example.org[:port][/channel][,channel[...]]
alice というニックネームを使って irc.libera.chat ホストのデフォルトポート (6667) で稼働中の IRC サーバ上の #weechat と #weechat-fr チャンネルに参加する例:
weechat irc://alice@irc.libera.chat/#weechat,#weechat-fr
8.2. Servers
Add a server
By default no servers are defined. You can add as many servers as you want with the /server command.
For example to connect to libera.chat ↗:
/server add libera irc.libera.chat
注記
|
Default port is 6697 and TLS (encrypted traffic) is enabled. |
You can tell WeeChat to auto-connect to this server on startup:
/set irc.server.libera.autoconnect on
To authenticate, it is recommended to use SASL (if supported on the server), with the password stored as secured data (see also chapter on SASL authentication):
/set irc.server.libera.sasl_username "alice" /secure set libera xxxxxxx /set irc.server.libera.sasl_password "${sec.data.libera}"
If SASL is not supported, you can use a command to send a message to nickserv:
/set irc.server.libera.command "/msg nickserv identify ${sec.data.libera}"
注記
|
By sending a message to nickserv, you may authenticate after joining channels
which could be a problem on some channels requiring you to be authenticated
to join. In this case, you can set a command delay:
/set irc.server.libera.command_delay 5 .
|
Server options
Server options are named irc.server.<server>.<option>
where <server>
is the
internal name of the server and <option>
the name of an option.
The value of a server option is inherited from irc.server_default.xxx
if the server option has the special value null
.
For example if you created the libera server with the commands above, you’ll
see this with the command /fset libera
:
irc.server.libera.addresses 文字列 "irc.libera.chat" irc.server.libera.anti_flood 整数 null -> 2000 irc.server.libera.autoconnect ブール on irc.server.libera.autojoin 文字列 null -> "" irc.server.libera.autojoin_delay 整数 null -> 0 irc.server.libera.autojoin_dynamic ブール null -> off irc.server.libera.autoreconnect ブール null -> on irc.server.libera.autoreconnect_delay 整数 null -> 10 irc.server.libera.autorejoin ブール null -> off irc.server.libera.autorejoin_delay 整数 null -> 30 irc.server.libera.away_check 整数 null -> 0 irc.server.libera.away_check_max_nicks 整数 null -> 25 irc.server.libera.capabilities 文字列 null -> "*" irc.server.libera.charset_message enum null -> message irc.server.libera.command 文字列 null -> "" irc.server.libera.command_delay 整数 null -> 0 irc.server.libera.connection_timeout 整数 null -> 60 irc.server.libera.default_chantypes 文字列 null -> "#&" irc.server.libera.ipv6 enum null -> auto irc.server.libera.local_hostname 文字列 null -> "" irc.server.libera.msg_kick 文字列 null -> "" irc.server.libera.msg_part 文字列 null -> "WeeChat ${info:version}" irc.server.libera.msg_quit 文字列 null -> "WeeChat ${info:version}" irc.server.libera.nicks 文字列 null -> "${username},${username}2,${username}3,${username}4,${username}5" irc.server.libera.nicks_alternate ブール null -> on irc.server.libera.notify 文字列 null -> "" irc.server.libera.password 文字列 null -> "" irc.server.libera.proxy 文字列 null -> "" irc.server.libera.realname 文字列 null -> "" irc.server.libera.registered_mode 文字列 null -> "r" irc.server.libera.sasl_fail enum null -> reconnect irc.server.libera.sasl_key 文字列 null -> "" irc.server.libera.sasl_mechanism enum null -> plain irc.server.libera.sasl_password 文字列 "${sec.data.libera}" irc.server.libera.sasl_timeout 整数 null -> 15 irc.server.libera.sasl_username 文字列 "alice" irc.server.libera.split_msg_max_length 整数 null -> 512 irc.server.libera.tls ブール null -> on irc.server.libera.tls_cert 文字列 null -> "" irc.server.libera.tls_dhkey_size 整数 null -> 2048 irc.server.libera.tls_fingerprint 文字列 null -> "" irc.server.libera.tls_password 文字列 null -> "" irc.server.libera.tls_priorities 文字列 null -> "NORMAL" irc.server.libera.tls_verify ブール null -> on irc.server.libera.usermode 文字列 null -> "" irc.server.libera.username 文字列 null -> "${username}"
For example if you want to automatically connect to all servers you define without having to do it on each server, you can do:
/set irc.server_default.autoconnect on
And then you can reset the server option so that it uses the default inherited
value, which is now on
instead of the default value off
:
/unset irc.server.libera.autoconnect
TLS 証明書
TLS を使って IRC サーバに接続する場合、WeeChat はデフォルトで接続が完全に信頼できるものかどうかを確認します。
以下のオプションで TLS 接続を設定します:
- weechat.network.gnutls_ca_system
-
load system’s default trusted certificate authorities on startup
- weechat.network.gnutls_ca_user
-
extra file(s) with certificate authorities
- irc.server.xxx.tls_cert
-
自動的にニックネームを確認するために利用される TLS 証明書ファイル (例えば oftc サーバにおける CertFP の場合、以下を確認してください)
- irc.server.xxx.tls_dhkey_size
-
Diffie-Hellman キー交換の際に利用される鍵サイズ (デフォルト: 2048)
- irc.server.xxx.tls_verify
-
TLS 接続が完全に信頼できることの確認を行う (デフォルトで有効)
注記
|
"tls_verify" オプションはデフォルトで有効です、したがって厳密な確認が行われ、0.3.1 より前のバージョンでは信頼性の確認に成功していたものが失敗する場合もあります。 |
最初の例: oftc に接続して、証明書を確認
-
シェルを使って証明書をインポート:
mkdir -p ~/.config/weechat/tls
wget -O ~/.config/weechat/tls/CAs.pem https://www.spi-inc.org/ca/spi-cacert.crt
注記
|
You must replace ~/.config/weechat by the path to your WeeChat config directory
which can also be for example ~/.weechat .
|
注記
|
CAs.pem ファイル中で複数の証明書を連結することもできます。 |
-
WeeChat では、"oftc" サーバが既に追加されています:
/connect oftc
2 番目の例: CertFP を使って oftc に接続
-
シェルで証明書を作成:
mkdir -p ~/.config/weechat/tls
cd ~/.config/weechat/tls
openssl req -nodes -newkey rsa:2048 -keyout nick.pem -x509 -days 365 -out nick.pem
注記
|
You must replace ~/.config/weechat by the path to your WeeChat config directory
which can also be for example ~/.weechat .
|
-
WeeChat では、"oftc" サーバが既に追加されています:
/set irc.server.oftc.tls_cert "${weechat_config_dir}/tls/nick.pem" /connect oftc /msg nickserv cert add
For more information, please look at this page ↗.
SASL 認証
WeeChat は SASL 認証をサポートします、以下の認証メカニズムを利用できます:
-
plain: 平文パスワード (デフォルト)
-
scram-sha-1: SCRAM with SHA-1 digest algorithm
-
scram-sha-256: SCRAM with SHA-256 digest algorithm
-
scram-sha-512: SCRAM with SHA-512 digest algorithm
-
ecdsa-nist256p-challenge: 公開鍵/秘密鍵を使うチャレンジ認証
-
external: クライアント側 TLS 証明書
サーバオプション:
-
sasl_mechanism: 利用する認証メカニズム (上記参照)
-
sasl_timeout: 認証時のタイムアウト (秒単位)
-
sasl_fail: 認証に失敗した場合の挙動
-
sasl_username: ユーザ名 (ニックネーム)
-
sasl_password: パスワード
-
sasl_key: ECC 秘密鍵を含むファイル (ecdsa-nist256p-challenge 用)
SASL ECDSA-NIST256P-CHALLENGE 認証
ECDSA-NIST256P-CHALLENGE を使って認証を行うためには、秘密鍵を作成してください (接続の際にパスワードは不要です)。
鍵を作成するには、以下のコマンドを使ってください:
openssl ecparam -genkey -name prime256v1 -out ~/.config/weechat/ecdsa.pem
注記
|
You must replace ~/.config/weechat by the path to your WeeChat config directory
which can also be for example ~/.weechat .
|
公開鍵を (base64 エンコード形式で) 作成するには、以下のコマンドを使ってください:
openssl ec -noout -text -conv_form compressed -in ~/.config/weechat/ecdsa.pem | grep '^pub:' -A 3 | tail -n 3 | tr -d ' \n:' | xxd -r -p | base64
サーバに接続、本人確認 (例えば "nickserv identify" を使って)、nickserv を使ってアカウントに公開鍵を設定 (アカウントの公開鍵に base64 文字列を指定する):
/connect libera /msg nickserv identify your_password /msg nickserv set pubkey Av8k1FOGetUDq7sPMBfufSIZ5c2I/QYWgiwHtNXkVe/q
サーバの SASL オプションを設定:
/set irc.server.libera.sasl_mechanism ecdsa-nist256p-challenge /set irc.server.libera.sasl_username "your_nickname" /set irc.server.libera.sasl_key "${weechat_config_dir}/ecdsa.pem"
サーバに再接続:
/reconnect libera
Connection
You can connect to server with the /connect command:
/connect libera
To disconnect:
/disconnect libera
Or just this if you are on any buffer belonging to libera server (server, channel, private):
/disconnect
When you connect to multiple servers at same time, server buffers are merged
by default and you can switch between them with the Ctrl+x key.
It is possible to disable auto merge of server buffers to have independent
server buffers:
/set irc.look.server_buffer independent
Connect with Tor and SASL
Some servers support connections with Tor ↗, a network of virtual tunnels that allows people and groups to improve their privacy and security on the Internet.
最初に、Tor をインストールしてください。Debian (とその派生ディストリビューション) の場合:
sudo apt-get install tor
WeeChat で Tor サービスを使った socks5 プロキシを作成してください (ホスト名/IP アドレス、ポート番号は Tor の設定に依存します):
/proxy add tor socks5 127.0.0.1 9050
Now, add a new server (replace server name "irc-tor" and the address by a valid one):
/server add irc-tor this.is.the.address.onion
Tor プロキシを設定:
/set irc.server.irc-tor.proxy "tor"
ECDSA-NIST256P-CHALLENGE メカニズムで SASL 認証を設定 (秘密鍵を作成するには SASL ECDSA-NIST256P-CHALLENGE 認証を参照してください):
/set irc.server.irc-tor.sasl_mechanism ecdsa-nist256p-challenge /set irc.server.irc-tor.sasl_username "your_nickname" /set irc.server.irc-tor.sasl_key "${weechat_config_dir}/ecdsa.pem"
And finally, connect to the server:
/connect irc-tor
8.3. IRCv3 support
WeeChat supports the following IRCv3 extensions ↗:
By default all capabilities supported by the server and WeeChat are automatically enabled (see option irc.server_default.capabilities).
Tables with comparison of different IRC clients, including WeeChat, are available on this page ↗.
account-notify
Specification: account-notify ↗
This capability allows the server to send messages when users identify or
unidentify on the server.
WeeChat displays such messages if the option
irc.look.display_account_message
is enabled (default value).
Examples:
-- alice has identified as Alice01 -- alice has unidentified
account-tag
Specification: account-tag ↗
This capability allows the server to send account as message tag to commands
sent to the client.
WeeChat parses this tag and saves it in the message, but it is not used or
displayed. It can be used in /filter command to filter
messages matching specific accounts.
Example of raw IRC message received:
@account=Alice01 :user@example.com PRIVMSG #test :Hello!
Message displayed in channel:
<alice> Hello!
Message with tags:
<alice> Hello! [irc_privmsg,irc_tag_account_Alice01,notify_message,prefix_nick_lightcyan,nick_alice,host_user@example.com,log1]
away-notify
Specification: away-notify ↗
This capability allows the server to send away notifications for users present on the same channels as you.
When the away status is changed for a user (away or back), this is reflected with a specific color in the nicklist, using the following options:
batch
Specification: batch ↗
This capability allows the server to send batched events (grouping of several messages that are related).
For now, WeeChat only stores messages received in a batch and processes as usual later, when the batch ends.
cap-notify
Specification: cap-notify ↗
This capability allows the server to advertise on new or removed capabilities
on the server (via CAP NEW
and CAP DEL
commands).
Examples:
-- irc: クライアントの機能、現在利用可能なもの: sasl -- irc: クライアントの機能、削除されたもの: sasl
chghost
Specification: chghost ↗
This capability allows the server to send messages when users change name or host.
When the option irc.look.smart_filter_chghost
is enabled (default value), the host changes are automatically hidden if the nick
has not spoken for several minutes.
The color of the change host message is controlled by the option
irc.color.message_chghost.
Example:
-- alice (user@example.com) がホストを test.com に変更しました
draft/multiline
Specification: multiline ↗
This capability allows the client and server to send messages with multiple lines, using the batch capability, that must be enabled as well.
There are limits in term of bytes or number of lines in a multiline message that are given in the capability sent by the server, for example:
CAP alice LS * :draft/multiline=max-bytes=4096,max-lines=24
This sets a limit of 4096 bytes and 24 lines for a multiline batched content.
If the limits are not given by the server, the default in WeeChat are:
-
max bytes: 4096
-
max lines: 24
Only standard messages and those send by the /notice
command can be multiline.
ACTION CTCP messages sent with command /me are not affected
by this capability. That means multiline actions are sent as multiple actions.
警告
|
As the specification is a "draft", it may change and the multiline support can
possibly break at any time in WeeChat. The capability is automatically enabled if the server supports it and can be disabled with this command: /set irc.server_default.capabilities "*,!draft/multiline" .When the capability is disabled, a multiline message is sent as multiple messages, as if they were sent sequentially to the server. |
Example of IRC messages sent for a user message with two lines (this is a test
/ on two lines
), send to channel #test:
BATCH +i8Je7M7gquddoyC9 draft/multiline #test @batch=i8Je7M7gquddoyC9 PRIVMSG #test :this is a test @batch=i8Je7M7gquddoyC9 PRIVMSG #test :on two lines BATCH -i8Je7M7gquddoyC9
Display of the message sent in WeeChat:
19:01:45 alice | this is a test | on two lines
echo-message
Specification: echo-message ↗
This capability forces the server to send PRIVMSG, NOTICE and TAGMSG messages back to WeeChat.
WeeChat displays only the message received and not the message sent, so a delay can be noticed between the send and the display. When the message is displayed, it means it has been properly received by the server and propagated to other clients connected to the server as well.
extended-join
Specification: extended-join ↗
This capability allows the server to send account and real name when users
join channels.
WeeChat displays this additional information in join messages if the option
irc.look.display_extended_join
is enabled (default value).
Example:
--> john [John01] (John Doe) (~user@example.com) が #test に参加
invite-notify
Specification: invite-notify ↗
This capability allows the server to send invite messages when users are invited to channels.
Example:
-- alice が bob を #test に招待しました
message-tags
Specification: message-tags ↗
This capability allows to add metadata in messages.
These tags can be displayed using the command /debug tags
.
It must be enabled to use typing notifications.
monitor
Specification: monitor ↗
This capability allows the server to send notifications when clients become
online/offline.
WeeChat automatically uses this extension if available when using the
/notify command.
multi-prefix
Specification: multi-prefix ↗
注記
|
For now, WeeChat doesn’t display all prefixes in the /names output, even if
they are received and properly saved internally.
|
Example: output of /whois alice
:
-- [alice] @%+#test
server-time
Specification: server-time ↗
This capability allows the server to send time for messages as message tag.
When the time is received in a message, WeeChat uses it to display the message
(it can then be displayed with a past date).
The IRC proxy in Relay plugin supports this capability, so any IRC client of Relay should enable it to display the real message time in the backlog sent upon connection.
setname
Specification: setname ↗
This capability lets you change your real name by using the /setname command.
userhost-in-names
Specification: userhost-in-names ↗
This capability allows the server to send hostnames in /names responses.
注記
|
WeeChat doesn’t display hostnames in the /names output.
|
Example of raw IRC messages received without the capability:
:irc.server 353 alice = #test :@alice bob +carol
Example of raw IRC messages received with the capability:
:irc.server 353 alice = #test :@alice!user1@host1 bob!user2@host2 +carol!user3@host3
8.4. Channels
You can join channels with the /join command:
/join #channel
Part a channel (keeping the buffer open):
/part [quit message]
The channels you joined are not saved. If you want to join them automatically
when connecting to the server, you must set the server autojoin
option:
/set irc.server.libera.autojoin "#weechat,#weechat-fr"
注記
|
Some scripts can help to automatically set this option,
see /script search autojoin .
|
Be careful, spaces can be used only to separate list of channels from keys,
for example if #channel1
requires a key but not #channel2
:
/set irc.server.libera.autojoin "#channel1,#channel2 key1"
For help on the format, see option irc.server_default.autojoin.
8.5. Private messages
You can send a private message with the /query command, which opens a separate buffer:
/query bob hi, how are you?
Without arguments the command just opens the buffer (or selects it if already open):
/query bob
To close the private buffer, you can do this command on the private buffer:
/close
8.6. Smart filter
A smart filter is available to filter some messages when someone did not write anything in the channel during a configurable delay:
-
join: user joins the channel
-
part: user leaves the channel
-
quit: user quits the server
-
account: user changes its account
-
chghost: user changes name or host
-
mode: mode changes on channel
-
nick: user changes its nick
-
setname: user changes its real name
Smart filter is enabled by default, but you must add a filter to hide lines on buffers, for example:
/filter add irc_smart * irc_smart_filter *
It is possible to create filter for one channel only or channels beginning with same name (see the /filter command):
/filter add irc_smart_weechat irc.libera.#weechat* irc_smart_filter *
You can setup a longer delay (in minutes):
/set irc.look.smart_filter_delay 10
If someone did not write anything during last 10 minutes, its messages like join/part/quit will be hidden by default on channel, and you can use key Alt+= (toggle filters) to see them.
8.7. CTCP 応答
CTCP 応答をカスタマイズしたり、いくつかの CTCP 要求をブロック (無応答) することができます。
例えば、CTCP "VERSION" 要求に対する応答をカスタマイズするには、以下のコマンドを使ってください:
/set irc.ctcp.version "I'm running WeeChat ${version}, it rocks!"
注記
|
The name of CTCP must be in lower case. That means option irc.ctcp.VERSION would not work. |
CTCP "VERSION" 要求をブロックする (要求に対する応答を行わない) には、空文字列を設定してください:
/set irc.ctcp.version ""
未定義の CTCP 要求に対する応答もカスタマイズできます。例えば CTCP "BLABLA" 要求に対する応答を以下のように設定できます:
/set irc.ctcp.blabla "This is my answer to CTCP BLABLA"
特定のサーバに対して CTCP 応答をカスタマイズするには、CTCP 名の前に内部サーバ名をつけてください:
/set irc.ctcp.libera.version "WeeChat ${version} (for libera)"
標準の CTCP 応答を復元するには、オプションを削除してください:
/unset irc.ctcp.version
The CTCP replies are evaluated (see command /eval) and the following extra variables are available:
Variable | 説明 | 値/例 |
---|---|---|
|
サポートしている CTCP オプションのリスト |
|
|
WeeChat バージョン |
|
|
WeeChat バージョン + Git バージョン (1) |
|
|
Git バージョン (1) |
|
|
WeeChat コンパイル日時 |
|
|
OS に関する情報 |
|
|
WeeChat ウェブサイト |
|
|
WeeChat ウェブサイトのダウンロードページ |
|
|
現在の日時 |
|
|
IRC サーバ上で使うユーザ名 |
|
|
IRC サーバ上で使う実名 |
|
注記
|
(1) git バージョンとは git describe コマンドの出力です。Git リポジトリで
WeeChat をコンパイルし、Git がインストールされている場合のみ値が設定されます。
|
The default CTCP replies are:
CTCP | 応答書式 | 例 |
---|---|---|
CLIENTINFO |
|
|
SOURCE |
|
|
TIME |
|
|
VERSION |
|
|
8.8. IRC メッセージのターゲットバッファ
irc.msgbuffer.*
オプションを使えば、IRC メッセージに対するターゲットバッファ
(メッセージを表示するバッファ) をカスタマイズすることができます。
一部の IRC メッセージ (以下のリストを参照) に対して、以下の値を設定できます:
- current
-
現在のバッファ (IRC バッファまたはサーババッファの場合のデフォルト)
- private
-
ニックネームに対するプライベートバッファ、見つからない場合は現在のバッファまたはサーババッファ (irc.look.msgbuffer_fallback オプションに依存)
- server
-
サーババッファ
- weechat
-
WeeChat "core" バッファ
オプションが設定されていない (デフォルトの) 場合、WeeChat は適当なバッファを選びます。通常ではサーバまたはチャンネルバッファです。
カスタマイズできる一部の IRC メッセージ、別名のリストは以下です:
メッセージ | 別名 | 説明 |
---|---|---|
|
エラー |
|
|
チャンネルへの招待 |
|
|
参加 |
|
|
キック |
|
|
キル |
|
|
モード |
|
|
通知 |
|
|
退出 |
|
|
終了 |
|
|
トピック |
|
|
IRC オペレータメッセージ |
|
|
ctcp (プライベートまたは notice メッセージ内の、送信または受信メッセージ) |
|
|
ユーザモード文字列 |
|
|
|
whois (セキュアな接続) |
|
|
whois (離席状態) |
|
サーバへの接続状態 |
|
|
|
着席状態 |
|
|
離席状態 |
|
|
whois (登録済みニックネーム) |
|
|
whois (ヘルプモード) |
|
|
whois (ユーザ) |
|
|
whois (サーバ) |
|
|
whois (オペレータ) |
|
|
whowas |
|
|
who (終了) |
|
|
whois (アイドル状態) |
|
|
whois (終了) |
|
|
whois (チャンネル) |
|
|
whois (身元確認済みユーザ) |
|
|
list (開始) |
|
|
list (チャンネル) |
|
|
list (終了) |
|
|
whois (オペレータ権限を持っているユーザ) |
|
|
whois (ホスト) |
|
チャンネルの URL |
|
|
チャンネル作成日時 |
|
|
|
whois (ログイン時の名前) |
|
トピックが未設定のチャンネル |
|
|
チャンネルのトピック |
|
|
トピックに関する情報 |
|
|
|
whois (ボットが有効化されているか) |
|
|
whois (ホスト) |
|
招待中 |
|
|
|
whois (オペレータ) |
|
|
チャンネルオペレータを復活 |
|
|
チャンネルオペレータを復活 (終了) |
|
|
招待リスト |
|
|
招待リスト (終了) |
|
|
除外リスト |
|
|
除外リスト (終了) |
|
サーババージョン |
|
|
|
who |
|
|
チャンネル内ユーザのリスト |
|
|
チャンネル内ユーザのリストの終了 |
|
|
禁止リスト |
|
|
禁止リストの終了 |
|
|
whowas (終了) |
|
|
whois (接続元) |
|
|
whois (モード) |
|
|
指定したニックネームおよびチャンネルがありません |
|
|
指定したサーバがありません |
|
ニックネームにエラーがあります |
|
|
ニックネームが使用されています |
|
|
ニックネームを変更する権限がありません |
|
|
|
whois (セキュアな接続) |
|
|
発言禁止リスト |
|
|
発言禁止リストの終了 |
|
|
監視中のニックネームのリスト |
|
|
監視中のニックネームのリスト (終了) |
|
ログインに成功 |
その他の数値コマンドも同様にカスタマイズできます。
サーバ名を前につけることで、特定のサーバに対して設定することができます
(例: libera.whois
)。
例:
-
/whois
の結果をプライベートバッファに表示:
/set irc.msgbuffer.whois private
-
whois に対する設定をデフォルトに戻す (サーババッファに表示):
/unset irc.msgbuffer.whois
-
"libera" サーバの場合、招待メッセージを現在のバッファに表示:
/set irc.msgbuffer.libera.invite current
-
"303" (ison) メッセージを WeeChat "core" バッファに表示:
/set irc.msgbuffer.303 weechat
8.9. コマンド
-
action
: send a CTCP action to a nick or channel
/action [-server <server>] <target>[,<target>...] <text> server: send to this server (internal name) target: nick or channel (may be mask, "*" = current channel) text: ??????
-
admin
: ???????????????
/admin [<target>] target: ????
-
allchan
: ??????????????????????????
/allchan [-current] [-parted|-all] [-exclude=<channel>[,<channel>...]] <command> [-current] [-parted|-all] -include=<channel>[,<channel>...] <command> -current: execute command for channels of current server only -parted: execute command on parted channels (by default: execute command on active channels only) -all: execute command on all channels (active and parted) -exclude: exclude some channels (wildcard "*" is allowed) -include: include only some channels (wildcard "*" is allowed) command: command to execute (or text to send to buffer if command does not start with "/") Command and arguments are evaluated (see /help eval), the following variables are replaced: $server: server name $channel: channel name $nick: nick on server ${irc_server.xxx}: variable xxx in server ${irc_channel.xxx}: variable xxx in channel Examples: execute "/me is testing" on all channels: /allchan /me is testing say "hello" everywhere but not on #weechat: /allchan -exclude=#weechat hello say "hello" everywhere but not on #weechat and channels beginning with #linux: /allchan -exclude=#weechat,#linux* hello say "hello" on all channels beginning with #linux: /allchan -include=#linux* hello close all buffers with parted channels: /allchan -parted /close
-
allpv
: ???????????????????????????????????
/allpv [-current] [-exclude=<nick>[,<nick>...]] <command> [-current] -include=<nick>[,<nick>...] <command> -current: execute command for private buffers of current server only -exclude: exclude some nicks (wildcard "*" is allowed) -include: include only some nicks (wildcard "*" is allowed) command: command to execute (or text to send to buffer if command does not start with "/") Command and arguments are evaluated (see /help eval), the following variables are replaced: $server: server name $channel: channel name $nick: nick on server ${irc_server.xxx}: variable xxx in server ${irc_channel.xxx}: variable xxx in channel Examples: execute "/me is testing" on all private buffers: /allpv /me is testing say "hello" everywhere but not for nick foo: /allpv -exclude=foo hello say "hello" everywhere but not for nick foo and nicks beginning with bar: /allpv -exclude=foo,bar* hello say "hello" for all nicks beginning with bar: /allpv -include=bar* hello close all private buffers: /allpv /close
-
allserv
: ??????????????????
/allserv [-exclude=<server>[,<server>...]] <command> -include=<server>[,<server>...] <command> -exclude: exclude some servers (wildcard "*" is allowed) -include: include only some servers (wildcard "*" is allowed) command: command to execute (or text to send to buffer if command does not start with "/") Command and arguments are evaluated (see /help eval), the following variables are replaced: $server: server name $nick: nick on server ${irc_server.xxx}: variable xxx in server Examples: change nick on all servers: /allserv /nick newnick do a whois on my nick on all servers: /allserv /whois $nick
-
auth
: authenticate with SASL
/auth [<username> <password>] username: SASL username (content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name) password: SASL password or path to file with private key (content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name) If username and password are not provided, the values from server options "sasl_username" and "sasl_password" (or "sasl_key") are used. Examples: authenticate with username/password defined in the server: /auth authenticate as a different user: /auth user2 password2 authenticate as a different user with mechanism ecdsa-nist256p-challenge: /auth user2 ${weechat_config_dir}/ecdsa2.pem
-
autojoin
: configure the "autojoin" server option
/autojoin add [<channel>...] addraw <channel1>[,<channel2>...] [<key1>[,<key2>...]] del [<channel>...] apply join sort [buffer] add: add current channel or a list of channels (with optional keys) to the autojoin option; if you are on the channel and the key is not provided, the key is read in the channel addraw: use the IRC raw format (same as /join command): all channels separated by commas, optional keys separated by commas del: delete current channel or a list of channels from the autojoin option channel: channel name key: key for the channel apply: set currently joined channels in the autojoin option join: join the channels in the autojoin option sort: sort alphabetically channels in the autojoin option; with "buffer": first sort by buffer number, then alphabetically Examples: /autojoin add /autojoin add #test /autojoin add #chan1 #chan2 /allchan /autojoin add /autojoin addraw #chan1,#chan2,#chan3 key1,key2 /autojoin del /autojoin del #chan1 /autojoin apply /autojoin join /autojoin sort /autojoin sort buffer
-
ban
: ??????????????????
/ban [<channel>] [<nick>...] channel: channel name nick: nick or host Without argument, this command displays the ban list for current channel.
-
cap
: ?????????????
/cap ls list req|ack [<capability>...] end ls: list the capabilities supported by the server list: list the capabilities currently enabled req: request a new capability or remove a capability (if starting with "-", for example: "-multi-prefix") ack: acknowledge capabilities which require client-side acknowledgement end: end the capability negotiation Without argument, "ls" and "list" are sent. Capabilities supported by WeeChat are: account-notify, account-tag, away-notify, batch, cap-notify, chghost, draft/multiline, echo-message, extended-join, invite-notify, message-tags, multi-prefix, server-time, setname, userhost-in-names. The capabilities to automatically enable on servers can be set in option irc.server_default.capabilities (or by server in option irc.server.xxx.capabilities). Examples: display supported and enabled capabilities: /cap request capabilities multi-prefix and away-notify: /cap req multi-prefix away-notify request capability extended-join, remove capability multi-prefix: /cap req extended-join -multi-prefix remove capability away-notify: /cap req -away-notify
-
connect
: IRC ??????
/connect [<server>...] [-<option>[=<value>]] [-no<option>] [-nojoin] [-switch] -all|-auto|-open [-nojoin] [-switch] server: server name, which can be: - internal server name (added by /server add, recommended usage) - hostname/port or IP/port, port is 6697 by default for TLS, 6667 otherwise - URL with format: irc[6][s]://[nickname[:password]@]irc.example.org[:port][/#channel1][,#channel2[...]] Note: for an address/IP/URL, a temporary server is added (NOT SAVED), see /help irc.look.temporary_servers option: set option for server (for boolean option, value can be omitted) nooption: set boolean option to "off" (for example: -notls) -all: connect to all servers defined in configuration -auto: connect to servers with autoconnect enabled -open: connect to all opened servers that are not currently connected -nojoin: do not join any channel (even if autojoin is enabled on server) -switch: switch to next server address To disconnect from a server or stop any connection attempt, use command /disconnect. Examples: /connect libera /connect irc.oftc.net /connect irc.oftc.net/6667 -notls /connect irc6.oftc.net/9999 -ipv6=force /connect my.server.org -password=test /connect irc://nick@irc.oftc.net/#channel /connect -switch
-
ctcp
: CTCP ???????? (Client-To-Client Protocol)
/ctcp [-server <server>] <target>[,<target>...] <type> [<arguments>] server: send to this server (internal name) target: nick or channel ("*" = current channel) type: CTCP type (examples: "version", "ping", etc.) arguments: arguments for CTCP Examples: /ctcp toto time /ctcp toto version /ctcp * version
-
cycle
: ?????????????
/cycle [<channel>[,<channel>...]] [<message>] channel: channel name message: part message (displayed to other users)
-
dcc
: start a DCC (passive file transfer or direct chat)
/dcc chat <nick> send <nick> <file> nick: ?????? file: filename (on local host) Examples: /dcc chat toto /dcc send toto /home/foo/bar.txt
-
dehalfop
: ???????? half-operator ????
/dehalfop <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: remove channel half-operator status from everybody on channel except yourself
-
deop
: ??????????????????????
/deop <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: remove channel operator status from everybody on channel except yourself
-
devoice
: ??????????????
/devoice <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: remove voice from everybody on channel
-
die
: ???????????
/die [<target>] target: ????
-
disconnect
: ????????? IRC ??????????
/disconnect [<server>|-all|-pending [<reason>]] server: internal server name -all: disconnect from all servers -pending: cancel auto-reconnection on servers currently reconnecting reason: reason for the "quit"
-
halfop
: ??????????? half-operator ????
/halfop <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: give channel half-operator status to everybody on channel
-
ignore
: ???????????????????????/???????
/ignore list add|addreplace [re:]<nick> [<server> [<channel>]] del <number>|-all list: list all ignores add: add an ignore addreplace: add or replace an existing ignore nick: nick or hostname; can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace zero or more chars (the regular expression can start with "(?-i)" to become case-sensitive) del: delete an ignore number: number of ignore to delete (look at list to find it) -all: delete all ignores server: internal server name where ignore is working channel: channel name where ignore is working Note: if option irc.look.ignore_tag_messages is enabled, the ignored messages are just tagged with "irc_ignored" instead of being completely removed. Examples: /ignore add toto /ignore add toto@domain.com libera /ignore add toto*@*.domain.com libera #weechat
-
info
: ????????????
/info [<target>] target: ????
-
invite
: ???????????????
/invite <nick>... [<channel>] nick: ?????? channel: channel name
-
ison
: ??????? IRC ???????
/ison <nick>... nick: ??????
-
join
: ????????
/join [-noswitch] [-server <server>] [<channel1>[,<channel2>...]] [<key1>[,<key2>...]] -noswitch: do not switch to new buffer server: send to this server (internal name) channel: channel name key: key to join the channel (channels with a key must be the first in list) Examples: /join #weechat /join #protectedchan,#weechat key /join -server libera #weechat /join -noswitch #weechat
-
kick
: ??????????????
/kick [<channel>] <nick> [<reason>] channel: channel name nick: ?????? reason: reason (evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)
-
kickban
: ??????????????????????????
/kickban [<channel>] <nick> [<reason>] channel: channel name nick: ?????? reason: reason (evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values) It is possible to kick/ban with a mask, nick will be extracted from mask and replaced by "*". Example: /kickban toto!*@host.com
-
kill
: ?????? - ??????????
/kill <nick> [<reason>] nick: ?????? reason: reason
-
knock
: send a notice to an invitation-only channel, requesting an invite
/knock <channel> [<message>] channel: channel name message: ???????
-
links
: list all server names which are known by the server answering the query
/links [[<target>] <server_mask>] target: this remote server should answer the query server_mask: list of servers must match this mask
-
list
: list channels and their topics
/list [-server <server>] [<channel>[,<channel>...]] [<target>] [-server <server>] [-raw *|<regex>] -up|-down [<number>] -left|-right [<percent>] -go <line>|end -join -export <filename> server: send to this server (internal name) channel: channel name target: ???? -raw: display result on server buffer instead of a dedicated buffer regex: POSIX extended regular expression used to filter results (case-insensitive, can start by "(?-i)" to become case-sensitive); the special value "*" doesn't filter results -up: move the selected line up by "number" lines -down: move the selected line down by "number" lines -left: scroll the buffer by "percent" of width on the left -right: scroll the buffer by "percent" of width on the right -go: select a line by number, first line number is 0 ("end" to select the last line) -join: join the channel on the selected line -export: export list of channels to a file For keys, input and mouse actions on the buffer, see key bindings in User's guide. Sort keys on /list buffer: name: channel name (eg: "##test") name2: channel name without prefix (eg: "test") users: number of users on channel topic: channel topic Examples: list all channels on server buffer (no dedicated buffer and can be slow on large networks): /list -raw * list all channels beginning with "#weechat" on server buffer (no dedicated buffer and can be slow on large networks): /list -raw #weechat.* list all channels on a dedicated buffer (can be slow on large networks): /list list channel #weechat on a dedicated buffer: /list #weechat on /list buffer: channels with "weechat" in name: n:weechat channels with at least 100 users: u:100 channels with "freebsd" (case-insensitive) in topic and more than 10 users: c:${topic} =- freebsd && ${users} > 10 sort channels by users (big channels first), then name2 (name without prefix): s:-users,name2
-
lusers
: IRC ???????????????????
/lusers [<mask> [<target>]] mask: servers matching the mask only target: server for forwarding request
-
map
: IRC ???????????????????
-
me
: ????????? CTCP action ???
/me <message> message: ???????
-
mode
: ????????????????
/mode [<channel>] [+|-]o|p|s|i|t|n|m|l|b|e|v|k [<arguments>] <nick> [+|-]i|s|w|o channel: channel name to modify (default is current one) Channel modes: o: give/take channel operator privileges p: private channel s: secret channel i: invite-only channel t: topic settable by channel operator only n: no messages to channel from clients on the outside m: moderated channel l: set the user limit to channel b: set a ban mask to keep users out e: set exception mask v: give/take the ability to speak on a moderated channel k: set a channel key (password) User modes: nick: nick to modify i: invisible s: user receives server notices w: user receives wallops o: operator List of modes is not comprehensive, you should read documentation about your server to see all possible modes. Examples: /mode #weechat +t /mode nick +i
-
motd
: "????????" ???
/motd [<target>] target: ????
-
msg
: ?????????????????????
/msg [-server <server>] <target>[,<target>...] <text> server: send to this server (internal name) target: nick or channel (may be mask, "*" = current channel) text: ??????
-
names
: ?????????????????????????
/names [-count | -x] [<channel>[,<channel>...]] -count: display only number of users -x: display only users with this mode: -o for ops, -h for halfops, -v for voiced, etc. and -* for regular users channel: channel name
-
nick
: ????????????
/nick [-all] <nick> -all: set new nick for all connected servers nick: new nick
-
notice
: ???? notice ????????
/notice [-server <server>] <target> <text> server: send to this server (internal name) target: nick or channel name text: ??????
-
notify
: ??????????????????????????????
/notify add|addreplace <nick> [<server> [-away]] del <nick>|-all [<server>] add: add a notification addreplace: add or replace a notification nick: ?????? server: internal server name (by default current server) -away: notify when away message is changed (by doing whois on nick) del: delete a notification -all: delete all notifications Without argument, this command displays notifications for current server (or all servers if command is issued on core buffer). Examples: /notify add toto /notify add toto libera /notify add toto libera -away
-
op
: ????????????????
/op <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: give channel operator status to everybody on channel
-
oper
: ?????????
/oper <user> <password> user: user password: password
-
part
: ?????????
/part [<channel>[,<channel>...]] [<message>] channel: channel name message: part message (displayed to other users)
-
ping
: ?????????
/ping <target1> [<target2>] target1: server target2: forward ping to this server
-
pong
: ??????????
/pong <daemon> [<daemon2>] daemon: daemon who has responded to Ping message daemon2: forward message to this daemon
-
query
: ??????????????????????
/query [-noswitch] [-server <server>] <nick>[,<nick>...] [<text>] -noswitch: do not switch to new buffer server: send to this server (internal name) nick: ?????? text: ??????
-
quiet
: ????????????????
/quiet [<channel>] [<nick>...] channel: channel name nick: nick or host Without argument, this command displays the quiet list for current channel.
-
quote
: ??????????????????
/quote [-server <server>] <data> server: send to this server (internal name) data: raw data to send
-
reconnect
: ???????
/reconnect <server>... [-nojoin] [-switch] -all [-nojoin] [-switch] server: internal server name -all: reconnect to all servers -nojoin: do not join any channel (even if autojoin is enabled on server) -switch: switch to next server address
-
rehash
: ??????????????????
/rehash [<option>] option: ?????????????????
-
remove
: ????????????????????
/remove [<channel>] <nick> [<reason>] channel: channel name nick: ?????? reason: reason (special variables $nick, $channel and $server are replaced by their values)
-
restart
: ??????????
/restart [<target>] target: ????
-
rules
: request the server rules
-
sajoin
: ???????????????????
/sajoin <nick> <channel>[,<channel>...] nick: ?????? channel: channel name
-
samode
: ?????????????????????
/samode [<channel>] <mode> channel: channel name mode: mode for channel
-
sanick
: ?????????????????
/sanick <nick> <new_nick> nick: ?????? new_nick: new nick
-
sapart
: ?????????????????
/sapart <nick> <channel>[,<channel>...] nick: ?????? channel: channel name
-
saquit
: ????????????????????
/saquit <nick> <reason> nick: ?????? reason: reason
-
server
: IRC ????????????????
/server list|listfull [-connected] [<name>] add|addreplace <name> <hostname>[/<port>] [-temp] [-<option>[=<value>]] [-no<option>] copy|rename <name> <new_name> reorder <name>... open <name>|-all [<name>...] del|keep <name> deloutq|jump raw [<filter>] list: list servers (without argument, this list is displayed) listfull: list servers with detailed info for each server -connected: list only connected servers add: add a new server addreplace: add or replace an existing server name: server name, for internal and display use; this name is used to connect to the server (/connect name) and to set server options: irc.server.name.xxx hostname: name or IP address of server, with optional port (default: 6697 for TLS, 6667 otherwise), many addresses can be separated by a comma -temp: add a temporary server (not saved) option: set option for server (for boolean option, value can be omitted) nooption: set boolean option to "off" (for example: -notls) copy: duplicate a server rename: rename a server reorder: reorder list of servers open: open the server buffer without connecting keep: keep server in config file (for temporary servers only) del: delete a server deloutq: delete messages out queue for all servers (all messages WeeChat is currently sending) jump: jump to server buffer raw: open buffer with raw IRC data filter: set a new filter to see only matching messages (this filter can be used as input in raw IRC data buffer as well); allowed formats are: `*`: show all messages (no filter) `xxx`: show only messages containing "xxx" `s:xxx`: show only messages for server "xxx" `f:xxx`: show only messages with a flag: recv (message received), sent (message sent), modified (message modified by a modifier), redirected (message redirected) `m:xxx`: show only IRC command "xxx" `c:xxx`: show only messages matching the evaluated condition "xxx", using following variables: output of function irc_message_parse (like nick, command, channel, text, etc., see function info_get_hashtable in plugin API reference for the list of all variables), date (format: "%FT%T.%f", see function util_strftimeval in Plugin API reference), server, recv, sent, modified, redirected Examples: /server listfull /server list -connected /server add libera irc.libera.chat /server add libera irc.libera.chat/6667 -notls -autoconnect /server add chatspike irc.chatspike.net/6667,irc.duckspike.net/6667 -notls /server copy libera libera-test /server rename libera-test libera2 /server reorder libera2 libera /server del libera /server deloutq /server raw /server raw s:libera /server raw c:${recv} && ${command}==PRIVMSG && ${nick}==foo
-
service
: ??????????
/service <nick> <reserved> <distribution> <type> <reserved> <info> distribution: visibility of service type: reserved for future usage
-
servlist
: ?????????????????????????
/servlist [<mask> [<type>]] mask: list only services matching this mask type: list only services of this type
-
setname
: set real name
/setname <realname> realname: new real name
-
squery
: ?????????????
/squery <service> <text> service: name of service text: ??????
-
squit
: ?????????
/squit <target> <comment> target: ???? comment: comment
-
stats
: ????????????
/stats [<query> [<target>]] query: c/h/i/k/l/m/o/y/u (see RFC1459) target: ????
-
summon
: IRC ?????????????????????IRC ????????????????????
/summon <user> [<target> [<channel>]] user: username target: ???? channel: channel name
-
time
: ?????????????
/time [<target>] target: ?????????????
-
topic
: ????????????/??
/topic [<channel>] [<topic>|-delete] channel: channel name topic: new topic -delete: delete channel topic
-
trace
: ????????????????
/trace [<target>] target: ????
-
unban
: ??????????????????
/unban [<channel>] <nick>|<number>|<n1>-<n2>... channel: channel name nick: nick or host number: ban number (as displayed by command /ban) n1: interval start number n2: interval end number
-
unquiet
: ????????????????????????
/unquiet [<channel>] <nick>|<number>|<n1>-<n2>... channel: channel name nick: nick or host number: quiet number (as displayed by command /quiet) n1: interval start number n2: interval end number
-
userhost
: ???????????????????
/userhost <nick>... nick: ??????
-
users
: ???????????????????
/users [<target>] target: ????
-
version
: ????????????????????? (??????????????)
/version [<target>|<nick>] target: ???? nick: ??????
-
voice
: ?????????????
/voice <nick>... * -yes nick: nick or mask (wildcard "*" is allowed) *: give voice to everybody on channel
-
wallchops
: ??????????? notice ???
/wallchops [<channel>] <text> channel: channel name text: ??????
-
wallops
: send a message to all currently connected users who have set the "w" user mode for themselves
/wallops <text> text: ??????
-
who
: ???????????????
/who [<mask> [o]] mask: only information which match this mask o: only operators are returned according to the mask supplied
-
whois
: ????????????
/whois [<target>] [<nick>[,<nick>...]] target: ???? nick: nick (may be a mask) Without argument, this command will do a whois on: - your own nick if buffer is a server/channel - remote nick if buffer is a private. If option irc.network.whois_double_nick is enabled, two nicks are sent (if only one nick is given), to get idle time in answer.
-
whowas
: ??????????????????????
/whowas <nick>[,<nick>...] [<count> [<target>]] nick: ?????? count: number of replies to return (full search if negative number) target: reply should match this mask
8.10. オプション
irc.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
ネットワークオプション |
|
|
IRC メッセージのターゲットバッファ (オプションをセクションに追加/削除出来ます) |
|
|
CTCP 応答 (オプションをセクションに追加/削除出来ます) |
|
無視ユーザ |
|
|
|
サーバに対するデフォルト値 (サーバオプションが定義されていない場合に利用されます) |
|
|
サーバ |
オプション:
-
-
??: ??????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: ???????????????? (pong ????????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: pong ???????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: "input_prompt" ????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
irc.color.item_tls_version_deprecated
-
??: color for deprecated TLS versions in bar item "tls_version"
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
irc.color.item_tls_version_insecure
-
??: color for insecure TLS versions in bar item "tls_version"
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
-
??: color for higher supported TLS version in bar item "tls_version"
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
irc.color.list_buffer_line_selected
-
??: color for selected line on /list buffer
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
irc.color.list_buffer_line_selected_bg
-
??: background color for selected line on /list buffer
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
24
-
-
-
??: color for text in account messages
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: color for text in "chghost" messages
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
-
??: ?????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: color for text in kick/kill messages
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
-
??: ??/?? ???????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
red
-
-
-
??: color for text in "setname" messages
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
-
??: remap mirc colors in messages using a hashtable (used only for standard colors, not RGB colors): keys are "fg,bg" as integers between -1 (not specified) and 15, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "1,-1:darkgray;1,2:white,blue" to remap black to "darkgray" and black on blue to "white,blue"; default WeeChat colors for IRC codes: 0=white, 1=black, 2=blue, 3=green, 4=lightred, 5=red, 6=magenta, 7=brown, 8=yellow, 9=lightgreen, 10=cyan, 11=lightcyan, 12=lightblue, 13=lightmagenta, 14=darkgray, 15=gray
-
???: ???
-
?: ??????
-
??????:
"1,-1:darkgray"
-
-
-
??: ???????????????????????? (o=??????h=halfop?v=???..)???: "o:color1;h:color2;v:color3" (?????????????WeeChat ?????????????????????? ("PREFIX"); ?????????????????????? "*" ??????????????)
-
???: ???
-
?: ??????
-
??????:
"y:lightred;q:lightred;a:lightcyan;o:lightgreen;h:lightmagenta;v:yellow;*:lightblue"
-
-
-
??: notices ????????? "Notice" ??
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
-
??: color for reason in kick/kill messages
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??/????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
244
-
-
-
??: remap terminal color numbers in messages using a hashtable (used only for RGB colors as hexadecimal, which are first translated to terminal color numbers): keys are "fg,bg" as integers between -1 (not specified) and 255, values are WeeChat color names or numbers (format is: "1,-1:color1;2,7:color2"), example: "0,-1:darkgray;0,90:white,blue" to remap black to "darkgray" and black on dark magenta to "white,blue"
-
???: ???
-
?: ??????
-
??????:
"0,-1:darkgray"
-
-
-
??: ?????????????? (??????????? /topic ????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ?????????????? (??????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
36
-
-
-
??: ????????????? (??????????????????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
244
-
-
-
??: format for CTCP reply or empty string for blocking CTCP (no reply); content is evaluated, see /help eval; following variables are replaced: ${clientinfo}: list of supported CTCP, ${version}: WeeChat version, ${git}: Git version, ${versiongit}: WeeChat version and Git version, ${compilation}: compilation date, ${osinfo}: info about OS, ${site}: WeeChat site, ${download}: WeeChat site, download page, ${time}: current date and time as text, ${username}: username on server, ${realname}: realname on server
-
???: ???
-
?: ??????
-
??????:
"${clientinfo}"
-
-
-
??: format for CTCP reply or empty string for blocking CTCP (no reply); content is evaluated, see /help eval; following variables are replaced: ${clientinfo}: list of supported CTCP, ${version}: WeeChat version, ${git}: Git version, ${versiongit}: WeeChat version and Git version, ${compilation}: compilation date, ${osinfo}: info about OS, ${site}: WeeChat site, ${download}: WeeChat site, download page, ${time}: current date and time as text, ${username}: username on server, ${realname}: realname on server
-
???: ???
-
?: ??????
-
??????:
"${download}"
-
-
-
??: format for CTCP reply or empty string for blocking CTCP (no reply); content is evaluated, see /help eval; following variables are replaced: ${clientinfo}: list of supported CTCP, ${version}: WeeChat version, ${git}: Git version, ${versiongit}: WeeChat version and Git version, ${compilation}: compilation date, ${osinfo}: info about OS, ${site}: WeeChat site, ${download}: WeeChat site, download page, ${time}: current date and time as text, ${username}: username on server, ${realname}: realname on server
-
???: ???
-
?: ??????
-
??????:
"${time}"
-
-
-
??: format for CTCP reply or empty string for blocking CTCP (no reply); content is evaluated, see /help eval; following variables are replaced: ${clientinfo}: list of supported CTCP, ${version}: WeeChat version, ${git}: Git version, ${versiongit}: WeeChat version and Git version, ${compilation}: compilation date, ${osinfo}: info about OS, ${site}: WeeChat site, ${download}: WeeChat site, download page, ${time}: current date and time as text, ${username}: username on server, ${realname}: realname on server
-
???: ???
-
?: ??????
-
??????:
"WeeChat ${version}"
-
-
irc.look.buffer_open_before_autojoin
-
??: ????????? ("autojoin" ????????????) ??????? JOIN ???????????????????; ???????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.buffer_open_before_join
-
??: ????????? (/join ???????????) ??????? JOIN ???????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.look.buffer_switch_autojoin
-
??: ??????????????????????????? (???????? "autojoin" ?????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????????????? (/join ???????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: /names ?????????????? (???????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.look.color_nicks_in_nicklist
-
??: ????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.look.color_nicks_in_server_messages
-
??: ??????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.color_pv_nick_like_channel
-
??: ?????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: time format used in answer to message CTCP TIME (see man strftime for date/time specifiers, extra specifiers are supported, see function util_strftimeval in Plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"%a, %d %b %Y %T %z"
-
-
irc.look.display_account_message
-
??: display ACCOUNT messages received when capability account-notify is enabled
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????? (off: ????/??????local: ????????channel: ??????????????)
-
???: enum
-
?: off, local, channel
-
??????:
local
-
-
-
??: ?????????? CTCP ????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: WeeChat ????? CTCP ????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ?????? CTCP ???? CTCP ????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.display_extended_join
-
??: display extra information in the JOIN messages: account name and real name (capability extended-join must be enabled)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.display_host_join_local
-
??: ????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: display host in notice messages
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??/?? ?????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: display host in wallops messages
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????????????????????: 324 = ?????????329 = ?????????332 = ?????333 = ?????????????????????353 = ????????????366 = ????
-
???: ???
-
?: ??????
-
??????:
"329,332,333,366"
-
-
-
??: ????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????? 1 ????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????? (???????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.display_pv_nick_change
-
??: display nick change in private
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.display_pv_warning_address
-
??: display a warning in private buffer if the address of remote nick has changed; this option is disabled by default because servers like bitlbee are causing this warning to be displayed when it is not expected (the address of remote nick changes multiple times on login)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: comma separated list of words to highlight in channel buffers (case-insensitive, use "(?-i)" at beginning of words to make them case-sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"
-
???: ???
-
?: ??????
-
??????:
"$nick"
-
-
-
??: comma separated list of words to highlight in private buffers (case-insensitive, use "(?-i)" at beginning of words to make them case-sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"
-
???: ???
-
?: ??????
-
??????:
"$nick"
-
-
-
??: comma separated list of words to highlight in server buffers (case-insensitive, use "(?-i)" at beginning of words to make them case-sensitive; special variables $nick, $channel and $server are replaced by their values), these words are added to buffer property "highlight_words" only when buffer is created (it does not affect current buffers), an empty string disables default highlight on nick, examples: "$nick", "(?-i)$nick"
-
???: ???
-
?: ??????
-
??????:
"$nick"
-
-
irc.look.highlight_tags_restrict
-
??: irc ????????????????? (??????????????????????????????????); ??????????????????????? "+" ???????; ??????? "*" ??????????; ???????????????????????????
-
???: ???
-
?: ??????
-
??????:
"irc_privmsg,irc_notice"
-
-
-
??: add tag "irc_ignored" in ignored messages instead of removing them; that way messages can be filtered with /filter command and toggled on-demand
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.look.item_channel_modes_hide_args
-
??: ??????????????? 1 ?????????????????????????????????? (?????????? "*" ????????????????????????????????????); ?: ????????? "k" ??? "f" ?????????????????????????? "kf" ?????????
-
???: ???
-
?: ??????
-
??????:
"k"
-
-
-
??: IRC ???????????????? (????????)
-
???: enum
-
?: buffer_plugin, buffer_name
-
??????:
buffer_plugin
-
-
-
??: "input_prompt" ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: "input_prompt" ??????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.join_auto_add_chantype
-
??: /join ?????????????????????????????????????????????????????????????????????????; ?: "/join weechat" ??????????????????? "/join #weechat" ?????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: use a dedicated buffer for the output of /list
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.list_buffer_format_export
-
??: format of each channel exported in a file (note: content is evaluated, see /help list)
-
???: ???
-
?: ??????
-
??????:
"${name} (${users}): \"${topic}\""
-
-
irc.look.list_buffer_scroll_horizontal
-
??: left/right scroll in /list buffer (percent of width)
-
???: ??
-
?: 1 .. 100
-
??????:
10
-
-
-
??: comma-separated list of fields to sort channels (see /help list for a list of fields); char "-" can be used before field to reverse order, char "~" can be used to do a case-insensitive comparison; example: "-count,~name" for biggest channels first then case-insensitive sort on name
-
???: ???
-
?: ??????
-
??????:
"~name2"
-
-
irc.look.list_buffer_topic_strip_colors
-
??: strip channel topic colors in /list buffer
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????? msgbuffer ??????????????????????
-
???: enum
-
?: current, server
-
??????:
current
-
-
-
??: ??????????????????????? (none = ???????? (?????????)?next = ????????? + 1?near_server = ??????????????/??????????)
-
???: enum
-
?: none, next, near_server
-
??????:
none
-
-
-
??: force position of new /list buffer in list of buffers (none = default position (should be last buffer), next = current buffer + 1, near_server = after last channel/pv of server)
-
???: enum
-
?: none, next, near_server
-
??????:
none
-
-
-
??: ???????????????????????????? (none = ???????? (?????????)?next = ????????? + 1?near_server = ??????????????/??????????)
-
???: enum
-
?: none, next, near_server
-
??????:
none
-
-
irc.look.nick_completion_smart
-
??: ????????????? (???????????????????????): speakers = ?????????? (?????????????????)?speakers_highlights = ????????????????
-
???: enum
-
?: off, speakers, speakers_highlights
-
??????:
speakers
-
-
-
??: ?????????????????? (??????voice ?) ????? (none = ??????prefix = ???????????? (?????)?action = ????????????????both = ????????????????????????)
-
???: enum
-
?: none, prefix, action, both
-
??????:
prefix
-
-
-
??: ????????????????????????????? (?????????voice ????) ??????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????????????????????????????????????? "/msg nickserv identify password" ?????????????????????????????????: "nickserv,nickbot"
-
???: ???
-
?: ??????
-
??????:
"nickserv"
-
-
-
??: notice ????????????????? (auto ???????????????????????????)
-
???: enum
-
?: auto, never, always
-
??????:
auto
-
-
irc.look.notice_nicks_disable_notify
-
??: comma separated list of nicks for which notifications are disabled in notice messages (comparison is case-insensitive)
-
???: ???
-
?: ??????
-
??????:
"chanserv,nickserv"
-
-
irc.look.notice_welcome_redirect
-
??: ???????????????????????????????????????; ??????????????????????????????????????????????????????????????????????????????Atheme IRC ????????? ENTRYMSG ????: "[#channel] Welcome to this channel..."
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ???????????????????????????????????: "notify_private"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ????????????????????????? (ison ??? monitor ???????) notify ?????????????????????????????: "notify_message"?"notify_highlight"?"notify_private"
-
???: ???
-
?: ??????
-
??????:
"notify_message"
-
-
-
??: ????????????????????? (whois ???????)?notify ?????????????????????????????????: "notify_message"?"notify_private"?"notify_highlight"
-
???: ???
-
?: ??????
-
??????:
"notify_message"
-
-
irc.look.open_pv_buffer_echo_msg
-
??: open a private buffer on self message when capability echo-message is enabled
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: /part ????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????????
-
???: enum
-
?: independent, merge_by_server, merge_all
-
??????:
independent
-
-
-
??: ??????????????????????????????: "notify_message"?"notify_private"?"notify_highlight"
-
???: ???
-
?: ??????
-
??????:
"notify_private"
-
-
-
??: ???????????????????????????????? (?????????????????????????)
-
???: ??
-
?: 0 .. 65535
-
??????:
256
-
-
-
??: ???????????; ???????????????????????????? (/help layout ?????????)???????????????
-
???: enum
-
?: merge_with_core, merge_without_core, independent
-
??????:
merge_with_core
-
-
-
??: filter join/part/quit/nick messages for a nick if not speaking for some minutes on channel (you must create a filter on tag "irc_smart_filter", see /help filter)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: enable smart filter for "account" messages
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: "chghost" ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??/??/????????????????????? (???): ??????? N ???????????????/??/??????????????
-
???: ??
-
?: 1 .. 10080
-
??????:
5
-
-
-
??: "join" ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.look.smart_filter_join_unmask
-
??: "irc_smart_filter" ?????????????????????????????????? (???): ?? N ???????????????????????????????? (??????????????????????) ????????????????????????????????? (0 = ??: ?????????????????)
-
???: ??
-
?: 0 .. 10080
-
??????:
30
-
-
-
??: "mode" ???????????????????????: ??????????????????????? "*"??????????? (??? "ovh") ???????????????????? "+"?x/y/z ???????????????????? "xyz"?x/y/z ????????????????????????? "-xyz"; ?: "ovh": o/v/h ???????????????????"-bkl": b/k/l ?????????????????????
-
???: ???
-
?: ??????
-
??????:
"+"
-
-
-
??: "nick" ????????????????????? (???????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: "part" ? "quit" ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: enable smart filter for "setname" messages
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: /connect ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????????? (???????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: display nicks typing on the channel in bar item "typing" (option typing.look.enabled_nicks must be enabled and capability "message-tags" must be enabled on the server)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: send self typing status to channels so that other users see when you are typing a message (option typing.look.enabled_self must be enabled and capability "message-tags" must be enabled on the server)
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.network.autoreconnect_delay_growing
-
??: ????????????????????????? (1 = ?????????, 2 = ???????????? 2 ????)
-
???: ??
-
?: 1 .. 100
-
??????:
2
-
-
irc.network.autoreconnect_delay_max
-
??: ?????????????????? (????0 = ????)
-
???: ??
-
?: 0 .. 604800
-
??????:
600
-
-
-
??: /ban?/unban?/kickban ??????????????????; ?? $nick?$user?$ident?$host ?????????? ("nick!user@host" ????) ????; $user ? "~" ???????? $ident ? $user ???????????? $ident ? "*" ?????; ??????????????????????????????????????
-
???: ???
-
?: ??????
-
??????:
"*!$ident@$host"
-
-
-
??: ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????? (ctrl-c + ?????????: b=???cxx=??????cxx,yy=?????+????i=??????o=?????????r=???u=??)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????? (????0 = ?????)
-
???: ??
-
?: 0 .. 604800
-
??????:
60
-
-
-
??: ???????? (???): ????????????????????WeeChat ????????? (pong) ??????????????????????? (0 = ?????????????)
-
???: ??
-
?: 0 .. 604800
-
??????:
1800
-
-
-
??: ????????? (?????)
-
???: ??
-
?: 0 .. 86400000
-
??????:
500
-
-
-
??: ?????????????????????? (????0 = ??????); ?????? irc.network.lag_max ?????????
-
???: ??
-
?: 0 .. 604800
-
??????:
300
-
-
irc.network.lag_refresh_interval
-
??: ????????????????? 2 ????????????????? (???)
-
???: ??
-
?: 1 .. 3600
-
??????:
1
-
-
-
??: IRC ???? "ison" ?????? 2 ??????????????? (???)
-
???: ??
-
?: 1 .. 10080
-
??????:
1
-
-
irc.network.notify_check_whois
-
??: IRC ???? "whois" ?????? 2 ??????????????? (???)
-
???: ??
-
?: 1 .. 10080
-
??????:
5
-
-
irc.network.sasl_fail_unavailable
-
??: ?????????? SASL ???????? SASL ?????????? SASL ???????????; ???????????????????????????? "sasl_fail" ? "reconnect" ??? "disconnect" ??????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.network.send_unknown_commands
-
??: ???????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: /whois ???????? 2 ???????????? (??????? 1 ??????????)??????????????????; ?: "/whois nick" ? "whois nick nick" ???????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ????????/???????? IP ????/????????? (??????) (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: delay in milliseconds between two messages sent to server (anti-flood protection); 0 = disable protection and always send messages immediately (not recommended because the server can close the connection if you send several messages in a short time); internally there are queues with different priorities: when connecting to the server all messages are sent immediately and your messages have higher priority than some automatic messages that are sent in background by WeeChat
-
???: ??
-
?: 0 .. 60000
-
??????:
2000
-
-
irc.server_default.autoconnect
-
??: WeeChat ???????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ????????? (????????????????????????????) ????????????????????;???????????????????????????????????????????? (??????????????) (?: "#channel1,#channel2,#channel3 key1,key2" ???? #channel1 ? #channel2 ?????????????? key1 ? key2) (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.autojoin_delay
-
??: delay (in seconds) before auto-join of channels (example: give some time for authentication before joining channels)
-
???: ??
-
?: 0 .. 3600
-
??????:
0
-
-
irc.server_default.autojoin_dynamic
-
??: set automatically the "autojoin" option according to the channels you manually join and part with commands /join and /part
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.server_default.autoreconnect
-
??: ????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
irc.server_default.autoreconnect_delay
-
??: ????????????? (???) ??
-
???: ??
-
?: 1 .. 65535
-
??????:
10
-
-
-
??: ?????????????????????????; ???????????????????????????????????????? (?????: "autorejoin"??: "on" ??? "off")
-
???: ???
-
?: on, off
-
??????:
off
-
-
irc.server_default.autorejoin_delay
-
??: ??????????? (???) (????)
-
???: ??
-
?: 0 .. 86400
-
??????:
30
-
-
-
??: 2 ?? away ???????????? (??0 = ???????)
-
???: ??
-
?: 0 .. 10080
-
??????:
0
-
-
irc.server_default.away_check_max_nicks
-
??: ??????????????????????????away ??????? (0 = ????)
-
???: ??
-
?: 0 .. 1000000
-
??????:
25
-
-
irc.server_default.capabilities
-
??: comma-separated list of client capabilities to enable for server if they are available (see /help cap for a list of capabilities supported by WeeChat); "*" enables all capabilities by default (supported by both server and WeeChat); wildcard "*" is allowed; a capability beginning with "!" is excluded (example: "*,!account-*,!extended-join")
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
irc.server_default.charset_message
-
??: part of the IRC message (received or sent) which is decoded/encoded to the target charset; message = the whole IRC message (default), channel = starting from the channel name only (if found, with fallback on text), text = starting from the text only (you should try this value if you have issues with the channel name encoding)
-
???: enum
-
?: message, channel, text
-
??????:
message
-
-
-
??: command(s) to run after connection to server and before auto-join of channels (many commands can be separated by ";", use "\;" for a semicolon, special variables $nick, $channel and $server are replaced by their values) (note: commands are evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.command_delay
-
??: delay (in seconds) before execution of command
-
???: ??
-
?: 0 .. 3600
-
??????:
0
-
-
irc.server_default.connection_timeout
-
??: ????? TCP ??? 001 ??????????????? (???)?001 ??????????????????????????WeeChat ???????????
-
???: ??
-
?: 1 .. 3600
-
??????:
60
-
-
irc.server_default.default_chantypes
-
??: channel type prefixes to use if the server does not send them in message 005 (default is "#&")
-
???: ???
-
?: ??????
-
??????:
"#&"
-
-
-
??: use IPv6 protocol for server communication
-
???: enum
-
?: disable, auto, force
-
??????:
auto
-
-
irc.server_default.local_hostname
-
??: ????????????????/IP ???? (?????????????????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: default kick message used by commands "/kick" and "/kickban" (note: content is evaluated, see /help eval; special variables ${nick} (self nick), ${target} (target nick), ${channel} and ${server} are replaced by their values)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: default part message (leaving channel) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)
-
???: ???
-
?: ??????
-
??????:
"WeeChat ${info:version}"
-
-
-
??: default quit message (disconnecting from server) (note: content is evaluated, see /help eval; special variables ${nick}, ${channel} and ${server} are replaced by their values; "%v" is replaced by WeeChat version if there is no ${...} in string)
-
???: ???
-
?: ??????
-
??????:
"WeeChat ${info:version}"
-
-
-
??: nicknames to use on server (separated by comma) (note: content is evaluated, see /help eval; ${username} is replaced by system username (fallback to "weechat" if not found), server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)
-
???: ???
-
?: ??????
-
??????:
"${username},${username}2,${username}3,${username}4,${username}5"
-
-
irc.server_default.nicks_alternate
-
??: ??????????????????????????????????????????????: ?????????? 9 ???????? "_" ??????????????????????????????????? 1 ?? (?????? 2 ??) ? 1 ?? 99 ???????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????? (???????????/notify ?????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ????????? (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ??????????????? (???????? /proxy ?????????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ?????????? (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.registered_mode
-
??: mode that is set on registered users (default is "r")
-
???: ???
-
?: ??????
-
??????:
"r"
-
-
-
??: SASL ????????????: ????????????? "continue"????????????????? "reconnect"????????????? "disconnect" (irc.network.sasl_fail_unavailable ?????????)
-
???: enum
-
?: continue, reconnect, disconnect
-
??????:
reconnect
-
-
-
??: file with ECC private key for mechanism "ecdsa-nist256p-challenge" (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.sasl_mechanism
-
??: mechanism for SASL authentication: "plain" for plain text password, "scram-sha-1" for SCRAM authentication with SHA-1 digest algorithm, "scram-sha-256" for SCRAM authentication with SHA-256 digest algorithm, "scram-sha-512" for SCRAM authentication with SHA-512 digest algorithm, "ecdsa-nist256p-challenge" for key-based challenge authentication, "external" for authentication using client side TLS certificate
-
???: enum
-
?: plain, scram-sha-1, scram-sha-256, scram-sha-512, ecdsa-nist256p-challenge, external
-
??????:
plain
-
-
irc.server_default.sasl_password
-
??: SASL ????????; ???????? "ecdsa-nist256p-challenge" ??? "external" ????????????????? (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.sasl_timeout
-
??: SASL ?????????????? (???)
-
???: ??
-
?: 1 .. 3600
-
??????:
15
-
-
irc.server_default.sasl_username
-
??: SASL ???????; ???????? "external" ????????????????? (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.split_msg_max_length
-
??: ?? IRC ???????????????????; ?????????? 512 ??????????????????????????; 0 ???????????? (???????????????????????????); ?? 0 ???? 128 ?? 4096 ???????????????; ?????? IRC ??? (??? bitlbee ?????????) ????????????????????????
-
???: ??
-
?: 0 .. 4096
-
??????:
512
-
-
-
??: use TLS for server communication
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: TLS certificate file used to automatically identify your nick (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.tls_dhkey_size
-
??: Diffie-Hellman ??????????
-
???: ??
-
?: 0 .. 2147483647
-
??????:
2048
-
-
irc.server_default.tls_fingerprint
-
??: fingerprint of certificate which is trusted and accepted for the server; only hexadecimal digits are allowed (0-9, a-f): 128 chars for SHA-512, 64 chars for SHA-256, 40 chars for SHA-1 (insecure, not recommended); many fingerprints can be separated by commas; if this option is set, the other checks on certificates are NOT performed (option "tls_verify") (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.tls_password
-
??: password for TLS certificate's private key; only used with gnutls version >= 3.1.0 (note: content is evaluated, see /help eval; server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)
-
???: ???
-
?: ??????
-
??????:
""
-
-
irc.server_default.tls_priorities
-
??: gnutls ??????????? (????gnutls ?????? gnutls_priority_init ?????????????????????: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")
-
???: ???
-
?: ??????
-
??????:
"NORMAL"
-
-
-
??: check that the TLS connection is fully trusted
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????????????; ?: "+R" (??? "R" ???)?"+R-i" (??? "R" ??????? "i" ????); ????????????? /help mode ????????? (??: ?????????/help eval ?????????; ??? ${irc_server.xxx} ??????????${server} ???????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: user name to use on server (note: content is evaluated, see /help eval; ${username} is replaced by system username (fallback to "weechat" if not found), server options are evaluated with ${irc_server.xxx} and ${server} is replaced by the server name)
-
???: ???
-
?: ??????
-
??????:
"${username}"
-
9. Xfer
Xfer プラグインの機能:
-
ダイレクトチャット (サーバ不要の 2 ホスト間直接接続): 例えば IRC プラグイン経由の "DCC チャット"
-
ファイル転送、例えば IRC プラグイン経由の "DCC"
9.1. コマンド
-
me
: CTCP action ???????????
/me <message> message: ???????
-
xfer
: xfer ??
/xfer [list|listfull] list: list xfer listfull: list xfer (verbose) Without argument, this command opens buffer with xfer list.
9.2. オプション
xfer.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
ネットワークオプション |
|
|
ファイルの送信/受信に関するオプション |
オプション:
-
-
??: "??" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: "?????" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightblue
-
-
-
??: "???" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: "??" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: "??" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: "????" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: xfer ??????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: xfer ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: xfer ?????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ????????????? (??????!)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ??????????? (??????!)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: comma-separated list of nicks for which the incoming files and chats are automatically accepted; format is "server.nick" (for a specific server) or "nick" (for all servers); example: "libera.FlashCode,andrew"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ?????? CRC32 ?????????? (8 ?? 16 ??) ?????????????? CRC32 ?????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ?????????????????????? (".1"?".2"?...???)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: path for writing incoming files (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_data_dir}/xfer"
-
-
xfer.file.download_temporary_suffix
-
??: temporary filename suffix used during the transfer for a file received, it is removed after successful transfer; if empty string, no filename suffix is used during the transfer
-
???: ???
-
?: ??????
-
??????:
".part"
-
-
-
??: path for reading files when sending (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"~"
-
-
xfer.file.use_nick_in_filename
-
??: ????????????????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??? xfer ??????????? xfer ???????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????? (0 ????????????????)
-
???: ??
-
?: 0 .. 256
-
??????:
20
-
-
-
??: ??????????????????????????????: "notify_message"?"notify_private"?"notify_highlight"
-
???: ???
-
?: ??????
-
??????:
"notify_private"
-
-
-
??: ????????????????????
-
???: ??
-
?: 1024 .. 102400
-
??????:
65536
-
-
-
??: ?????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: IP or DNS address used for sending and passively receiving files/chats (if empty, local interface IP is used)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: restricts outgoing files/chats and incoming/passive files to use only ports in the given range (useful for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, empty value means any port, it's recommended to use ports greater than 1024, because only root can use ports below 1024)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????? ack ???; ack ?????????????? ack ?????? (??????? xfer.network.fast_send ? off ????? WeeChat ???) ??????????????????????????; ??????ack ????????????????? ack ?????????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????1 ????????????? (0 ?????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
0
-
-
-
??: ????????????1 ????????????? (0 ?????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
0
-
-
-
??: xfer ????????? (???)
-
???: ??
-
?: 5 .. 2147483647
-
??????:
300
-
10. Typing notifications
The typing plugin is used to inform other users you are typing messages and show a list of users currently typing a message on the buffer.
It is used by IRC plugin on channel and private buffers, when the "message-tags"
capability is enabled (you can check with /cap command).
Under the hood, typing client tag is used, following
this specification ↗.
10.1. Activation
For privacy considerations, the typing feature is disabled by default.
If you want to use it, you must enable options in both typing and irc plugins:
/set typing.look.enabled_nicks on /set typing.look.enabled_self on /set irc.look.typing_status_nicks on /set irc.look.typing_status_self on
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and "alice" was typing a message but made a pause:
│[12:55] [6] [irc/libera] 3:#test(+n){4} [Typing: bob, (alice)] │ │[@Flashy] █ │ └─────────────────────────────────────────────────────────────────────────────────┘
10.2. Signals sent
When you are typing a message (not a command starting with /
), the typing
plugin sends signals to inform other plugins (like IRC) that you are typing,
and these plugins can then send typing notifications to other users.
The following signals are sent when you are typing messages:
Signal | Arguments | Description |
---|---|---|
typing_self_typing |
Pointer: buffer. |
You are typing a message. |
typing_self_paused |
Pointer: buffer. |
You made a pause while typing a message. |
typing_self_cleared |
Pointer: buffer. |
You cleared the command line without sending the message. |
typing_self_sent |
Pointer: buffer. |
You sent the message to the buffer. |
10.3. Signals caught
The typing plugin is catching some signals that can be sent by other plugins (like IRC), to update internal hashtables used to store the typing state of nicks on buffers. These hashtables are used to build the content of "typing" bar item.
The following signals are caught by the typing plugin:
Signal | Arguments | Description |
---|---|---|
typing_set_nick |
String: buffer pointer + ";" + state (one of: "off", "typing", "paused",
"cleared") + ";" + nick. |
Set typing state for a nick on a buffer. |
typing_reset_buffer |
Pointer: buffer. |
Remove typing state for all nicks on a buffer. |
10.4. オプション
typing.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
typing.look.delay_purge_paused
-
??: number of seconds after paused status has been set: if reached, the typing status is removed
-
???: ??
-
?: 1 .. 2147483647
-
??????:
30
-
-
typing.look.delay_purge_typing
-
??: number of seconds after typing status has been set: if reached, the typing status is removed
-
???: ??
-
?: 1 .. 2147483647
-
??????:
6
-
-
-
??: number of seconds after typing last char: if reached, the typing status becomes "paused" and no more typing signals are sent
-
???: ??
-
?: 1 .. 2147483647
-
??????:
10
-
-
-
??: typing enabled for other nicks (display typing info for nicks typing in the current buffer)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: typing enabled for self messages (send typing info to other users)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: min number of chars in message to trigger send of typing signals
-
???: ??
-
?: 1 .. 2147483647
-
??????:
4
-
-
-
??: max number of chars displayed in the bar item "typing" (0 = do not truncate content)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
0
-
11. Relay
Relay プラグインはネットワークを介して異なるプロトコルを用いてデータを中継するために利用します:
-
irc: IRC プロキシ: IRC サーバに対する接続を、単一または複数の IRC クライアントで共有するために用います。
-
api: HTTP REST API, used by WeeChat and remote interfaces to display and interact with WeeChat
-
weechat: protocol used by remote interfaces to display and interact with WeeChat.
For api and weechat protocols, see the list of remote interfaces on this page ↗.
11.1. パスワード
It is highly recommended to set a password for relay, with these commands:
secure set relay mypassword /set relay.network.password "${sec.data.relay}"
This password is used with all protocols.
11.2. TOTP
TOTP (Time-based One-Time Password) can be used as secondary authentication factor for api and weechat protocols, in addition to the password.
これは任意設定項目であり、セキュリティレベルを向上させます。
ワンタイムパスワードは以下のようなアプリケーションを使って生成します:
TOTP の secret を WeeChat とワンタイムパスワードを生成するアプリケーション内部に設定しなければいけません。
TOTP の secret は base32 でエンコードされた文字列 (文字および 2 から 7 までの数字) でなければいけません。以下はその例です:
/secure set relay_totp secretpasswordbase32 /set relay.network.totp_secret "${sec.data.relay_totp}"
11.3. TLS
証明書と秘密鍵を作り、プロトコル名の最初に "tls." を付けることで TLS 経由でリレーを利用することができます。
The default path to certificate/key is defined by option relay.network.tls_cert_key.
以下のコマンドを使って証明書と秘密鍵ファイルを作成します:
mkdir -p ~/.config/weechat/tls
cd ~/.config/weechat/tls
openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out relay.pem
注記
|
You must replace ~/.config/weechat by the path to your WeeChat config directory
which can also be for example ~/.weechat .
|
WeeChat が既に起動している場合、以下のコマンドで証明書と秘密鍵をリロードできます:
/relay tlscertkey
11.4. IRC プロキシ
Relay プラグインは IRC プロキシとしても使えます: Relay プラグインは IRC サーバのふりをして、他の IRC クライアント (WeeChat 自身も) は WeeChat に接続できます。
IRC サーバごとに異なるポート、もしくは全てのサーバに対して共通のポートを定義することができます。
すべてのサーバに対して共通のポートを定義した場合には、クライアントからサーバの内部名を IRC の "PASS" コマンドに含めて送信するようにしてください、以下の書式を使ってください (see example below):
PASS server:mypass
例: TLS を使い、全てのサーバに対して共通の IRC プロキシを設定 (サーバはクライアントが選択):
/relay add tls.irc 8000
例: TLS を使わず、内部名 "libera" のサーバに対して IRC プロキシを設定:
/relay add irc.libera 8000
任意の IRC クライアントからサーバパスワード "mypass" (全てのサーバに対して共通の IRC プロキシを設定した場合には "libera:mypass") で 8000 番ポートに接続出来ます。
For example if you use WeeChat as IRC client of the relay, with a server called "relay" and the relay password "secret", you can setup the password with these commands:
/secure set relay_libera libera:secret /set irc.server.relay.password "${sec.data.relay_libera}"
11.5. API protocol
The Relay plugin can send data to a remote WeeChat or interface using an HTTP REST API protocol.
You can browse and test the API online: WeeChat Relay API ↗.
You can connect with WeeChat or a remote interface, see this page ↗.
For example:
/relay add api 9000
Now you can connect on port 9000 with a WeeChat or a remote interface using password "mypassword".
To connect to an api relay running locally with WeeChat:
/remote add weechat http://localhost:9000 -password=mypassword /remote connect weechat
To connect to an api relay running elsewhere with WeeChat (TLS is highly recommended):
/remote add weechat https://example.com:9000 -password=mypassword /remote connect weechat
注記
|
The remote WeeChat must expose the same API version as the local WeeChat, so it’s highly recommended to use exactly the same WeeChat version on remote and local client. |
11.6. WeeChat プロトコル
Relay プラグインは WeeChat プロトコルを使ってリモートインターフェースに対してデータを送信できます。
You can connect with a remote interface, see this page ↗.
重要
|
このプロトコルを使った場合 WeeChat から他の WeeChat に接続することはできません。 |
例:
/relay add weechat 9500
この後、リモートインターフェースを使って 9500 番ポートに対して、パスワード "mypass" で接続することができます。
11.7. WebSocket
Relay プラグインはすべてのプロトコルに対して WebSocket プロトコル (RFC 6455 ↗) をサポートします。
WebSocket ハンドシェイクは自動的に検知され、ハンドシェイク中に必要なヘッダが見つかり origin が許可されていれば WebSocket 用のソケットが準備されます (オプション relay.network.websocket_allowed_origins を参照)。
HTML5 を使えばたった 1 行の JavaScript で WebSocket をオープンすることが可能です:
websocket = new WebSocket("ws://example.com:9500/weechat");
ポート番号 (例では 9500 番) は Relay プラグインで定義したものです。
The URI must end with "/weechat" for irc and weechat protocols and "/api" for api protocol.
11.8. UNIX ドメインソケット
/relay add
コマンドにプロトコルオプション "unix" をつけることで、指定したパスで動作する
UNIX ドメインソケット上の任意のプロトコルをリッスンできます。例:
/relay add unix.weechat ${weechat_runtime_dir}/relay_socket
こうすることで、クライアントは weechat プロトコルを使って /run/user/1000/weechat/relay_socket に接続できます。これは、他のポートをオープンが禁止されている状況下で、リレークライアントの SSH 転送を許可する際に特に便利です。
OpenSSH を使った例:
ssh -L 9000:.weechat/relay_socket user@hostname
これでポート 9000 番に接続してきたローカルのリレークライアントは "hostname" 上で動作中の WeeChat インスタンスへ転送されます。
11.9. コマンド
-
relay
: ?????
/relay list|listfull|listrelay add|addreplace <name> <port>|<path> del|start|restart|stop <name> raw tlscertkey list: list relay clients (only active relays) listfull: list relay clients (verbose, all relays) listrelay: list relays (name and port) add: add a relay (listen on a port/path) addreplace: add or replace an existing relay del: remove a relay (clients remain connected) start: listen on port restart: close the server socket and listen again on port (clients remain connected) stop: close the server socket (clients remain connected) name: relay name (see format below) port: port used for relay path: path used for relay (for UNIX domain socket only); path is evaluated (see function string_eval_path_home in plugin API reference) raw: open buffer with raw Relay data tlscertkey: set TLS certificate/key using path in option relay.network.tls_cert_key Relay name is: [ipv4.][ipv6.][tls.]<protocol.name> or unix.[tls.]<protocol.name>: - ipv4: force use of IPv4 - ipv6: force use of IPv6 - tls: enable TLS - unix: use UNIX domain socket - protocol.name: protocol and name to relay: - protocol "irc": name is the server to share (optional, if not given, the server name must be sent by client in command "PASS", with format: "PASS server:password") - protocol "api" (name is not used) - protocol "weechat" (name is not used) The "irc" protocol allows any IRC client (including WeeChat itself) to connect on the port. The "api" protocol allows a remote interface (including WeeChat itself) to connect on the port. The "weechat" protocol allows a remote interface (but not WeeChat itself) to connect on the port. The list of remote interfaces is here: https://weechat.org/about/interfaces/ Without argument, this command opens buffer with list of relay clients. Examples: /relay add irc.libera 8000 /relay add tls.irc.libera 8001 /relay add tls.irc 8002 /relay add tls.api 9000 /relay add weechat 10000 /relay add tls.weechat 10001 /relay add ipv4.tls.weechat 10001 /relay add ipv6.tls.weechat 10001 /relay add ipv4.ipv6.tls.weechat 10001 /relay add unix.weechat ${weechat_runtime_dir}/relay_socket
-
remote
: control of remote relay servers
/remote list|listfull [<name>] add|addreplace <name> <url> [-<option>[=<value>]] connect|reconnect|disconnect|del <name> send <name> <json> rename <name> <new_name> togglecmd list: list remote relay servers (without argument, this list is displayed) listfull: list remote relay servers (verbose) add: add a remote relay server addreplace: add or replace an existing remote relay server name: name of remote relay server, for internal and display use; this name is used to connect to the remote relay and to set remote relay options: relay.remote.name.xxx url: URL of the remote relay, format is https://example.com:9000 or http://example.com:9000 (plain-text connection, not recommended) option: set option for remote relay connect: connect to a remote relay server reconnect: reconnect to a remote relay server disconnect: disconnect from a remote relay server del: delete a remote relay server send: send JSON data to a remote relay server rename: rename a remote relay server togglecmd: toggle execution of commands on a remote buffer: on the remote WeeChat or locally (default key: alt+ctrl+l) Examples: /remote add example https://localhost:9000 -password=my_secret_password -totp_secret=secrettotp /remote connect example /remote disconnect example /remote del example
11.10. オプション
relay.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
ネットワークオプション |
|
|
特定の irc プロトコルのオプション (irc プロキシ) |
|
|
リレーに使うポート (オプションをセクションに追加/削除出来ます) |
オプション:
-
relay.api.remote_autoreconnect_delay_growing
-
??: growing factor for autoreconnect delay to remote relay (1 = always same delay, 2 = delay*2 for each retry, etc.)
-
???: ??
-
?: 1 .. 100
-
??????:
2
-
-
relay.api.remote_autoreconnect_delay_max
-
??: maximum autoreconnect delay to remote relay (in seconds, 0 = no maximum)
-
???: ??
-
?: 0 .. 604800
-
??????:
600
-
-
-
??: number of lines to retrieve on each buffer when connecting to a remote relay
-
???: ??
-
?: 0 .. 2147483647
-
??????:
1000
-
-
relay.api.remote_input_cmd_local
-
??: text displayed after user input when the command would be executed locally (NOT sent to the remote WeeChat) (note: content is evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
" ${color:green}<local cmd>"
-
-
relay.api.remote_input_cmd_remote
-
??: text displayed after user input when the command would be executed on the remote WeeChat (NOT executed locally) (note: content is evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
" ${color:red}<remote cmd>"
-
-
-
??: ???????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: "????" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
green
-
-
relay.color.status_auth_failed
-
??: "????" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
relay.color.status_authenticating
-
??: text color for "authenticating" status
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: "???" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
relay.color.status_disconnected
-
??: "????" ????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: ??????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: IRC ?????????????????? (?) (0 = ??????: 1440 = 1 ??10080 = 1 ???43200 = 1 ???525600 = 1 ??)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
0
-
-
-
??: IRC ?????????????????? (0 = ????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
1024
-
-
relay.irc.backlog_since_last_disconnect
-
??: ?????????????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
relay.irc.backlog_since_last_message
-
??: ??????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: IRC ??????????????????????????????????? (???????: "irc_join"?"irc_part"?"irc_quit"?"irc_nick"?"irc_privmsg")?"*" = ??????????
-
???: ???
-
?: ??????
-
??????:
"irc_privmsg"
-
-
-
??: ??????????????? (??? man strftime ?????????) (?????? irc ???????????????????????????? "server-time" ???????????????????????); ???? = ???????????????????
-
???: ???
-
?: ??????
-
??????:
"[%H:%M] "
-
-
-
??: auto open relay buffer when a new client is connecting using one of these protocols (comma-separated list); allowed protocols: "api", "irc", "weechat"
-
???: ???
-
?: ??????
-
??????:
"irc,weechat"
-
-
-
??: display messages when clients connect/disconnect from relay using one of these protocols (comma-separated list); allowed protocols: "api", "irc", "weechat"
-
???: ???
-
?: ??????
-
??????:
"irc,weechat"
-
-
-
??: ???????????????????????????????? (?????????????????????????)
-
???: ??
-
?: 0 .. 65535
-
??????:
256
-
-
relay.look.raw_messages_max_length
-
??: max number of chars to display in raw messages (very long messages can cause slowness); 0 = display whole messages
-
???: ??
-
?: 0 .. 2147483647
-
??????:
4096
-
-
relay.network.allow_empty_password
-
??: ??????????????????? (????????????????????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: POSIX extended regular expression with IPs allowed to use relay (case-insensitive, use "(?-i)" at beginning to make it case-sensitive), example: "^(123\.45\.67\.89|192\.160\..*)$"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: timeout (in seconds) for client authentication: connection is closed if the client is still not authenticated after this delay and the client status is set to "authentication failed" (0 = wait forever)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
60
-
-
-
??: address for bind (if empty, connection is possible on all interfaces, use "127.0.0.1" to allow connections from local machine only with IPv4 and "::ffff:127.0.0.1" with IPv6)
-
???: ???
-
?: ??????
-
??????:
""
-
-
relay.network.clients_purge_delay
-
??: ???????????????????????? (????0 = ???????????????-1 = ??????)
-
???: ??
-
?: -1 .. 43200
-
??????:
0
-
-
-
??: comma-separated list of commands allowed/denied when input data (text or command) is received from a client ("api" and "weechat" protocols); "*" means any command, a name beginning with "!" is a negative value to prevent a command from being executed, wildcard "*" is allowed in names; this option should be set if the relay client is not safe (someone could use it to run commands); for example "*,!exec,!quit" allows any command except /exec and /quit
-
???: ???
-
?: ??????
-
??????:
"*,!quit"
-
-
-
??: compression of messages sent to clients with "api" and "weechat" protocols: 0 = disable compression, 1 = low compression / fast ... 100 = best compression / slow; the value is a percentage converted to 1-9 for zlib and 1-19 for zstd; the default value is recommended, it offers a good compromise between compression and speed
-
???: ??
-
?: 0 .. 100
-
??????:
20
-
-
-
??: ?????? IPv6 ????????? (?????? IPv4 ????); ??????????????? IPv4 ? IPv6 (???????) ??? (/help relay ?????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ?????????????????? (0 = ????)
-
???: ??
-
?: 0 .. 2147483647
-
??????:
5
-
-
-
??: size of nonce (in bytes), generated when a client connects; the client must use this nonce, concatenated to the client nonce and the password when hashing the password in the "init" command of the weechat protocol
-
???: ??
-
?: 8 .. 128
-
??????:
16
-
-
-
??: ???????????????????????????? (????????????????? relay.network.allow_empty_password ?????????) (??: ?????????/help eval ?????????)
-
???: ???
-
?: ??????
-
??????:
""
-
-
relay.network.password_hash_algo
-
??: comma separated list of hash algorithms used for password authentication in weechat protocol, among these values: "plain" (password in plain text, not hashed), "sha256", "sha512", "pbkdf2+sha256", "pbkdf2+sha512"), "*" means all algorithms, a name beginning with "!" is a negative value to prevent an algorithm from being used, wildcard "*" is allowed in names (examples: "*", "pbkdf2*", "*,!plain")
-
???: ???
-
?: ??????
-
??????:
"*"
-
-
relay.network.password_hash_iterations
-
??: number of iterations asked to the client in weechat protocol when a hashed password with algorithm PBKDF2 is used for authentication; more iterations is better in term of security but is slower to compute; this number should not be too high if your CPU is slow
-
???: ??
-
?: 1 .. 1000000
-
??????:
100000
-
-
-
??: number of seconds to allow before and after the current time for the hash of time + password in "api" protocol
-
???: ??
-
?: 0 .. 256
-
??????:
5
-
-
-
??: file with TLS certificate and private key (for serving clients with TLS) (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_config_dir}/tls/relay.pem"
-
-
-
??: gnutls ??????????? (????gnutls ?????? gnutls_priority_init ?????????????????????: "PERFORMANCE", "NORMAL", "SECURE128", "SECURE256", "EXPORT", "NONE")
-
???: ???
-
?: ??????
-
??????:
"NORMAL"
-
-
-
??: secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in "api" and "weechat" protocols, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ????????????????????????????????????????????????????: 0 = ??????????????1 = 1 ????????????2 = 2 ?????????????????????? 2 ??????????????...; ????????????????????????? (0 ??? 1 ??????)
-
???: ??
-
?: 0 .. 256
-
??????:
0
-
-
relay.network.websocket_allowed_origins
-
??: POSIX extended regular expression with origins allowed in websockets (case-insensitive, use "(?-i)" at beginning to make it case-sensitive), example: "^https?://(www\.)?example\.(com|org)"
-
???: ???
-
?: ??????
-
??????:
""
-
-
relay.network.websocket_permessage_deflate
-
??: enable websocket extension "permessage-deflate" to compress websocket frames ("api" protocol only); if disabled, WeeChat (as server) will not enable permessage-deflate even if the client supports it, and when connecting to a remote WeeChat (api relay only), permessage-deflate support is not advertised by WeeChat; it is recommended to keep this option enabled, and you should disable it only if you have troubles with this extension, either with WeeChat or the client
-
???: ???
-
?: on, off
-
??????:
on
-
12. External commands
/exec
コマンドを使うことで WeeChat
内部から外部コマンドを実行し、その結果を表示したりバッファに送信することが可能になります。
12.1. コマンド
-
exec
: ?????????
/exec -list [-sh|-nosh] [-bg|-nobg] [-stdin|-nostdin] [-buffer <name>] [-l|-o|-oc|-n|-nf] [-oerr] [-cl|-nocl] [-sw|-nosw] [-ln|-noln] [-flush|-noflush] [-color ansi|auto|irc|weechat|strip] [-rc|-norc] [-timeout <timeout>] [-name <name>] [-pipe <command>] [-hsignal <name>] <command> -in <id> <text> -inclose <id> [<text>] -signal <id> <signal> -kill <id> -killall -set <id> <property> <value> -del <id>|-all [<id>...] -list: list commands -sh: use the shell to execute the command, many commands can be piped (WARNING: use this option ONLY if all arguments are safe, see option -nosh) -nosh: do not use the shell to execute the command (required if the command has some unsafe data, for example the content of a message from another user) (default) -bg: run process in background: do not display process output neither return code (not compatible with options -o/-oc/-n/-nf/-pipe/-hsignal) -nobg: catch process output and display return code (default) -stdin: create a pipe for sending data to the process (with /exec -in/-inclose) -nostdin: do not create a pipe for stdin (default) -buffer: display/send output of command on this buffer (if the buffer is not found, a new buffer with name "exec.exec.xxx" is created) -l: display locally output of command on buffer (default) -o: send output of command to the buffer without executing commands (not compatible with options -bg/-pipe/-hsignal) -oc: send output of command to the buffer and execute commands (lines starting with "/" or another custom command char) (not compatible with options -bg/-pipe/-hsignal) -n: display output of command in a new buffer (not compatible with options -bg/-pipe/-hsignal) -nf: display output of command in a new buffer with free content (no word-wrap, no limit on number of lines) (not compatible with options -bg/-pipe/-hsignal) -oerr: also send stderr (error output) to the buffer (can be used only with options -o and -oc) -cl: clear the new buffer before displaying output -nocl: append to the new buffer without clear (default) -sw: switch to the output buffer (default) -nosw: don't switch to the output buffer -ln: display line numbers (default in new buffer only) -noln: don't display line numbers -flush: display output of command in real time (default) -noflush: display output of command after its end -color: action on ANSI colors in output: ansi: keep ANSI codes as-is auto: convert ANSI colors to WeeChat/IRC (default) irc: convert ANSI colors to IRC colors weechat: convert ANSI colors to WeeChat colors strip: remove ANSI colors -rc: display return code (default) -norc: don't display return code -timeout: set a timeout for the command (in seconds) -name: set a name for the command (to name it later with /exec) -pipe: send the output to a WeeChat/plugin command (line by line); if there are spaces in command/arguments, enclose them with double quotes; variable $line is replaced by the line (by default the line is added after the command, separated by a space) (not compatible with options -bg/-o/-oc/-n/-nf) -hsignal: send the output as a hsignal (to be used for example in a trigger) (not compatible with options -bg/-o/-oc/-n/-nf) command: the command to execute; if beginning with "url:", the shell is disabled and the content of URL is downloaded and sent as output id: command identifier: either its number or name (if set with "-name xxx") -in: send text on standard input of process -inclose: same as -in, but stdin is closed after (and text is optional: without text, the stdin is just closed) -signal: send a signal to the process; the signal can be an integer or one of these names: hup, int, quit, kill, term, usr1, usr2 -kill: alias of "-signal <id> kill" -killall: kill all running processes -set: set a hook property (see function hook_set in plugin API reference) property: hook property value: new value for hook property -del: delete a terminated command -all: delete all terminated commands Default options can be set in the option exec.command.default_options. Examples: /exec -n ls -l /tmp /exec -sh -n ps xu | grep weechat /exec -n -norc url:https://pastebin.com/raw.php?i=xxxxxxxx /exec -nf -noln links -dump https://weechat.org/files/doc/weechat/devel/weechat_user.en.html /exec -o uptime /exec -pipe "/print Machine uptime:" uptime /exec -n tail -f /var/log/messages /exec -kill 0
12.2. オプション
exec.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
コマンドに対するオプション |
|
|
色 |
オプション:
-
-
??: ???????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: ??????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: /exec ??????????????? (/help exec ?????????); ?: "-nosh -bg" ????????????????????? (????)?????????
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: ???????????????????????? (????0 = ???????????????-1 = ??????)
-
???: ??
-
?: -1 .. 25920000
-
??????:
0
-
-
-
??: shell to use with command "/exec -sh"; it can be just the name of shell if it is in PATH (for example "bash") or the absolute path to the shell (for example "/bin/bash"); if value is empty, "sh" is used (note: content is evaluated, see /help eval)
-
???: ???
-
?: ??????
-
??????:
"${env:SHELL}"
-
13. FIFO pipe
外部から WeeChat を操作するには、FIFO パイプにコマンドやテキストを書き込んでください ("fifo.file.enabled" オプションが有効化されている必要がありますが、デフォルトで有効化されているはずです)。
The FIFO pipe is located in WeeChat runtime directory and is called weechat_fifo_12345 by default (where 12345 is the WeeChat process id).
FIFO パイプに書き込むコマンド/テキストの文法は以下の例の一つです:
plugin.buffer *テキストまたはコマンド *テキストまたはコマンド
Backslashes can be interpreted with this format, where *
is replaced by \
,
allowing for example to send multiline messages:
plugin.buffer \text or command here \text or command here
例:
-
IRC サーバ libera で使うニックネームを "newnick" に変更する:
echo 'irc.server.libera */nick newnick' >/run/user/1000/weechat/weechat_fifo_12345
-
IRC チャンネル #weechat に対してテキストを送信:
echo 'irc.libera.#weechat *hello!' >/run/user/1000/weechat/weechat_fifo_12345
-
Send a multiline message on IRC #test channel, if capability "draft/multiline" is enabled on the ergo server:
echo 'irc.ergo.#test \hello\n...on two lines!' >/run/user/1000/weechat/weechat_fifo_12345
-
現在のバッファに対してテキストを送信:
echo '*hello!' >/run/user/1000/weechat/weechat_fifo_12345
-
Python スクリプトのアンロードとロードを行う 2 つのコマンドを送信 (複数のコマンドは "\n" で分割してください):
printf '%b' '*/python unload\n*/python autoload\n' >/run/user/1000/weechat/weechat_fifo_12345
13.1. コマンド
-
fifo
: fifo ???????
/fifo enable|disable|toggle enable: enable FIFO pipe disable: disable FIFO pipe toggle: toggle FIFO pipe FIFO pipe is used as remote control of WeeChat: you can send commands or text to the FIFO pipe from your shell. By default the FIFO pipe is called weechat_fifo_xxx (where xxx is the WeeChat process id) and located in the WeeChat runtime directory (see /debug dirs). The expected format is one of: plugin.buffer *text or command here *text or command here For example to change your libera nick: echo 'irc.server.libera */nick newnick' >/run/user/1000/weechat/weechat_fifo_12345 Please read the user's guide for more info and examples.
13.2. オプション
fifo.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
FIFO パイプに関するオプション |
オプション:
-
-
??: FIFO ???????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: path for FIFO file; WeeChat PID can be used in path with ${info:pid} (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_runtime_dir}/weechat_fifo_${info:pid}"
-
14. Trigger
トリガは WeeChat の便利ツールです: 様々なもの (signal、modifier、print、…) をフックして、データの内容を書き換えたり、複数のコマンドを実行することができます。条件をつけることで一部の場合だけトリガを実行するように設定することもできます。
トリガを使うにはシグナル、修飾子、… がどのように動いているかを知らなければいけません。これを知るには WeeChat プラグイン API リファレンス / フック ↗を読むことをお勧めします。
14.1. デフォルトトリガ
WeeChat はデフォルトで 5 つのトリガを作成しますが、これらを無効化、更新、削除することも可能です:
-
通知用の beep トリガ
-
それ以外の 4 つは画面上でパスワードを隠すためのトリガ
デフォルトトリガのリスト:
名前 | フック | 説明 |
---|---|---|
|
ハイライト/プライベートメッセージを受信した際にビープを鳴らす。 |
|
|
modifier |
コマンド内のパスワードを隠す:
|
|
modifier |
コマンド内のパスワードを隠す |
|
modifier |
IRC auth メッセージ (ユーザがコマンドを実行した後にサーバから受信するメッセージ) の表示時にパスワードを隠す。 |
|
modifier |
|
14.2. トリガの構造
トリガは以下のオプションをとります (名前は
trigger.trigger.<name>.<option>
):
オプション | 値 | 説明 |
---|---|---|
|
|
オプションが |
|
|
トリガの中で使われるフック。より詳しい情報は WeeChat プラグイン API リファレンス / フック ↗を参照してください。 |
|
文字列 |
フックに対する引数、指定したフックの型に依存します。 |
|
文字列 |
トリガを実行する条件; 内容は評価されます (コマンド /eval を参照)。 |
|
文字列 |
1 つ以上の POSIX 拡張正規表現、フックコールバック (とトリガプラグインによって追加されるもの) が受け取るデータに変更を加えるためのもの、正規表現を参照。 |
|
文字列 |
実行するコマンド (複数のコマンドを使う場合には各コマンドをセミコロンで区切ってください); 内容は評価されます (コマンド /eval を参照)。 |
|
|
コールバックの戻り値 (デフォルトは
|
|
|
実行後のトリガに対する処遇 (ほとんどすべてのトリガではデフォルトの |
例えば、デフォルトの beep トリガは以下のオプションをとります:
trigger.trigger.beep.enabled = on trigger.trigger.beep.hook = print trigger.trigger.beep.arguments = "" trigger.trigger.beep.conditions = "${tg_displayed} && (${tg_highlight} || ${tg_msg_pv})" trigger.trigger.beep.regex = "" trigger.trigger.beep.command = "/print -beep" trigger.trigger.beep.return_code = ok trigger.trigger.beep.post_action = none
14.3. 実行
トリガ機能が有効になっていてさらに対象のトリガが有効化されている場合に、トリガコールバックが呼び出されると、以下のアクションがこの順番で実行されます:
-
トリガ条件の確認: 偽の場合、終了
-
正規表現を使ってトリガ内でテキスト置換
-
コマンドを実行
-
戻り値を返して終了 (modifier、line、focus、info、info_hashtable フックを除く)
-
トリガ実行後の処遇を適用 (
none
以外の場合)。
14.4. フック引数
引数は使用するフックの種類に依存します。引数はセミコロンで区切ってください。
フック | 引数 | 例 | 解説 (API) |
---|---|---|---|
signal |
1. シグナル名 (優先度の指定も可) (必須) |
|
|
hsignal |
1. シグナル名 (優先度の指定も可) (必須) |
|
|
modifier |
1. 修飾子名 (優先度の指定も可) (必須) |
|
|
line |
1. バッファ型 |
|
|
1. バッファ名 |
|
||
command |
1. コマンド名 (優先度の指定も可) (必須) |
|
|
command_run |
1. コマンド (優先度の指定も可) (必須) |
|
|
timer |
1. インターバルするミリ秒数 (必須) |
|
|
config |
1. オプション名 (優先度の指定も可) (必須) |
|
|
focus |
1. エリア名 (優先度の指定も可) (必須) |
|
|
info |
1. インフォ名 (優先度の指定も可) (必須) |
|
|
info_hashtable |
1. インフォ名 (優先度の指定も可) (必須) |
|
14.5. 条件
条件を指定することで、トリガ内で処理を継続するか完全に止めるかを制御できます。
条件は評価され、コールバック内で利用できるデータを条件として利用できます (コールバック内のデータとコマンド /eval を参照)。
例: デフォルトの beep トリガは以下の条件を使い、ハイライトまたはプライベートメッセージの場合だけビープを鳴らすようにしています:
${tg_displayed} && (${tg_highlight} || ${tg_msg_pv})
14.6. Regular expression
The regular expression is used to change variables in callback hashtable.
Format is one of the following:
/string1/string2 /string1/string2/var s/string1/string2 s/string1/string2/var y/string1/string2 y/string1/string2/var
Fields:
-
s
ory
: a letter with the command; if missing, default command iss
and the first char is then used as the delimiter:-
s
: regex replacement: first string is a regular expression, second string is the replacement for every matching string -
y
: chars translation: first string is a set of characters that are replaced by the characters in the second string; once evaluated, each string must have exactly the same number of UTF-8 chars
-
-
/
: the regex delimiter; the char "/" can be replaced by any char (one or more identical chars) -
string1
: the first string (use depends on the command) -
string2
: the second string (use depends on the command) -
var
: the hashtable variable to update
Many regular expressions can be separated by a space, for example:
s/regex1/replace1/var1 y/abcdef/ABDDEF/var2
Regex replace
For the command s
, the format is: s/regex/replace
or s/regex/replace/var
(where var is a variable of the hashtable).
As s
is the default command, it can be omitted, so /regex/replace
is also
valid (but the first char, which is the delimiter, must not be a letter).
Matching groups can be used in replace:
-
${re:0}
to${re:99}
:${re:0}
is the whole match,${re:1}
to${re:99}
are groups captured -
${re:+}
: the last match (with highest number) -
${re:#}
: index of last group captured -
${re:repl_index}
: index of replacement being done (starts to 1) -
${hide:c,${re:N}}
: match "N" with all chars replaced by "c" (example:${hide:*,${re:2}}
is the group #2 with all chars replaced by*
).
Example: use bold for words between *
:
s/\*([^ ]+)\*/*${color:bold}${re:1}${color:-bold}*/
Example: default trigger server_pass uses this regular expression to hide
password in commands /server
and /connect
(chars in passwords are replaced
by *
):
s==^(/(server|connect) .*-(sasl_)?password=)([^ ]+)(.*)==${re:1}${hide:*,${re:4}}${re:5}
注記
|
In this example, the delimiter used is "==" because there is a "/" in the regular expression. |
Translate chars
For the command y
, the format is: y/chars1/chars2
or y/chars1/chars2/var
(where var is a variable of the hashtable).
Example: replace "a", "b" and "c" by upper case letter:
y/abc/ABC/
Example: rotate arrows clockwise:
y/←↑→↓/↑→↓←/
Example: convert all letters to lower case:
y/${chars:upper}/${chars:lower}/
Example: shift each letter by one position, preserving case: a→b, b→c … y→z, z→a:
y/${chars:a-z}${chars:A-Z}/${chars:b-z}a${chars:B-Z}A/
Variable
If var does not exist in the hashtable, it is created automatically with an empty value. This allows to create custom temporary variables.
If var is not specified, the default variable is used, it depends on hook type:
フック | デフォルト変数 | 更新が許可Update allowed (1) |
---|---|---|
signal |
tg_signal_data |
|
hsignal |
||
modifier |
tg_string |
tg_string |
line |
message |
buffer、buffer_name、y、date、date_usec、date_printed、date_usec_printed、str_time、tags、notify_level、highlight、prefix、message |
tg_message |
||
command |
tg_argv_eol1 |
|
command_run |
tg_command |
|
timer |
tg_remaining_calls |
|
config |
tg_value |
|
focus |
||
info |
tg_info |
tg_info |
info_hashtable |
ハッシュテーブルで受け取ったすべての変数 |
注記
|
(1) トリガはすべての値を更新できますが、ここで挙げた変数だけがトリガによって返されて WeeChat によって使われる値に影響を及ぼします |
14.7. コマンド
コマンドは正規表現を使ったテキスト置換の後に実行されます。複数のコマンドを実行するにはセミコロンで区切ってください。
コマンドは評価され (コマンド /eval を参照) コマンド内では正規表現を使って置換したテキストを使うことができます。
例: デフォルトの beep トリガは以下のコマンドを実行してビープ (BEL) を鳴らしています:
/print -beep
14.8. コールバック内におけるデータ
コールバック内で受け取ったデータはハッシュテーブル (ポインタと文字列) の中に保存され、以下のオプションで使うことができます:
-
conditions
-
regex
-
command
ハッシュテーブルの内容はフックの種類に依存します。
トリガ内部におけるデータを簡単に確認するには、以下のコマンドを使ってトリガ監視バッファを開いてください:
/trigger monitor
All callbacks set following variables in hashtable:
変数 | 型 | 説明 |
---|---|---|
|
string |
Name of trigger. |
|
string |
Hook type: "signal", "command", etc. |
Signal
"signal" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
string |
シグナル名 |
|
string |
シグナルと一緒に送信されたデータ |
シグナルが IRC メッセージを含む場合、メッセージは解析され以下のデータがハッシュテーブルに追加されます:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
IRC サーバへのポインタ ( |
|
pointer |
IRC チャンネルへのポインタ ( |
|
string |
サーバの名前 (例: "libera") |
|
string |
メッセージ内のタグ (使われることはまれです) |
|
string |
タグを含まないメッセージ |
|
string |
ニックネーム (1) |
|
string |
ホスト名 |
|
string |
IRC コマンド (例: "PRIVMSG"、"NOTICE"、…) |
|
string |
IRC チャンネル |
|
string |
コマンドの引数 (channel の値を含みます) |
|
string |
テキスト (例えばユーザメッセージ) |
|
string |
メッセージ内における command のインデックス (command が見つからない場合 "-1") |
|
string |
メッセージ内における arguments のインデックス (arguments が見つからない場合 "-1") |
|
string |
メッセージ内における channel のインデックス (channel が見つからない場合 "-1") |
|
string |
メッセージ内における text のインデックス (text が見つからない場合 "-1") |
注記
|
(1) The nick is the sender of the message. Your own nick on the server is ${irc_server.nick} .
|
データがポインタの場合、hdata の属性を読むために変数 tg_signal_data
を以下のようにして使うことが可能です (以下の例では、バッファのポインタとして使っています):
${buffer[${tg_signal_data}].full_name}
Hsignal
"hsignal" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
string |
シグナル名 |
ハッシュテーブルには受け取ったハッシュテーブルに含まれる全てのキーおよび値 (型: string/string) が含まれています。
Modifier
"modifier" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
string |
修飾子の名前 |
|
string |
修飾子と一緒に送信されたデータ |
|
string |
修正可能な文字列 |
|
string |
色コードを含まない文字列 |
weechat_print 修飾子では、メッセージタグを使う変数 (下の Print を参照) と以下の変数が追加されます:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
メッセージが表示されたバッファ |
|
string |
メッセージが表示されたバッファのプラグイン |
|
string |
メッセージが表示されたバッファの完全な名前 |
|
string |
表示されたメッセージのプレフィックス |
|
string |
色コードを削除したプレフィックス |
|
string |
表示されたメッセージ |
|
string |
色コードを削除したメッセージ |
修飾子が IRC メッセージを含む場合、メッセージは解析され追加のデータがハッシュテーブルに追加されます (Signal を参照)。
Line
"line" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
バッファ |
|
string |
バッファ名 |
|
string |
バッファ型 ("formatted" または "free") |
|
string |
自由内容バッファの行番号 (≥ 0)、-1 はフォーマット済みバッファ用 |
|
string |
行の日付 (タイムスタンプ) |
|
string |
Microseconds of line date. |
|
string |
行が表示される日付 (タイムスタンプ). |
|
string |
Microseconds of date when line was displayed. |
|
string |
表示に使う日付、色コードを含めることも可能 |
|
string |
メッセージのタグ (文字列の最初と最後にコンマが追加されます) |
|
string |
"1" の場合は表示、"0" の場合は非表示 |
|
string |
"-1" = no notify, "0" = 低レベル、"1" = メッセージ、"2" = プライベートメッセージ、"3" = ハイライト |
|
string |
"1" の場合はハイライトあり、"0" の場合はハイライトなし |
|
string |
プレフィックス |
|
string |
色コードを含まないプレフィックス |
|
string |
メッセージ |
|
string |
色コードを含まないメッセージ |
メッセージにつけられたタグに関する変数:
変数 | 型 | 説明 |
---|---|---|
|
string |
メッセージのタグの個数 |
|
string |
ニックネーム ("nick_xxx" タグから) |
|
string |
プレフィックスで使うニックネームの色 ("prefix_nick_ccc" タグから) |
|
string |
ユーザ名とホスト名、書式: username@host ("host_xxx" タグから) |
|
string |
通知レベル (none、message、private、highlight) |
|
string |
IRC message tag (key "xxx"). (1) |
|
string |
通知レベルが none 以外の場合、その通知レベル |
|
string |
プライベートメッセージの場合 "1"、それ以外は "0" |
注記
|
(1) Commas are replaced by semicolons in IRC tag (key and value). |
"print" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
メッセージが表示されたバッファ |
|
string |
メッセージの日付と時間 (書式: |
|
string |
表示された場合 "1"、フィルタされた場合 "0" |
|
string |
ハイライトされた場合 "1"、それ以外は "0" |
|
string |
プレフィックス |
|
string |
色コードを削除したプレフィックス |
|
string |
メッセージ |
|
string |
色コードを削除したメッセージ |
メッセージにつけられたタグに関する変数:
変数 | 型 | 説明 |
---|---|---|
|
string |
メッセージのタグ (文字列の最初と最後にコンマが追加されます) |
|
string |
メッセージのタグの個数 |
|
string |
ニックネーム ("nick_xxx" タグから) |
|
string |
プレフィックスで使うニックネームの色 ("prefix_nick_ccc" タグから) |
|
string |
ユーザ名とホスト名、書式: username@host ("host_xxx" タグから) |
|
string |
通知レベル (none、message、private、highlight) |
|
string |
IRC message tag (key "xxx"). (1) |
|
string |
通知レベルが none 以外の場合、その通知レベル |
|
string |
プライベートメッセージの場合 "1"、それ以外は "0" |
注記
|
(1) Commas are replaced by semicolons in IRC tag (key and value). |
Command
"command" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
バッファ |
|
string |
The number of arguments (the command itself counts for one). |
|
string |
N 番目の引数 ( |
|
string |
N 番目の引数から最後の引数まで ( |
|
string |
The number of arguments with a split like the shell does (the command itself counts for one). |
|
string |
Argument #N with a split like the shell does ( |
Command_run
"command_run" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
バッファ |
|
string |
実行されたコマンド |
Timer
"timer" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
string |
残り呼び出し回数 |
|
string |
現在の日付および時間 (書式: |
Focus
"focus" コールバックは以下の変数をハッシュテーブルに格納します:
変数 | 型 | 説明 |
---|---|---|
|
pointer |
ウィンドウ |
|
pointer |
バッファ |
ハッシュテーブルには受け取ったハッシュテーブルに含まれる全てのキーおよび値 (型: string/string) が含まれています。
14.9. 例
URL の色
URL を緑色にする:
/trigger add url_color modifier weechat_print "${tg_notify}" "==[a-zA-Z0-9_]+://[^ ]+==${color:green}${re:0}${color:reset}=="
注記
|
ここで使われている URL を検出するための単純な正規表現はすべての URL をうまく検出するものではありませんが、複雑な正規表現を使うよりも高速です。 |
ping クエリに対する自動応答
誰かがプライベートバッファで "ping" を送信した場合、このトリガは
pong
で自動的に応答します:
/trigger add pong print "" "${type} == private && ${tg_message} == ping" "" "pong"
レスポンシブレイアウト
以下のトリガは端末のサイズが変更されたときに表示されている内容をカスタマイズするものです:
/trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist" /trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist"
WeeChat は SIGWINCH を受けとたった際 (端末のサイズが変更された際) に "signal_sigwinch" シグナルを送信し、このトリガはこのシグナルをキャッチします。
${info:term_width}
を使った条件で端末の横幅を確認します (必要であれば
${info:term_height}
を使うことも可能です)。
この例では、端末が小さくなった場合、ニックネームリストを隠します。さらに横幅が 100 文字幅以上になった場合、ニックネームリストを表示します。
14.10. コマンド
-
trigger
: ??? (WeeChat ????????????) ???
/trigger list [-o|-ol|-i|-il] listfull listdefault add|addoff|addreplace <name> <hook> ["<arguments>" ["<conditions>" ["<regex>" ["<command>" ["<return_code>" ["<post_action>"]]]]]] addinput [<hook>] input|output|recreate <name> set <name> <option> <value> rename|copy <name> <new_name> enable|disable|toggle [<name>|<mask>...] restart <name>|<mask>... show <name> del <name>|<mask>... restore <name>|<mask>... default -yes monitor [<filter>] list: list triggers (without argument, this list is displayed) -o: send list of triggers enabled to buffer (string in English) -ol: send list of triggers enabled to buffer (translated string) -i: copy list of triggers enabled in command line (for sending to buffer) (string in English) -il: copy list of triggers enabled in command line (for sending to buffer) (translated string) listfull: list triggers with detailed info for each trigger listdefault: list default triggers add: add a trigger addoff: add a trigger (disabled) addreplace: add or replace an existing trigger name: name of trigger hook: signal, hsignal, modifier, line, print, command, command_run, timer, config, focus, info, info_hashtable arguments: arguments for the hook, depending on hook (separated by semicolons): type `signal`: name(s) of signal (required) type `hsignal`: name(s) of hsignal (required) type `modifier`: name(s) of modifier (required) type `line`: buffer type ("formatted", "free" or "*"), list of buffer masks, tags type `print`: buffer, tags, message, strip colors type `command`: command (required), description, arguments, description of arguments, completion (all arguments except command are evaluated, "${tg_trigger_name}" is replaced by the trigger name, see /help eval) type `command_run`: command(s) (required) type `timer`: interval (required), align on second, max calls type `config`: name(s) of option (required) type `focus`: name(s) of area (required) type `info`: name(s) of info (required) type `info_hashtable`: name(s) of info (required) conditions: evaluated conditions for the trigger regex: one or more regular expressions to replace strings in variables command: command to execute (many commands can be separated by ";") return_code: return code in callback (ok (default), ok_eat, error) post_action: action to take after execution (none (default), disable, delete) addinput: set input with default arguments to create a trigger input: set input with the command used to create the trigger output: send the command to create the trigger on the buffer recreate: same as "input", with option "addreplace" instead of "add" set: set an option in a trigger option: name of option: name, hook, arguments, conditions, regex, command, return_code (for help on option, you can type: /help trigger.trigger.<name>.<option>) value: new value for the option rename: rename a trigger copy: copy a trigger enable: enable triggers (without arguments: enable triggers globally) disable: disable triggers (without arguments: disable triggers globally) toggle: toggle triggers (without arguments: toggle triggers globally) restart: restart triggers (recreate the hooks) show: show detailed info on a trigger (with some stats) del: delete triggers restore: restore triggers with the default values (works only for default triggers) mask: name where wildcard "*" is allowed default: delete all triggers and restore default ones monitor: open the trigger monitor buffer, with optional filter filter: filter hooks/triggers to display (a hook must start with "@", for example "@signal"), many filters can be separated by commas; wildcard "*" is allowed in each trigger name When a trigger callback is called, following actions are performed, in this order: 1. check conditions; if false, exit 2. replace text using POSIX extended regular expression(s) (if defined in trigger) 3. execute command(s) (if defined in trigger) 4. exit with a return code (except for modifier, line, focus, info and info_hashtable) 5. perform post action Examples (you can also look at default triggers with /trigger listdefault): add text attributes *bold*, _underline_ and /italic/ (only in user messages): /trigger add effects modifier weechat_print "${tg_tag_nick}" "==\*([^ ]+)\*==*${color:bold}${re:1}${color:-bold}*== ==_([^ ]+)_==_${color:underline}${re:1}${color:-underline}_== ==/([^ ]+)/==/${color:italic}${re:1}${color:-italic}/" hide nicklist bar on small terminals: /trigger add resize_small signal signal_sigwinch "${info:term_width} < 100" "" "/bar hide nicklist" /trigger add resize_big signal signal_sigwinch "${info:term_width} >= 100" "" "/bar show nicklist" silently save config each hour: /trigger add cfgsave timer 3600000;0;0 "" "" "/mute /save" silently save WeeChat session at midnight (see /help upgrade): /trigger add session_save signal day_changed "" "" "/mute /upgrade -save" open trigger monitor and show only modifiers and triggers whose name starts with "resize": /trigger monitor @modifier,resize*
14.11. オプション
trigger.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
トリガオプション |
オプション:
-
-
??: ???????????????? (/trigger list ?)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: ?????????????? (/trigger list ?)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
trigger.color.flag_post_action
-
??: ????????????????? (/trigger list ?)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightblue
-
-
-
??: ???????????????? (/trigger list ?)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
trigger.color.flag_return_code
-
??: ???????????????? (/trigger list ?)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: text color for trigger context identifier in monitor buffer
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: ?????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ??????????????? (?????)
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
cyan
-
-
-
??: ???????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
trigger.look.monitor_strip_colors
-
??: ?????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
15. Extending WeeChat
WeeChat has a modular design and can be extended with plugins and scripts.
プラグイン と スクリプト の違いを明らかにすることは重要です:
プラグイン とは /plugin
コマンドで読み込まれるコンパイル済みバイナリファイルです。これに対して、
スクリプト とは /python
等のコマンドで python
等のプラグインとともに読み込まれるテキストファイルです。
15.1. プラグイン
プラグインとは動的ライブラリのことで、C 言語で書かれてコンパイルされています。プラグインは WeeChat によって読み込まれます。GNU/Linux の場合、プラグインファイルは ".so" という拡張子を持ち、Windows の場合、".dll" です。
見つかったプラグインは WeeChat の起動時に自動的に読み込まれます。WeeChat の起動時にプラグインを読み込むか否かは選択可能です。
/plugin
コマンドを使うことで、プラグインのロード/アンロード、ロード済みプラグインの表示を行うことができます。
When a plugin is unloaded, WeeChat removes:
-
buffers
-
configuration options (options are written in files)
-
all hooks: commands, modifiers, process, etc.
-
infos and infolists
-
hdata
-
bar items.
プラグインをロード、アンロード、ロード済みプラグインを表示する例:
/plugin load irc /plugin unload irc /plugin list
デフォルトプラグインのリスト:
プラグイン | 説明 |
---|---|
alias |
コマンドの別名を定義 |
buflist |
バッファリストを表示するためのバー要素 |
charset |
バッファの文字コードに従ってデコード/エンコード |
exec |
WeeChat 内部から外部コマンドを実行 |
fifo |
外部から WeeChat にコマンドを送信するための FIFO パイプ |
fset |
WeeChat とプラグインのオプションを高速設定 |
irc |
IRC チャットプロトコル |
logger |
バッファの内容をファイルに保存 |
relay |
ネットワーク経由でデータを中継 |
script |
スクリプトマネージャ |
python |
Python スクリプト API |
perl |
Perl スクリプト API |
ruby |
Ruby スクリプト API |
lua |
Lua スクリプト API |
tcl |
Tcl スクリプト API |
guile |
Guile (scheme) スクリプト API |
javascript |
JavaScript スクリプト API |
php |
PHP スクリプト API |
spell |
コマンドラインのスペルチェック |
trigger |
WeeChat およびプラグインが発生させたイベントに対するテキスト置換とコマンド実行 |
typing |
Display users currently writing messages. |
xfer |
ファイル転送とダイレクトチャット |
API を使ったプラグインやスクリプトの開発についてより詳しく学ぶには WeeChat プラグイン API リファレンス ↗または WeeChat スクリプト作成ガイド ↗を参照してください。
15.2. スクリプト
WeeChat は 8 種類のスクリプトプラグインを備えています: Python、Perl、Ruby、Lua、Tcl、Guile (scheme)、JavaScript、PHP。これらのプラグインでそれぞれの言語で書かれたスクリプトのロード、実行、アンロードができます。
スクリプトの書き方やスクリプト用の WeeChat API についての詳しい情報は WeeChat スクリプト作成ガイド ↗を参照してください。
Script manager
The script manager (command /script) is used to load/unload scripts of any language, and install/remove scripts of WeeChat scripts repository, which are visible on this page ↗.
For privacy considerations, the download of scripts is disabled by default.
To enable it, type this command:
/script enable
Then you can download the list of scripts and display them in a new buffer with the /script command:
┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────┐ │1.weechat│322/322 個のスクリプト (フィルタ: *) | ソート: i,p,n | Alt+key/input: i=インストール、r=削除、l=ロ>>│ │2.scripts│* autosort.py 3.10 2023-12-31 | サーバによるグループ化と名前によるソート│ │ │* highmon.pl 2.7 2020-06-21 | ハイライトモニタバッファを追加。 │ │ │*ia r grep.py 0.8.6 0.8.6 2022-11-11 | バッファとログファイルから正規表現で検索│ │ │* colorize_nicks.py 32 2023-10-30 | チャットエリアとコマンドラインで weechat│ │ │*ia r go.py 3.0.1 3.0.1 2024-05-30 | 素早くバッファへ移動。 │ │ │ aesthetic.py 1.0.6 2020-10-25 | Make messages more A E S T H E T I C A L│ │ │ aformat.py 0.2 2018-06-21 | テキスト書式を変更します、書式機能を持た│ │ │ alternatetz.py 0.4 2022-01-25 | 代替タイムゾーン要素を追加。 │ │ │ amarok2.pl 0.7 2012-05-08 | Amarok 2 の操作と現在再生中の局に関する │ │ │ amqp_notify.rb 0.1 2011-01-12 | プライベートメッセージとハイライトを AMQ│ │ │ announce_url_title.py 19 2021-06-05 | URL タイトルをユーザまたはチャンネルに通│ │ │ anotify.py 1.0.2 2020-05-16 | プライベートメッセージ、ハイライト、DCC │ │ │ anti_password.py 1.2.1 2021-03-13 | Prevent a password from being accidental│ │ │ apply_corrections.py 1.3 2018-06-21 | ユーザが s/誤/正 を送信したらテキストを │ │ │ arespond.py 0.1.2 2022-01-25 | 単純な自動応答。 │ │ │ atcomplete.pl 0.001 2016-10-29 | "@" 文字の後でニックネームのタブ補完。 │ │ │ audacious.pl 0.3 2009-05-03 | Audacious が現在再生中の曲を表示。 │ │ │ auth.rb 0.3 2014-05-30 | SASL ユーザ名およびパスワードを使って Ni│ │ │ auto_away.py 0.4 2018-11-11 | 簡単な自動離席スクリプト。 │ │ │ autoauth.py 1.3 2021-11-07 | ニックネームを変更した際に自動認証を許可│ │ │ autobump.py 0.1.0 2019-06-14 | バッファの活発さに応じて並び替える。 │ │ │ autoconf.py 0.4 2021-05-11 | 変更されたオプションを .weerc ファイルに│ │ │ autoconnect.py 0.3.3 2019-10-06 | WeeChat の終了時に開いていたサーバとチャ│ │ │ autojoin_on_invite.py 0.9 2022-10-25 | チャンネルに招待されたら自動的に参加。 │ │ │ automarkbuffer.py 1.0 2015-03-31 | 特定の時間内に新しいメッセージを受け取っ│ │ │ automerge.py 0.2 2018-03-03 | 新しいバッファを事前に定義した規則に従っ│ │ │[12:55] [2] [script] 2:scripts │ │ │█ │ └──────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
Script コマンド
-
script
: WeeChat ??????????
/script enable list [-o|-ol|-i|-il] search <text> show <script> load|unload|reload <script>... autoload|noautoload|toggleautoload <script>... install|remove|installremove|hold [-q] <script>... upgrade update -up|-down [<number>] -go <line>|end enable: enable download of scripts (turn on option script.scripts.download_enabled) list: list loaded scripts (all languages) -o: send list of loaded scripts to buffer (string in English) -ol: send list of loaded scripts to buffer (translated string) -i: copy list of loaded scripts in command line (for sending to buffer) (string in English) -il: copy list of loaded scripts in command line (for sending to buffer) (translated string) search: search scripts by tags, language (python, perl, ...), filename extension (py, pl, ...) or text; result is displayed on scripts buffer show: show detailed info about a script load: load script(s) unload: unload script(s) reload: reload script(s) autoload: autoload the script noautoload: do not autoload the script toggleautoload: toggle autoload install: install/upgrade script(s) remove: remove script(s) installremove: install or remove script(s), depending on current state hold: hold/unhold script(s) (a script held will not be upgraded anymore and cannot be removed) -q: quiet mode: do not display messages upgrade: upgrade all installed scripts which are obsolete (new version available) update: update local scripts cache -up: move the selected line up by "number" lines -down: move the selected line down by "number" lines -go: select a line by number, first line number is 0 ("end" to select the last line) Without argument, this command opens a buffer with list of scripts. On script buffer, the possible status for each script are: `*`: popular script `i`: installed `a`: autoloaded `H`: held `r`: running (loaded) `N`: obsolete (new version available) In output of /script list, this additional status can be displayed: `?`: unknown script (cannot be downloaded/updated) In input of script buffer, word(s) are used to filter scripts on description, tags, ...). The input "*" removes the filter. For keys, input and mouse actions on the buffer, see key bindings in User's guide. Examples: /script search url /script install go.py urlserver.py /script remove go.py /script hold urlserver.py /script reload urlserver /script upgrade
スクリプトオプション
script.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
|
|
色 |
|
|
スクリプトのダウンロードに関するオプション |
オプション:
-
script.color.status_autoloaded
-
??: "?????" ?? ("a") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
39
-
-
-
??: "????" ?? ("H") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: "????????" ?? ("i") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightcyan
-
-
-
??: "?????????" ?? ("N") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightmagenta
-
-
-
??: "??" ?? ("*") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: "???" ?? ("r") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightgreen
-
-
-
??: "???" ?? ("?") ??????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
lightred
-
-
-
??: ???????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
default
-
-
-
??: ??????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
24
-
-
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
65
-
-
script.color.text_date_selected
-
??: ???????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
50
-
-
-
??: ??????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
240
-
-
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
249
-
-
script.color.text_description_selected
-
??: ???????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
242
-
-
script.color.text_extension_selected
-
??: ????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
248
-
-
-
??: ???????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
73
-
-
script.color.text_name_selected
-
??: ???????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
51
-
-
-
??: ????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
-
??: ???????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
brown
-
-
script.color.text_tags_selected
-
??: ???????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
yellow
-
-
-
??: ??????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
100
-
-
script.color.text_version_loaded
-
??: ???????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
246
-
-
script.color.text_version_loaded_selected
-
??: ???????????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
white
-
-
script.color.text_version_selected
-
??: ??????????????????????????????
-
???: ?
-
?: a WeeChat color name (default, black, (dark)gray, white, (light)red, (light)green, brown, yellow, (light)blue, (light)magenta, (light)cyan), a terminal color number or an alias; attributes are allowed before color (for text color only, not background): "%" for blink, "." for "dim" (half bright), "*" for bold, "!" for reverse, "/" for italic, "_" for underline
-
??????:
228
-
-
-
??: format of columns displayed in script buffer: following column identifiers are replaced by their values: %a=author, %d=description, %D=date added, %e=extension, %l=language, %L=license, %n=name with extension, %N=name, %r=requirements, %s=status, %t=tags, %u=date updated, %v=version, %V=version loaded, %w=min_weechat, %W=max_weechat)
-
???: ???
-
?: ??????
-
??????:
"%s %n %V %v %u | %d | %t"
-
-
-
??: ???????????
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????????????????????? ("auto" = ??????????? (git ??? diff)????? = ?????????????? = ????????? "diff")
-
???: ???
-
?: ??????
-
??????:
"auto"
-
-
-
??: ???????????????????????????????? (?????????????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ?????????????????????????: ???????????? / ?? / ??? / ????????????????????????????? (?????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????: ?????????????: a=???A=??????d=????e=????i=?????????l=???n=???o=??????????p=???r=????u=???????; ???????? "-" ??????????; ?: "i,u": ????????????????????????????
-
???: ???
-
?: ??????
-
??????:
"i,p,n"
-
-
script.look.translate_description
-
??: ????????????? (??????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????????????????? alt+X ?????????? (alt+i = ???????alt+r = ???...); ???????????????????????: i?r?...
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ??????????????????? ("autoload" ??????????????????????????????)
-
???: ???
-
?: on, off
-
??????:
on
-
-
-
??: ????????????????????? (-1 = ???????0 = ?????)
-
???: ??
-
?: -1 .. 525600
-
??????:
1440
-
-
script.scripts.download_enabled
-
??: enable download of files from the scripts repository when the /script command is used (list of scripts and scripts themselves); the list of scripts is downloaded from the URL specified in the option script.scripts.url; WeeChat will sometimes download again the list of scripts when you use the /script command, even if you don't install a script
-
???: ???
-
?: on, off
-
??????:
off
-
-
script.scripts.download_timeout
-
??: ?????????????????????????????????? (???)
-
???: ??
-
?: 1 .. 3600
-
??????:
30
-
-
-
??: scripts to "hold": comma-separated list of scripts which will never been upgraded and cannot be removed, for example: "go.py,urlserver.py"
-
???: ???
-
?: ??????
-
??????:
""
-
-
-
??: local cache directory for scripts (path is evaluated, see function string_eval_path_home in plugin API reference)
-
???: ???
-
?: ??????
-
??????:
"${weechat_cache_dir}/script"
-
-
-
??: ????????????????? URL
-
???: ???
-
?: ??????
-
??????:
"https://weechat.org/files/plugins.xml.gz"
-
Scripting plugins
Python コマンド
-
python
: ????????????/???/?????
/python list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Perl コマンド
-
perl
: ????????????/???/?????
/perl list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Ruby コマンド
-
ruby
: ????????????/???/?????
/ruby list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Lua コマンド
-
lua
: ????????????/???/?????
/lua list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Tcl コマンド
-
tcl
: ????????????/???/?????
/tcl list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Guile コマンド
-
guile
: ????????????/???/?????
/guile list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
PHP コマンド
-
php
: ????????????/???/?????
/php list|listfull [<name>] load [-q] <filename> autoload reload|unload [-q] [<name>] eval [-o|-oc] <code> version list: list loaded scripts listfull: list loaded scripts (verbose) load: load a script autoload: load all scripts in "autoload" directory reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory) unload: unload a script (if no name given, unload all scripts) filename: script (file) to load -q: quiet mode: do not display messages name: a script name (name used in call to "register" function) eval: evaluate source code and display result on current buffer -o: send evaluation result to the buffer without executing commands -oc: send evaluation result to the buffer and execute commands code: source code to evaluate version: display the version of interpreter used Without argument, this command lists all loaded scripts.
Python オプション
python.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
Perl オプション
perl.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
Ruby オプション
ruby.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
Lua オプション
lua.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
Tcl オプション
tcl.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
Guile オプション
guile.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
PHP オプション
php.conf ファイル内のセクション:
セクション | 操作コマンド | 説明 |
---|---|---|
|
|
外観 |
オプション:
-
-
??: ???????????????????????????: ?????????????????????????????????
-
???: ???
-
?: on, off
-
??????:
off
-
-
-
??: ???????? (??????????????? "eval" ??????? "%s_eval") ???????????????????; ????????????????????????????; ????????????????????????????????????: ???????????????????
-
???: ???
-
?: on, off
-
??????:
on
-
16. サポート
サポートを依頼する前に、必ず WeeChat に付属するドキュメントと FAQ を読んでください。
IRC を使ったサポート窓口は irc.libera.chat サーバにあります:
-
公式チャンネル (開発者もいます):
-
#weechat (英語)
-
#weechat-fr (フランス語)
-
-
非公式チャンネル:
-
#weechat-de (ドイツ語)
-
#weechat-fi (フィンランド語)
-
For other ways of support, see this page ↗.