1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-25 10:52:27 +01:00
Commit Graph

1421 Commits

Author SHA1 Message Date
Zheng Chaoping
195ea78efb Use Object.defineProperty instead of __defineGetter__/__defineSetter__
In Firefox 48+, the __defineSetter__/__defineSetter__ is deprecated,
so use Object.defineProperty instead.
2016-05-04 22:53:49 +08:00
dkearns
82c8fac9ae Merge pull request #151 from prmtl/fix/re-as-string
Fix 'split' method when using String not RegExp
2016-04-29 15:03:02 +10:00
Sebastian Kalinowski
06ab616da2 Fix error with assigning to String in hints mode
Fixes #154
2016-04-28 21:00:02 +02:00
Sebastian Kalinowski
0411000662 Fix 'split' method when using String not RegExp
If regular expression for splitting is provided as String
instead of RegExp, it breaks split method since String
doesn't have desired properties.

Fixes #138
2016-04-26 22:36:22 +02:00
Doug Kearns
0b835e187b Fix sanitizing domain data when called from FF. 2016-02-13 03:20:42 +11:00
Doug Kearns
a85c6a35c2 Remove remaining comprehensions (Part 2). 2016-01-30 00:26:44 +11:00
Doug Kearns
c9c9cea6d0 Remove remaining comprehensions. 2016-01-29 23:26:05 +11:00
Doug Kearns
6d9999fa71 Fix :help completion.
See 13a8b46.
2016-01-16 00:38:15 +11:00
Doug Kearns
8835121bcf Fix :command listings. 2016-01-13 10:41:12 +11:00
Doug Kearns
94b4be6b6f Fix charset completion. 2016-01-12 23:04:26 +11:00
Doug Kearns
e36f8ed7cd Fix JAR file completion. 2016-01-11 21:32:13 +11:00
Doug Kearns
13a8b46093 Fix :cookies action completion.
I'm assuming that the change to the completion module, in 916ea41, no
longer handling bare objects is deliberate and this appears consistent
with other cases.
2016-01-11 02:39:30 +11:00
Doug Kearns
4ee27ef728 Fix command related JavaScript completers. 2016-01-10 00:38:40 +11:00
Kris Maglione
31c6df0257 Update curl plugin. 2015-12-30 15:56:42 -08:00
Doug Kearns
e16a993e99 Another quick fix for DOM.Event.
Not really fixed in 5930524.
2015-12-24 11:56:38 +11:00
Doug Kearns
1d2bf51c1a Use a Gecko version check for determing URL in :pageinfo s. 2015-12-24 03:54:58 +11:00
dkearns
4f05f934fd Merge pull request #113 from woutershep/pageinfo-fix
Fix pageinfo by handling _uri too.
2015-12-24 03:45:12 +11:00
Doug Kearns
5930524f85 Fix DOM.event.
Closes #116.
2015-12-24 03:29:50 +11:00
Doug Kearns
5ad7574353 Fix heredoc processing.
Closes #114.

Just reverting the relevant erroneous commit as it's consistent with the
explicit use of var's hoisting behaviour elsewhere in the codebase and
because I don't personally find any of the other options more readable.
2015-12-22 00:31:39 +11:00
Doug Kearns
42ac708456 Add a cheap Array#includes polyfill. 2015-12-22 00:03:50 +11:00
Kris Maglione
7aabc153f5 Fix some startup bottlenecks. 2015-12-21 00:52:38 -08:00
Wouter van Kesteren
61cec10a61 Fix pageinfo by handling _uri too.
':pageinfo s' is broken on 43.0 thanks to commit:

