mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 16:47:59 +01:00
now we have a new build Makefile
also added file.js which is responsible for file writing/loading in future
This commit is contained in:
@@ -391,7 +391,7 @@ var g_mappings = [/*{{{*/
|
||||
[
|
||||
["B"],
|
||||
"Toggle buffer list",
|
||||
"Open the preview window with all currently opened tabs",
|
||||
"Toggle the preview window with all currently opened tabs.",
|
||||
buffer_preview_toggle,
|
||||
],
|
||||
[
|
||||
@@ -1601,7 +1601,22 @@ function set(args, special)
|
||||
|
||||
function source(filename)
|
||||
{
|
||||
echoerr("Soucing not yet implemented");
|
||||
|
||||
|
||||
|
||||
//echoerr("Soucing not yet implemented");
|
||||
var fd = fopen(filename, "<");
|
||||
var s = fd.read();
|
||||
fd.close();
|
||||
|
||||
try
|
||||
{
|
||||
eval(s);
|
||||
}
|
||||
catch(e)
|
||||
{
|
||||
alert(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1806,7 +1821,6 @@ table.settings th {\
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// list all installed themes and extensions
|
||||
|
||||
Reference in New Issue
Block a user