aboutsummaryrefslogtreecommitdiffstats
path: root/pages/help_dialog.html
blob: f8152d6043d33646ae5820cafbfb31585f3d48b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
  <head>
    <title>Vimium Help</title>
    <script type="text/javascript" src="content_script_loader.js"></script>
    <script type="text/javascript" src="ui_component_server.js"></script>
    <script type="text/javascript" src="help_dialog.js"></script>
    <link rel="stylesheet" type="text/css" href="../content_scripts/vimium.css" />
  </head>

  <body>
<!--
  This is shown when typing "?". This HTML is loaded by the background page and then populated with the
  latest keybindings information before displaying.
-->

  <!-- Note that the template placeholders (e.g. "pageNavigation") will be filled in by the background
       page with the up-to-date key bindings when the dialog is shown. -->
    <div id="vimiumHelpDialogContainer">
      <div id="vimiumHelpDialog">
        <div>
          <table>
            <tr>
              <td>
                <span id="vimiumTitle" class="vimiumReset"><span class="vimiumReset" style="color:#2f508e">Vim</span>ium <span id="help-dialog-title"></span></span>
              </td>
              <td class="vimiumHelpDialogTopButtons">
                <a class="vimiumReset" id="helpDialogOptionsPage" href="#">Options</a>
                <a class="vimiumReset" id="helpDialogWikiPage" href="https://github.com/philc/vimium/wiki" target="_blank">Wiki</a>
                <a class="vimiumReset closeButton" href="#">&times;</a>
              </td>
            </tr>
          </table>
        </div>
        <div class="vimiumReset vimiumDivider"></div>
        <div class="vimiumReset vimiumColumn">
          <table class="vimiumReset">
            <thead class="vimiumReset">
              <tr class="vimiumReset" ><td class="vimiumReset"></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Navigating the page</td></tr>
            </thead>
            <tbody id="help-dialog-pageNavigation" class="vimiumReset">
            </tbody>
          </table>
        </div>
        <div class="vimiumReset vimiumColumn">
          <table class="vimiumReset" >
            <thead class="vimiumReset">
            <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Using the vomnibar</td></tr>
            </thead>
            <tbody class="vimiumReset" id="help-dialog-vomnibarCommands"></tbody>
            <thead class="vimiumReset">
            <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Using find</td></tr>
            </thead>
            <tbody class="vimiumReset" id="help-dialog-findCommands"></tbody>
            <thead class="vimiumReset">
            <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Navigating history</td></tr>
            </thead>
            <tbody class="vimiumReset" id="help-dialog-historyNavigation"></tbody>
            <thead class="vimiumReset">
            <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Manipulating tabs</td></tr>
            </thead>
            <tbody class="vimiumReset" id="help-dialog-tabManipulation"></tbody>
            <thead class="vimiumReset">
            <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Miscellaneous</td></tr>
            </thead>
            <tbody class="vimiumReset" id="help-dialog-misc"></tbody>
          </table>
        </div>

        <div>
          <table>
            <tr>
              <td class="helpDialogBottomLeft">
                <span id="help-dialog-tip"></span>
              </td>
              <td class="helpDialogBottomRight">
                <a href="#" id="toggleAdvancedCommands">Show advanced commands</a>
              </td>
            </tr>
          </table>
        </div>

        <br clear="both"/>
        <div class="vimiumReset vimiumDivider"></div>

        <div id="vimiumHelpDialogFooter" class="vimiumReset">
          <div class="vimiumReset vimiumColumn">
            Enjoying Vimium?
            <a class="vimiumHelDialogLink" target="_blank"
              href="https://chrome.google.com/webstore/detail/vimium/dbepggeogbaibhgnhhndojpepiihcmeb/reviews">Leave us
                  feedback</a>.<br/>
            Found a bug? <a class="vimiumHelDialogLink" target="_blank" href="http://github.com/philc/vimium/issues">Report it here</a>.
          </div>
          <div class="vimiumReset vimiumColumn" style="text-align:right">
            <span class="vimiumReset">Version <span id="help-dialog-version"></span></span><br/>
            <a href="https://github.com/philc/vimium#release-notes" target="_blank" class="vimiumHelDialogLink">What's new?</a>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>