Files
source/Y/keymap.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

140 lines
23 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>keymap</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<pre>
<span class='curline'><a href='../S/lib--keybind.c.html#L412'>keymap</a> 412 lib/keybind.c keymap_add (GArray *keymap, long key, long cmd, const char *caption)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L421'>keymap</a> 421 lib/keybind.c g_array_append_val (keymap, new_bind);</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L430'>keymap</a> 430 lib/keybind.c keybind_cmd_bind (GArray *keymap, const char *keybind, long action)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L436'>keymap</a> 436 lib/keybind.c keymap_add (keymap, key, action, caption);</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L473'>keymap</a> 473 lib/keybind.c keybind_lookup_keymap_shortcut (const global_keymap_t *keymap, long action)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L475'>keymap</a> 475 lib/keybind.c if (keymap != NULL)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L479'>keymap</a> 479 lib/keybind.c for (i = 0; keymap[i].key != 0; i++)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L480'>keymap</a> 480 lib/keybind.c if (keymap[i].command == action)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L481'>keymap</a> 481 lib/keybind.c return (keymap[i].caption[0] != '\0') ? keymap[i].caption : NULL;</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L489'>keymap</a> 489 lib/keybind.c keybind_lookup_keymap_command (const global_keymap_t *keymap, long key)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L491'>keymap</a> 491 lib/keybind.c if (keymap != NULL)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L495'>keymap</a> 495 lib/keybind.c for (i = 0; keymap[i].key != 0; i++)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L496'>keymap</a> 496 lib/keybind.c if (keymap[i].key == key)</span>
<span class='curline'><a href='../S/lib--keybind.c.html#L497'>keymap</a> 497 lib/keybind.c return keymap[i].command;</span>
<span class='curline'><a href='../S/lib--keybind.h.html#L360'>keymap</a> 360 lib/keybind.h void keybind_cmd_bind (GArray *keymap, const char *keybind, long action);</span>
<span class='curline'><a href='../S/lib--keybind.h.html#L363'>keymap</a> 363 lib/keybind.h const char *keybind_lookup_keymap_shortcut (const global_keymap_t *keymap, long action);</span>
<span class='curline'><a href='../S/lib--keybind.h.html#L364'>keymap</a> 364 lib/keybind.h long keybind_lookup_keymap_command (const global_keymap_t *keymap, long key);</span>
<span class='curline'><a href='../S/lib--widget--buttonbar.c.html#L263'>keymap</a> 263 lib/widget/buttonbar.c buttonbar_set_label (WButtonBar *bb, int idx, const char *text, const global_keymap_t *keymap,</span>
<span class='curline'><a href='../S/lib--widget--buttonbar.c.html#L270'>keymap</a> 270 lib/widget/buttonbar.c if (keymap != NULL)</span>
<span class='curline'><a href='../S/lib--widget--buttonbar.c.html#L271'>keymap</a> 271 lib/widget/buttonbar.c command = keybind_lookup_keymap_command (keymap, KEY_F (idx));</span>
<span class='curline'><a href='../S/lib--widget--buttonbar.h.html#L40'>keymap</a> 40 lib/widget/buttonbar.h void buttonbar_set_label (WButtonBar *bb, int idx, const char *text, const global_keymap_t *keymap,</span>
<span class='curline'><a href='../S/lib--widget--dialog.c.html#L390'>keymap</a> 390 lib/widget/dialog.c w-&gt;keymap = dialog_map;</span>
<span class='curline'><a href='../S/lib--widget--input.c.html#L966'>keymap</a> 966 lib/widget/input.c w-&gt;keymap = input_map;</span>
<span class='curline'><a href='../S/lib--widget--listbox.c.html#L568'>keymap</a> 568 lib/widget/listbox.c w-&gt;keymap = listbox_map;</span>
<span class='curline'><a href='../S/lib--widget--menu.c.html#L973'>keymap</a> 973 lib/widget/menu.c w-&gt;keymap = menu_map;</span>
<span class='curline'><a href='../S/lib--widget--radio.c.html#L242'>keymap</a> 242 lib/widget/radio.c w-&gt;keymap = radio_map;</span>
<span class='curline'><a href='../S/lib--widget--widget-common.c.html#L314'>keymap</a> 314 lib/widget/widget-common.c w-&gt;keymap = NULL;</span>
<span class='curline'><a href='../S/lib--widget--widget-common.c.html#L673'>keymap</a> 673 lib/widget/widget-common.c return keybind_lookup_keymap_command (w-&gt;keymap, key);</span>
<span class='curline'><a href='../S/lib--widget--widget-common.h.html#L146'>keymap</a> 146 lib/widget/widget-common.h const global_keymap_t *keymap; // main keymap</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2900'>keymap</a> 2900 src/diffviewer/ydiff.c buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2901'>keymap</a> 2901 src/diffviewer/ydiff.c buttonbar_set_label (b, 2, Q_ ("ButtonBar|Save"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2902'>keymap</a> 2902 src/diffviewer/ydiff.c buttonbar_set_label (b, 4, Q_ ("ButtonBar|Edit"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2903'>keymap</a> 2903 src/diffviewer/ydiff.c buttonbar_set_label (b, 5, Q_ ("ButtonBar|Merge"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2904'>keymap</a> 2904 src/diffviewer/ydiff.c buttonbar_set_label (b, 7, Q_ ("ButtonBar|Search"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2905'>keymap</a> 2905 src/diffviewer/ydiff.c buttonbar_set_label (b, 9, Q_ ("ButtonBar|Options"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L2906'>keymap</a> 2906 src/diffviewer/ydiff.c buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), d-&gt;keymap, d);</span>
<span class='curline'><a href='../S/src--diffviewer--ydiff.c.html#L3347'>keymap</a> 3347 src/diffviewer/ydiff.c w-&gt;keymap = diff_map;</span>
<span class='curline'><a href='../S/src--editor--edit.c.html#L2125'>keymap</a> 2125 src/editor/edit.c w-&gt;keymap = editor_map;</span>
<span class='curline'><a href='../S/src--editor--editmacros.c.html#L157'>keymap</a> 157 src/editor/editmacros.c tmp_act = keybind_lookup_keymap_command (WIDGET (edit)-&gt;keymap, hotkey);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L669'>keymap</a> 669 src/editor/editwidget.c buttonbar_set_label (bb, 1, Q_ ("ButtonBar|Help"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L670'>keymap</a> 670 src/editor/editwidget.c buttonbar_set_label (bb, 2, Q_ ("ButtonBar|Save"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L671'>keymap</a> 671 src/editor/editwidget.c buttonbar_set_label (bb, 3, Q_ ("ButtonBar|Mark"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L672'>keymap</a> 672 src/editor/editwidget.c buttonbar_set_label (bb, 4, Q_ ("ButtonBar|Replac"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L673'>keymap</a> 673 src/editor/editwidget.c buttonbar_set_label (bb, 5, Q_ ("ButtonBar|Copy"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L674'>keymap</a> 674 src/editor/editwidget.c buttonbar_set_label (bb, 6, Q_ ("ButtonBar|Move"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L675'>keymap</a> 675 src/editor/editwidget.c buttonbar_set_label (bb, 7, Q_ ("ButtonBar|Search"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L676'>keymap</a> 676 src/editor/editwidget.c buttonbar_set_label (bb, 8, Q_ ("ButtonBar|Delete"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L677'>keymap</a> 677 src/editor/editwidget.c buttonbar_set_label (bb, 9, Q_ ("ButtonBar|PullDn"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L678'>keymap</a> 678 src/editor/editwidget.c buttonbar_set_label (bb, 10, Q_ ("ButtonBar|Quit"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--editor--editwidget.c.html#L1242'>keymap</a> 1242 src/editor/editwidget.c wd-&gt;keymap = editor_map;</span>
<span class='curline'><a href='../S/src--filemanager--chattr.c.html#L886'>keymap</a> 886 src/filemanager/chattr.c w-&gt;keymap = chattr_map;</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L866'>keymap</a> 866 src/filemanager/filemanager.c w-&gt;keymap = filemanager_map;</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1595'>keymap</a> 1595 src/filemanager/filemanager.c buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1596'>keymap</a> 1596 src/filemanager/filemanager.c buttonbar_set_label (b, 2, Q_ ("ButtonBar|Menu"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1597'>keymap</a> 1597 src/filemanager/filemanager.c buttonbar_set_label (b, 3, Q_ ("ButtonBar|View"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1598'>keymap</a> 1598 src/filemanager/filemanager.c buttonbar_set_label (b, 4, Q_ ("ButtonBar|Edit"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1599'>keymap</a> 1599 src/filemanager/filemanager.c buttonbar_set_label (b, 5, Q_ ("ButtonBar|Copy"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1600'>keymap</a> 1600 src/filemanager/filemanager.c buttonbar_set_label (b, 6, Q_ ("ButtonBar|RenMov"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1601'>keymap</a> 1601 src/filemanager/filemanager.c buttonbar_set_label (b, 7, Q_ ("ButtonBar|Mkdir"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1602'>keymap</a> 1602 src/filemanager/filemanager.c buttonbar_set_label (b, 8, Q_ ("ButtonBar|Delete"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1603'>keymap</a> 1603 src/filemanager/filemanager.c buttonbar_set_label (b, 9, Q_ ("ButtonBar|PullDn"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--filemanager.c.html#L1604'>keymap</a> 1604 src/filemanager/filemanager.c buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), w-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--filemanager--panel.c.html#L4502'>keymap</a> 4502 src/filemanager/panel.c w-&gt;keymap = panel_map;</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L969'>keymap</a> 969 src/filemanager/tree.c w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1168'>keymap</a> 1168 src/filemanager/tree.c buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1169'>keymap</a> 1169 src/filemanager/tree.c buttonbar_set_label (b, 2, Q_ ("ButtonBar|Rescan"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1170'>keymap</a> 1170 src/filemanager/tree.c buttonbar_set_label (b, 3, Q_ ("ButtonBar|Forget"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1173'>keymap</a> 1173 src/filemanager/tree.c w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1174'>keymap</a> 1174 src/filemanager/tree.c buttonbar_set_label (b, 5, Q_ ("ButtonBar|Copy"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1175'>keymap</a> 1175 src/filemanager/tree.c buttonbar_set_label (b, 6, Q_ ("ButtonBar|RenMov"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1178'>keymap</a> 1178 src/filemanager/tree.c buttonbar_set_label (b, 7, Q_ ("ButtonBar|Mkdir"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1182'>keymap</a> 1182 src/filemanager/tree.c buttonbar_set_label (b, 8, Q_ ("ButtonBar|Rmdir"), w-&gt;keymap, w);</span>
<span class='curline'><a href='../S/src--filemanager--tree.c.html#L1288'>keymap</a> 1288 src/filemanager/tree.c w-&gt;keymap = tree_map;</span>
<span class='curline'><a href='../S/src--help.c.html#L1183'>keymap</a> 1183 src/help.c wh-&gt;keymap = help_map;</span>
<span class='curline'><a href='../S/src--help.c.html#L1208'>keymap</a> 1208 src/help.c buttonbar_set_label (help_bar, 1, Q_ ("ButtonBar|Help"), wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1209'>keymap</a> 1209 src/help.c buttonbar_set_label (help_bar, 2, Q_ ("ButtonBar|Index"), wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1210'>keymap</a> 1210 src/help.c buttonbar_set_label (help_bar, 3, Q_ ("ButtonBar|Prev"), wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1211'>keymap</a> 1211 src/help.c buttonbar_set_label (help_bar, 4, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1212'>keymap</a> 1212 src/help.c buttonbar_set_label (help_bar, 5, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1213'>keymap</a> 1213 src/help.c buttonbar_set_label (help_bar, 6, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1214'>keymap</a> 1214 src/help.c buttonbar_set_label (help_bar, 7, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1215'>keymap</a> 1215 src/help.c buttonbar_set_label (help_bar, 8, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1216'>keymap</a> 1216 src/help.c buttonbar_set_label (help_bar, 9, "", wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--help.c.html#L1217'>keymap</a> 1217 src/help.c buttonbar_set_label (help_bar, 10, Q_ ("ButtonBar|Quit"), wh-&gt;keymap, NULL);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L663'>keymap</a> 663 src/keymap.c create_default_keymap_section (mc_config_t *keymap, const char *section,</span>
<span class='curline'><a href='../S/src--keymap.c.html#L669'>keymap</a> 669 src/keymap.c mc_config_set_string_raw (keymap, section, k[i].key, k[i].value);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L677'>keymap</a> 677 src/keymap.c mc_config_t *keymap;</span>
<span class='curline'><a href='../S/src--keymap.c.html#L679'>keymap</a> 679 src/keymap.c keymap = mc_config_init (NULL, TRUE);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L681'>keymap</a> 681 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_FILEMANAGER, default_filemanager_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L682'>keymap</a> 682 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_FILEMANAGER_EXT,</span>
<span class='curline'><a href='../S/src--keymap.c.html#L684'>keymap</a> 684 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_PANEL, default_panel_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L685'>keymap</a> 685 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_DIALOG, default_dialog_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L686'>keymap</a> 686 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_MENU, default_menu_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L687'>keymap</a> 687 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_INPUT, default_input_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L688'>keymap</a> 688 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_LISTBOX, default_listbox_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L689'>keymap</a> 689 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_RADIO, default_radio_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L690'>keymap</a> 690 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_TREE, default_tree_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L691'>keymap</a> 691 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_HELP, default_help_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L693'>keymap</a> 693 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_HELP, default_chattr_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L696'>keymap</a> 696 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_EDITOR, default_editor_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L697'>keymap</a> 697 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_EDITOR_EXT, default_editor_x_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L699'>keymap</a> 699 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_VIEWER, default_viewer_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L700'>keymap</a> 700 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_VIEWER_HEX, default_viewer_hex_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L702'>keymap</a> 702 src/keymap.c create_default_keymap_section (keymap, KEYMAP_SECTION_DIFFVIEWER, default_diff_keymap);</span>
<span class='curline'><a href='../S/src--keymap.c.html#L705'>keymap</a> 705 src/keymap.c return keymap;</span>
<span class='curline'><a href='../S/src--keymap.c.html#L711'>keymap</a> 711 src/keymap.c load_keymap_from_section (const char *section_name, GArray *keymap, mc_config_t *cfg)</span>
<span class='curline'><a href='../S/src--keymap.c.html#L735'>keymap</a> 735 src/keymap.c keybind_cmd_bind (keymap, *curr_values, action);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L80'>keymap</a> 80 src/viewer/display.c const global_keymap_t *keymap = view-&gt;mode_flags.hex ? view-&gt;hex_keymap : w-&gt;keymap;</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L83'>keymap</a> 83 src/viewer/display.c buttonbar_set_label (b, 1, Q_ ("ButtonBar|Help"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L88'>keymap</a> 88 src/viewer/display.c buttonbar_set_label (b, 2, Q_ ("ButtonBar|View"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L90'>keymap</a> 90 src/viewer/display.c buttonbar_set_label (b, 2, Q_ ("ButtonBar|Edit"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L92'>keymap</a> 92 src/viewer/display.c buttonbar_set_label (b, 2, "", keymap, WIDGET (view));</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L94'>keymap</a> 94 src/viewer/display.c buttonbar_set_label (b, 4, Q_ ("ButtonBar|Ascii"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L95'>keymap</a> 95 src/viewer/display.c buttonbar_set_label (b, 6, Q_ ("ButtonBar|Save"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L96'>keymap</a> 96 src/viewer/display.c buttonbar_set_label (b, 7, Q_ ("ButtonBar|HxSrch"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L101'>keymap</a> 101 src/viewer/display.c b, 2, view-&gt;mode_flags.wrap ? Q_ ("ButtonBar|UnWrap") : Q_ ("ButtonBar|Wrap"), keymap,</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L103'>keymap</a> 103 src/viewer/display.c buttonbar_set_label (b, 4, Q_ ("ButtonBar|Hex"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L104'>keymap</a> 104 src/viewer/display.c buttonbar_set_label (b, 6, "", keymap, WIDGET (view));</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L105'>keymap</a> 105 src/viewer/display.c buttonbar_set_label (b, 7, Q_ ("ButtonBar|Search"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L108'>keymap</a> 108 src/viewer/display.c buttonbar_set_label (b, 5, Q_ ("ButtonBar|Goto"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L110'>keymap</a> 110 src/viewer/display.c b, 8, view-&gt;mode_flags.magic ? Q_ ("ButtonBar|Raw") : Q_ ("ButtonBar|Parse"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L114'>keymap</a> 114 src/viewer/display.c buttonbar_set_label (b, 3, Q_ ("ButtonBar|Quit"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L117'>keymap</a> 117 src/viewer/display.c keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--display.c.html#L118'>keymap</a> 118 src/viewer/display.c buttonbar_set_label (b, 10, Q_ ("ButtonBar|Quit"), keymap, w);</span>
<span class='curline'><a href='../S/src--viewer--mcviewer.c.html#L209'>keymap</a> 209 src/viewer/mcviewer.c w-&gt;keymap = viewer_map;</span>
</pre>
</body>
</html>