1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 22:22:27 +01:00

fix the :help command

This commit is contained in:
Viktor Kojouharov
2007-04-23 18:23:16 +00:00
parent 1ae53ecbf8
commit becfb9ca3f
2 changed files with 2 additions and 2 deletions

View File

@@ -164,7 +164,7 @@ var g_commands = [/*{{{*/
["help", "h"], ["help", "h"],
["h[elp] {subject}"], ["h[elp] {subject}"],
"Open the help window in the current tab. It can jump to the specified {subject} with <code class=command>:help {subject}</code>.", "Open the help window in the current tab. It can jump to the specified {subject} with <code class=command>:help {subject}</code>.",
null,//help, help,
function(filter) { return get_help_completions(filter); } function(filter) { return get_help_completions(filter); }
], ],
[ [

View File

@@ -36,12 +36,12 @@ the terms of any one of the MPL, the GPL or the LGPL.
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<!-- you may not believe it, but order is really important here --> <!-- you may not believe it, but order is really important here -->
<script type="application/x-javascript" src="help.js"/>
<script type="application/x-javascript" src="vimperator.js"/> <script type="application/x-javascript" src="vimperator.js"/>
<script type="application/x-javascript" src="commands.js"/> <script type="application/x-javascript" src="commands.js"/>
<script type="application/x-javascript" src="settings.js"/> <script type="application/x-javascript" src="settings.js"/>
<script type="application/x-javascript" src="completion.js"/> <script type="application/x-javascript" src="completion.js"/>
<script type="application/x-javascript" src="bookmarks.js"/> <script type="application/x-javascript" src="bookmarks.js"/>
<script type="application/x-javascript" src="help.js"/>
<script type="application/x-javascript" src="hints.js"/> <script type="application/x-javascript" src="hints.js"/>
<script type="application/x-javascript" src="file.js"/> <script type="application/x-javascript" src="file.js"/>