mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 17:27:59 +01:00
Merge default.
--HG-- branch : key-processing
This commit is contained in:
@@ -425,7 +425,7 @@ var Buffer = Module("buffer", {
|
|||||||
/**
|
/**
|
||||||
* @property {string} The current top-level document's URL.
|
* @property {string} The current top-level document's URL.
|
||||||
*/
|
*/
|
||||||
get URL() update(content.location.href, util.newURI(content.location.href)),
|
get URL() update(new String(content.location.href), util.newURI(content.location.href)),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @property {number} The buffer's height in pixels.
|
* @property {number} The buffer's height in pixels.
|
||||||
|
|||||||
@@ -1213,8 +1213,9 @@ var Commands = Module("commands", {
|
|||||||
return [len - str.length, arg, quote];
|
return [len - str.length, arg, quote];
|
||||||
},
|
},
|
||||||
|
|
||||||
quote: function quote(str) Commands.quoteArg[/[\s"'\\]|^$|^-/.test(str)
|
quote: function quote(str) Commands.quoteArg[
|
||||||
? (/[\b\f\n\r\t]/.test(str) ? '"' : "'")
|
/[\b\f\n\r\t]/.test(str) ? '"' :
|
||||||
|
/[\s"'\\]|^$|^-/.test(str) ? "'"
|
||||||
: ""](str)
|
: ""](str)
|
||||||
}, {
|
}, {
|
||||||
completion: function () {
|
completion: function () {
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#"
|
xmlns:em="http://www.mozilla.org/2004/em-rdf#"
|
||||||
xmlns:songbird="http://www.songbirdnest.com/2007/addon-metadata-rdf#">
|
xmlns:songbird="http://www.songbirdnest.com/2007/addon-metadata-rdf#">
|
||||||
<Description about="urn:mozilla:install-manifest">
|
<Description about="urn:mozilla:install-manifest"
|
||||||
<em:id>melodactyl@dactyl.googlecode.com</em:id>
|
em:id="melodactyl@dactyl.googlecode.com"
|
||||||
<em:type>2</em:type>
|
em:type="2"
|
||||||
<em:name>Melodactyl</em:name>
|
em:name="Melodactyl"
|
||||||
<em:version>0.1a1pre</em:version>
|
em:version="0.1a1pre"
|
||||||
<em:description>Songbird for Vim and CMus junkies.</em:description>
|
em:description="Songbird for Vim and CMus junkies."
|
||||||
<em:creator>Prathyush Thota</em:creator>
|
em:creator="Prathyush Thota"
|
||||||
<em:homepageURL>http://dactyl.sourceforge.net/</em:homepageURL>
|
em:homepageURL="http://dactyl.sourceforge.net/"
|
||||||
<em:iconURL>chrome://melodactyl/skin/icon.png</em:iconURL>
|
em:iconURL="chrome://melodactyl/skin/icon.png"
|
||||||
<em:optionsURL>chrome://dactyl/content/preferences.xul</em:optionsURL>
|
em:optionsURL="chrome://dactyl/content/preferences.xul">
|
||||||
<em:targetApplication>
|
<em:targetApplication>
|
||||||
<Description>
|
<Description>
|
||||||
<em:id>songbird@songbirdnest.com</em:id>
|
<em:id>songbird@songbirdnest.com</em:id>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||||
<Description about="urn:mozilla:install-manifest"
|
<Description about="urn:mozilla:install-manifest"
|
||||||
em:id="pentadactyl@dactyl.googlecode.com"
|
em:id="pentadactyl@dactyl.googlecode.com"
|
||||||
|
em:type="2"
|
||||||
em:name="Pentadactyl"
|
em:name="Pentadactyl"
|
||||||
em:version="1.0b6pre"
|
em:version="1.0b6pre"
|
||||||
em:description="Firefox for Vim and Links addicts"
|
em:description="Firefox for Vim and Links addicts"
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||||
<Description about="urn:mozilla:install-manifest">
|
<Description about="urn:mozilla:install-manifest"
|
||||||
<em:id>teledactyl@dactyl.googlecode.com</em:id>
|
em:id="teledactyl@dactyl.googlecode.com"
|
||||||
<em:name>Teledactyl</em:name>
|
em:type="2"
|
||||||
<em:version>0.5b1pre</em:version>
|
em:name="Teledactyl"
|
||||||
<em:description>Thunderbird for Mutt and Vim addicts</em:description>
|
em:version="0.5b1pre"
|
||||||
<em:creator>Kris Maglione</em:creator>
|
em:description="Thunderbird for Mutt and Vim addicts"
|
||||||
<em:homepageURL>http://dactyl.sf.net/Teledactyl</em:homepageURL>
|
em:creator="Kris Maglione"
|
||||||
<em:iconURL>chrome://teledactyl/skin/icon.png</em:iconURL>
|
em:homepageURL="http://dactyl.sf.net/Teledactyl"
|
||||||
<em:optionsURL>chrome://dactyl/content/preferences.xul</em:optionsURL>
|
em:iconURL="chrome://teledactyl/skin/icon.png"
|
||||||
|
em:optionsURL="chrome://dactyl/content/preferences.xul">
|
||||||
<em:targetApplication>
|
<em:targetApplication>
|
||||||
<Description>
|
<Description>
|
||||||
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
|
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
|
||||||
|
|||||||
Reference in New Issue
Block a user