"Bug 1175702 - Implement mixed content states in the control center"
4194314d45
2015-12-21 04:49:15 +01:00
Kris Maglione
174f4ec636 Ugh. 2015-12-20 19:10:52 -08:00
Kris Maglione
916ea412a5 Get rid of most remaining comprehensions. 2015-12-20 15:53:43 -08:00
Kris Maglione
0aba8fb619 Fix some issues with loading from an XPI. 2015-12-20 14:07:52 -08:00
Doug Kearns
cb42274a46 Fall back to String#contains when #includes is not supported.
Changeover was FF40.
2015-12-21 02:30:55 +11:00
Doug Kearns
a19a8653c1 Fix beta string matching in :help versions. 2015-12-21 02:24:07 +11:00
Doug Kearns
f85f3df612 Fix Object.{entries,values} polyfills. 2015-12-20 21:36:47 +11:00
Kris Maglione
27cdeb1885 ES6-ify some things. Still a long way to go... 2015-12-20 02:02:54 -08:00
Kris Maglione
65725c9516 Fix some CPOW issues. Everything is still terrible, though. 2015-12-19 23:02:57 -08:00
Kris Maglione
bc9eb79fb3 Support Firefox 45 (without e10s). 2015-12-19 20:09:04 -08:00
Doug Kearns
e3c3748511 Fix util.regexp.iterate for FF43. 2015-12-06 21:32:37 +11:00
Doug Kearns
4356313a09 Fix :cookies breakage.
Closes #102.  See https://bugzil.la/1165263
2015-11-30 02:54:43 +11:00
Che-Huai Lin
6882834086 Fix :downloads error 2015-11-18 22:34:58 +08:00
Doug Kearns
fb13552421 Remove unreachable code from buffer.win.
Presumably this was intended as an alternate implementation but appears
never to have been used.
2015-10-20 21:49:59 +11:00
Doug Kearns
f70203bc9c Fix ]] error.
Closes #72.
2015-07-27 23:42:47 +10:00
Doug Kearns
77d59cdfd1 Replace expression closures (methods).
Expression closures are to be axed. See https://bugzil.la/1083458.
2015-07-23 01:55:32 +10:00
Doug Kearns
c035aa936b Normalise command/option/mapping config object param name.
s/extraInfo/extra/
2015-07-23 01:19:57 +10:00
Doug Kearns
779752d776 Replace expression closures (command/option/mapping definitions).
Expression closures are to be axed. See https://bugzil.la/1083458.
2015-07-23 01:15:41 +10:00
Doug Kearns
85eede1ee2 Add util.iterFrames. 2015-07-06 23:55:51 +10:00
Doug Kearns
f4790729da Make iter() treat Structs as it does Arrays. 2015-06-29 20:43:33 +10:00
Doug Kearns
03322645a9 Fix Ary#toString et al. 2015-06-25 18:51:26 +10:00
Doug Kearns
befd0d8658 Remove crufty param from buffer.scrollByScrollSize. 2015-06-24 00:29:25 +10:00
Doug Kearns
723ab5c052 Fix iter.zip.
This doesn't appear to be called anywhere but is presumably available
for symmetry so the implementation roughly matches the slightly quirky
Ary#zip.  These might be better generalised at some point.
2015-06-24 00:25:01 +10:00
Doug Kearns
5eece742e1 Fix Bookmark* autocommand events.
Struct now only offers values during iteration like Array.
2015-06-24 00:15:42 +10:00
Doug Kearns
ccfc69bc01 Fix :set <no-arg>.
Args needs a working length property. Reverts change in 7ee5792.

Despite grave warnings of impending performance doom there seems to be
no penalty for using __proto__ here.
2015-06-23 23:57:26 +10:00
Doug Kearns
35176d50ac Fix bare assignment with object destructuring in FF41. 2015-06-23 14:37:48 +10:00
Doug Kearns
d3cb216478 Make isinstance() and template.highlight Symbol aware. 2015-06-18 18:20:48 +10:00
Doug Kearns
cd7a8eeda9 Make use of callable() in update(). 2015-06-18 17:38:43 +10:00
Doug Kearns
422fc6b9b7 Fix bookmark icon loading. 2015-06-17 13:21:43 +10:00