mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 03:07:58 +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.
|
||||
*/
|
||||
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.
|
||||
|
||||
@@ -1213,9 +1213,10 @@ var Commands = Module("commands", {
|
||||
return [len - str.length, arg, quote];
|
||||
},
|
||||
|
||||
quote: function quote(str) Commands.quoteArg[/[\s"'\\]|^$|^-/.test(str)
|
||||
? (/[\b\f\n\r\t]/.test(str) ? '"' : "'")
|
||||
: ""](str)
|
||||
quote: function quote(str) Commands.quoteArg[
|
||||
/[\b\f\n\r\t]/.test(str) ? '"' :
|
||||
/[\s"'\\]|^$|^-/.test(str) ? "'"
|
||||
: ""](str)
|
||||
}, {
|
||||
completion: function () {
|
||||
completion.command = function command(context) {
|
||||
|
||||
@@ -2,16 +2,16 @@
|
||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#"
|
||||
xmlns:songbird="http://www.songbirdnest.com/2007/addon-metadata-rdf#">
|
||||
<Description about="urn:mozilla:install-manifest">
|
||||
<em:id>melodactyl@dactyl.googlecode.com</em:id>
|
||||
<em:type>2</em:type>
|
||||
<em:name>Melodactyl</em:name>
|
||||
<em:version>0.1a1pre</em:version>
|
||||
<em:description>Songbird for Vim and CMus junkies.</em:description>
|
||||
<em:creator>Prathyush Thota</em:creator>
|
||||
<em:homepageURL>http://dactyl.sourceforge.net/</em:homepageURL>
|
||||
<em:iconURL>chrome://melodactyl/skin/icon.png</em:iconURL>
|
||||
<em:optionsURL>chrome://dactyl/content/preferences.xul</em:optionsURL>
|
||||
<Description about="urn:mozilla:install-manifest"
|
||||
em:id="melodactyl@dactyl.googlecode.com"
|
||||
em:type="2"
|
||||
em:name="Melodactyl"
|
||||
em:version="0.1a1pre"
|
||||
em:description="Songbird for Vim and CMus junkies."
|
||||
em:creator="Prathyush Thota"
|
||||
em:homepageURL="http://dactyl.sourceforge.net/"
|
||||
em:iconURL="chrome://melodactyl/skin/icon.png"
|
||||
em:optionsURL="chrome://dactyl/content/preferences.xul">
|
||||
<em:targetApplication>
|
||||
<Description>
|
||||
<em:id>songbird@songbirdnest.com</em:id>
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||
<Description about="urn:mozilla:install-manifest"
|
||||
em:id="pentadactyl@dactyl.googlecode.com"
|
||||
em:type="2"
|
||||
em:name="Pentadactyl"
|
||||
em:version="1.0b6pre"
|
||||
em:description="Firefox for Vim and Links addicts"
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?xml version="1.0"?>
|
||||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
|
||||
<Description about="urn:mozilla:install-manifest">
|
||||
<em:id>teledactyl@dactyl.googlecode.com</em:id>
|
||||
<em:name>Teledactyl</em:name>
|
||||
<em:version>0.5b1pre</em:version>
|
||||
<em:description>Thunderbird for Mutt and Vim addicts</em:description>
|
||||
<em:creator>Kris Maglione</em:creator>
|
||||
<em:homepageURL>http://dactyl.sf.net/Teledactyl</em:homepageURL>
|
||||
<em:iconURL>chrome://teledactyl/skin/icon.png</em:iconURL>
|
||||
<em:optionsURL>chrome://dactyl/content/preferences.xul</em:optionsURL>
|
||||
<Description about="urn:mozilla:install-manifest"
|
||||
em:id="teledactyl@dactyl.googlecode.com"
|
||||
em:type="2"
|
||||
em:name="Teledactyl"
|
||||
em:version="0.5b1pre"
|
||||
em:description="Thunderbird for Mutt and Vim addicts"
|
||||
em:creator="Kris Maglione"
|
||||
em:homepageURL="http://dactyl.sf.net/Teledactyl"
|
||||
em:iconURL="chrome://teledactyl/skin/icon.png"
|
||||
em:optionsURL="chrome://dactyl/content/preferences.xul">
|
||||
<em:targetApplication>
|
||||
<Description>
|
||||
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
|
||||
|
||||
Reference in New Issue
Block a user