mirror of
https://github.com/weechat/weechat.git
synced 2026-07-01 15:26:37 +02:00
Added 3 default new keys: ctrl-B (left), ctrl-F (right), ctrl-D (delete)
This commit is contained in:
@@ -5,6 +5,7 @@ ChangeLog - 2007-07-18
|
||||
|
||||
|
||||
Version 0.2.6 (under dev!):
|
||||
* added 3 default new keys: ctrl-B (left), ctrl-F (right), ctrl-D (delete)
|
||||
* added "buffer_move" event handler to plugins API (task #6708)
|
||||
* added key function "jump_previous_buffer" to jump to buffer previously
|
||||
displayed (new key: alt-J + alt-P) (task #7085)
|
||||
|
||||
@@ -463,13 +463,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Links</entry>
|
||||
<entry>Links / Strg + B</entry>
|
||||
<entry>
|
||||
Gehe zum vorherigen Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Rechts</entry>
|
||||
<entry>Rechts / Strg + F</entry>
|
||||
<entry>
|
||||
Gehe zum nächsten Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
@@ -579,7 +579,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Entfernen</entry>
|
||||
<entry>Entfernen / Strg + D</entry>
|
||||
<entry>
|
||||
Lösche das nächste Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
|
||||
@@ -458,13 +458,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Left arrow</entry>
|
||||
<entry>Left arrow / Ctrl + B</entry>
|
||||
<entry>
|
||||
Go to previous char in command line
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Right arrow</entry>
|
||||
<entry>Right arrow / Ctrl + F</entry>
|
||||
<entry>
|
||||
Go to next char in command line
|
||||
</entry>
|
||||
@@ -573,7 +573,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Delete</entry>
|
||||
<entry>Delete / Ctrl + D</entry>
|
||||
<entry>
|
||||
Delete next char in command line
|
||||
</entry>
|
||||
|
||||
@@ -467,13 +467,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Flèche gauche</entry>
|
||||
<entry>Flèche gauche / Ctrl + B</entry>
|
||||
<entry>
|
||||
Aller au caractère précédent sur la ligne de commande
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Flèche droite</entry>
|
||||
<entry>Flèche droite / Ctrl + F</entry>
|
||||
<entry>
|
||||
Aller au caractère suivant sur la ligne de commande
|
||||
</entry>
|
||||
@@ -582,7 +582,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Delete</entry>
|
||||
<entry>Delete / Ctrl + D</entry>
|
||||
<entry>
|
||||
Effacer le caractère suivant sur la ligne de commande
|
||||
</entry>
|
||||
|
||||
@@ -51,6 +51,7 @@ gui_keyboard_default_bindings ()
|
||||
gui_keyboard_bind ( /* basckpace */ "ctrl-H", "backspace");
|
||||
gui_keyboard_bind ( /* basckpace */ "ctrl-?", "backspace");
|
||||
gui_keyboard_bind ( /* del */ "meta2-3~", "delete");
|
||||
gui_keyboard_bind ( /* ^D */ "ctrl-D", "delete");
|
||||
gui_keyboard_bind ( /* ^K */ "ctrl-K", "delete_end_line");
|
||||
gui_keyboard_bind ( /* ^U */ "ctrl-U", "delete_beginning_line");
|
||||
gui_keyboard_bind ( /* ^W */ "ctrl-W", "delete_previous_word");
|
||||
@@ -65,7 +66,9 @@ gui_keyboard_default_bindings ()
|
||||
gui_keyboard_bind ( /* end */ "meta2-8~", "end");
|
||||
gui_keyboard_bind ( /* ^E */ "ctrl-E", "end");
|
||||
gui_keyboard_bind ( /* left */ "meta2-D", "left");
|
||||
gui_keyboard_bind ( /* ^B */ "ctrl-B", "left");
|
||||
gui_keyboard_bind ( /* right */ "meta2-C", "right");
|
||||
gui_keyboard_bind ( /* ^F */ "ctrl-F", "right");
|
||||
gui_keyboard_bind ( /* up */ "meta2-A", "up");
|
||||
gui_keyboard_bind ( /* ^up */ "meta-Oa", "up_global");
|
||||
gui_keyboard_bind ( /* down */ "meta2-B", "down");
|
||||
|
||||
@@ -5,6 +5,7 @@ ChangeLog - 2007-07-18
|
||||
|
||||
|
||||
Version 0.2.6 (under dev!):
|
||||
* added 3 default new keys: ctrl-B (left), ctrl-F (right), ctrl-D (delete)
|
||||
* added "buffer_move" event handler to plugins API (task #6708)
|
||||
* added key function "jump_previous_buffer" to jump to buffer previously
|
||||
displayed (new key: alt-J + alt-P) (task #7085)
|
||||
|
||||
@@ -463,13 +463,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Links</entry>
|
||||
<entry>Links / Strg + B</entry>
|
||||
<entry>
|
||||
Gehe zum vorherigen Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Rechts</entry>
|
||||
<entry>Rechts / Strg + F</entry>
|
||||
<entry>
|
||||
Gehe zum nächsten Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
@@ -579,7 +579,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Entfernen</entry>
|
||||
<entry>Entfernen / Strg + D</entry>
|
||||
<entry>
|
||||
Lösche das nächste Zeichen in der Kommandozeile
|
||||
</entry>
|
||||
|
||||
@@ -458,13 +458,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Left arrow</entry>
|
||||
<entry>Left arrow / Ctrl + B</entry>
|
||||
<entry>
|
||||
Go to previous char in command line
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Right arrow</entry>
|
||||
<entry>Right arrow / Ctrl + F</entry>
|
||||
<entry>
|
||||
Go to next char in command line
|
||||
</entry>
|
||||
@@ -573,7 +573,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Delete</entry>
|
||||
<entry>Delete / Ctrl + D</entry>
|
||||
<entry>
|
||||
Delete next char in command line
|
||||
</entry>
|
||||
|
||||
@@ -467,13 +467,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>Flèche gauche</entry>
|
||||
<entry>Flèche gauche / Ctrl + B</entry>
|
||||
<entry>
|
||||
Aller au caractère précédent sur la ligne de commande
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Flèche droite</entry>
|
||||
<entry>Flèche droite / Ctrl + F</entry>
|
||||
<entry>
|
||||
Aller au caractère suivant sur la ligne de commande
|
||||
</entry>
|
||||
@@ -582,7 +582,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Delete</entry>
|
||||
<entry>Delete / Ctrl + D</entry>
|
||||
<entry>
|
||||
Effacer le caractère suivant sur la ligne de commande
|
||||
</entry>
|
||||
|
||||
@@ -51,6 +51,7 @@ gui_keyboard_default_bindings ()
|
||||
gui_keyboard_bind ( /* basckpace */ "ctrl-H", "backspace");
|
||||
gui_keyboard_bind ( /* basckpace */ "ctrl-?", "backspace");
|
||||
gui_keyboard_bind ( /* del */ "meta2-3~", "delete");
|
||||
gui_keyboard_bind ( /* ^D */ "ctrl-D", "delete");
|
||||
gui_keyboard_bind ( /* ^K */ "ctrl-K", "delete_end_line");
|
||||
gui_keyboard_bind ( /* ^U */ "ctrl-U", "delete_beginning_line");
|
||||
gui_keyboard_bind ( /* ^W */ "ctrl-W", "delete_previous_word");
|
||||
@@ -65,7 +66,9 @@ gui_keyboard_default_bindings ()
|
||||
gui_keyboard_bind ( /* end */ "meta2-8~", "end");
|
||||
gui_keyboard_bind ( /* ^E */ "ctrl-E", "end");
|
||||
gui_keyboard_bind ( /* left */ "meta2-D", "left");
|
||||
gui_keyboard_bind ( /* ^B */ "ctrl-B", "left");
|
||||
gui_keyboard_bind ( /* right */ "meta2-C", "right");
|
||||
gui_keyboard_bind ( /* ^F */ "ctrl-F", "right");
|
||||
gui_keyboard_bind ( /* up */ "meta2-A", "up");
|
||||
gui_keyboard_bind ( /* ^up */ "meta-Oa", "up_global");
|
||||
gui_keyboard_bind ( /* down */ "meta2-B", "down");
|
||||
|
||||
Reference in New Issue
Block a user