mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-08 12:45:48 +01:00
Merge.
This commit is contained in:
@@ -613,8 +613,8 @@ const Liberator = Module("liberator", {
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
help: function (topic, unchunked) {
|
help: function (topic, unchunked) {
|
||||||
if (!topic && !unchunked) {
|
if (!topic) {
|
||||||
let helpFile = options["helpfile"];
|
let helpFile = unchunked ? "all" : options["helpfile"];
|
||||||
if (helpFile in services.get("liberator:").FILE_MAP)
|
if (helpFile in services.get("liberator:").FILE_MAP)
|
||||||
liberator.open("liberator://help/" + helpFile, { from: "help" });
|
liberator.open("liberator://help/" + helpFile, { from: "help" });
|
||||||
else
|
else
|
||||||
@@ -1691,10 +1691,9 @@ const Liberator = Module("liberator", {
|
|||||||
completion.help = function help(context, unchunked) {
|
completion.help = function help(context, unchunked) {
|
||||||
context.title = ["Help"];
|
context.title = ["Help"];
|
||||||
context.anchored = false;
|
context.anchored = false;
|
||||||
context.key = unchunked;
|
|
||||||
context.completions = services.get("liberator:").HELP_TAGS;
|
context.completions = services.get("liberator:").HELP_TAGS;
|
||||||
if (unchunked)
|
if (unchunked)
|
||||||
context.keys = { text: "text", description: function () "all" };
|
context.keys = { text: 0, description: function () "all" };
|
||||||
};
|
};
|
||||||
|
|
||||||
completion.menuItem = function menuItem(context) {
|
completion.menuItem = function menuItem(context) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#### configuration
|
#### configuration
|
||||||
|
|
||||||
VERSION = 1.0pre
|
VERSION = 2.3a1pre
|
||||||
NAME = vimperator
|
NAME = vimperator
|
||||||
|
|
||||||
include ../common/Makefile
|
include ../common/Makefile
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
2009-XX-XX:
|
2009-XX-XX:
|
||||||
|
* version 2.3a1pre
|
||||||
* add basic plugin authorship documentation
|
* add basic plugin authorship documentation
|
||||||
* plugins may now provide full-fleged ':help' documentation
|
* plugins may now provide full-fleged ':help' documentation
|
||||||
* asciidoc is no longer required to build Vimperator
|
* asciidoc is no longer required to build Vimperator
|
||||||
* the help system is newly modularized
|
* the help system is newly modularized
|
||||||
|
|
||||||
2009-XX-XX:
|
2009-10-28:
|
||||||
* version 2.2a1pre
|
* version 2.2
|
||||||
* IMPORTANT: Vimperator's licence has changed from the MPL/GPL/LGPL
|
* IMPORTANT: Vimperator's licence has changed from the MPL/GPL/LGPL
|
||||||
tri-license to the MIT license.
|
tri-license to the MIT license.
|
||||||
* IMPORTANT: Map.flags has been replaced with individual properties.
|
* IMPORTANT: Map.flags has been replaced with individual properties.
|
||||||
|
|||||||
Reference in New Issue
Block a user