1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 21:28:00 +01:00
Commit Graph

263 Commits

Author SHA1 Message Date
Ted Pavlic
d99720ce10 In delmarks, change let variable name to prevent namespace-related error (bug #126).
See http://vimperator.org/trac/ticket/126

Using...

    function (args)
    {
        let args = args.string;
    ...

was causing Firefox to complain that args was undefined. Changing the
"let" to "var" or changing the names of the variables (e.g., changing
"function (args)" to "function (arg)") fixes the problem. IMO, this
appears to be a bug in Firefox.

The short fix would be to change the formal argument from "args" to
"arg." However, that would make delmarks' implementation different from
all the rest. So changed "let args" to "let argstring" and adjusted
throughout the function.
2009-01-23 16:31:55 -05:00
Kris Maglione
eb88d7ea0b Sorry, stashed changes including:
Change util.range to accept an increment as the third argument.
    Sanitize Makefile.doc
2009-01-21 03:41:43 -05:00
Kris Maglione
347938bfca Merge branch 'master' into vimperator-2.1
Conflicts:
	vimperator/NEWS
2009-01-21 03:40:04 -05:00
Martin Stubenschrott
30db94b3db Fixed zoom level messages (not opening MOW anymore on subsequent zi's) 2009-01-19 18:42:42 +01:00
Kris Maglione
53f33e0561 Allow ` as local mark 2009-01-17 23:43:29 -05:00
Doug Kearns
9959a9322c Merge branch 'master' into vimperator-2.1 2009-01-15 22:28:23 +11:00
Doug Kearns
3875c1dd58 Add a help section about preferences set by Vimperator at startup. 2009-01-15 22:21:18 +11:00
Kris Maglione
fbcaeaded1 Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
	vimperator/locale/en-US/starting.txt
2009-01-15 03:14:08 -05:00
Kris Maglione
0b682ef42b Fix buffer.getCurrentWord when the selection is collapsed and the word has punctuation. 2009-01-14 23:26:40 -05:00
Ted Pavlic
d29013a2fd Three small changes (copyright, template.js copyright, and tildetidy target)
a.) Cleaned up copyright language to match conventions.
(I used the memoir document class documentation as a reference, but
 these conventions are common throughout publishing)

   * The (c) symbol has no legal meaning. Only the word "Copyright" and
     an encircled lowercase c are appropriate. So the word "Copyright"
     was placed before each (c).

   * Each (C) was changed to (c).

   * Kris uses the correct symbols in copyright notices, but those
     symbols can be problematic in terminal-mode editors. Added the word
     "Copyright" as well.

   * Replaced colons/spaces after years with the word "by."

b.) Added a copyright notice to common/content/template.js. It was
    missing one entirely. Please correct if it doesn't need one or if the
    copyright isn't held by Martin.

c.) Also added a "tildetidy" target to Makefile common that includes a
    version of the find line from the existing "clean" target (however,
    this version uses "rm -fv" instead of "rm -f").
2009-01-12 09:14:54 -05:00
Ted Pavlic
147cdab5d2 Update copyrights for 2009. 2009-01-11 00:47:56 -05:00
Doug Kearns
5dbcd6f7e0 Add some rough source documentation for IO. 2009-01-11 01:12:30 +11:00
Kris Maglione
9618547d47 Fix tab-completion again 2009-01-09 14:02:36 -05:00
Kris Maglione
c4f5d4f84d Fix some inline/help docs. 2009-01-08 20:56:26 -05:00
Kris Maglione
f901cb1f42 Fix last commit 2009-01-08 14:14:57 -05:00
Ted Pavlic
bfe47dff89 Fixed browser.followLink so that NEW_TAB semantics are invariant of prefs. 2009-01-08 12:01:42 -05:00
Kris Maglione
0aeee25e65 Add standard 'mark' completer. Fix x/y transposition in :delm completion 2009-01-07 17:38:57 -05:00
Ted Pavlic
7bb208020c Added expected completion for :delmarks (as discussed on IRC, because expected, it's a bugfix, not a feature) 2009-01-07 16:11:27 -05:00
Kris Maglione
4f4d6ddd9d Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
	common/content/style.js
2009-01-07 00:26:37 -05:00
Doug Kearns
ddce42858c s/retVal/ret/ in buffer.followDocumentRelationship. 2009-01-07 14:44:37 +11:00
Doug Kearns
49e0c091c1 s/stylesheet/style sheet/g in documentation. 2009-01-05 21:10:57 +11:00
Doug Kearns
172900fff2 Declare a variable in "gi" action. 2009-01-03 21:59:44 +11:00
Kris Maglione
8af1dfb84f Fix liberator.open/browser.tabs.loadInBackground bug 2009-01-02 19:05:28 -05:00
Doug Kearns
e91fbcd754 Add some source documentation for AutoCommands.
Also normalise the use of /* */ and // comments.
2009-01-02 00:56:58 +11:00
Doug Kearns
0be4723b91 Fix HTMLDocument guard clause in buffer.shiftFrameFocus. 2009-01-01 22:02:00 +11:00
Doug Kearns
cb5fca695f Rename the misspelled util.interruptableRange to util.interruptibleRange. 2009-01-01 22:01:58 +11:00
Doug Kearns
eeca611435 Add some more rough source documentation. 2009-01-01 22:01:56 +11:00
Doug Kearns
f878307b34 Fix part of #110.
Fix #110 (;b and ;t don't respond to 'activate'. Behavior spec'd in
:help is unclear).

I've fixed the inverted ;b/;t behaviour (the bug), closed the ticket,
and added 'activate' support as a TODO.
2008-12-31 13:19:48 +11:00
anekos
5b0d6674db s/let/var/
type is used at function block's tail.
2008-12-30 21:01:23 +09:00
Doug Kearns
d65b57cf2d Prefer " over '. 2008-12-29 23:26:09 +11:00
anekos
6c9cef16f1 more '-quotes fix. 2008-12-29 07:29:59 +09:00
Kris Maglione
dc0d92cc55 s/makeURI/window.makeURI/; s/'/"/ 2008-12-28 15:43:30 -05:00
Kris Maglione
baf1af72e5 Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/io.js
2008-12-24 13:27:00 -05:00
Kris Maglione
89698e3e05 s/service[(".*?")]/services.get(\1)/g; s/service.get(\w+)/'services.create("' + lcfirst($1) + '")'/ge 2008-12-23 15:07:48 -05:00
Doug Kearns
68a28b7e14 Fix return signature of buffer.{followLink,focusElement}. 2008-12-23 22:07:55 +11:00
Kris Maglione
782a28f47a Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/liberator.js
2008-12-21 16:15:16 -05:00
Kris Maglione
872d03808e Add $VIMPERATOR_RUNTIME, $VIMPERATOR_INIT, ~/.vimperator/info/{profile}. 2008-12-20 18:34:14 -05:00
Kris Maglione
f7b3865b99 Merge branch 'master' into vimperator-2.1 2008-12-20 11:04:28 -05:00
Kris Maglione
549ecd561a Fix a thing 2008-12-20 11:04:18 -05:00
Kris Maglione
a0eca3e2aa Document some more crap. 2008-12-19 19:09:07 -05:00
Kris Maglione
59dc131508 Merge branch 'master' into vimperator-2.1
Conflicts:
	common/content/buffer.js
	common/content/style.js
2008-12-19 17:13:44 -05:00
Kris Maglione
480151cc4d Move 'system' arg of Styles methods to arg 0, and add completion functions 2008-12-19 17:11:05 -05:00
Kris Maglione
057d66ce65 Document some more crap. 2008-12-19 15:25:54 -05:00
Doug Kearns
6e9262ef64 document :hardcopy >{filename}...since it was committed 2008-12-19 15:25:12 -05:00
Kris Maglione
74700d3aff Document some more crap. 2008-12-19 13:27:01 -05:00
Doug Kearns
86f14b77cc document :hardcopy >{filename}...since it was committed 2008-12-20 01:12:31 +11:00
Kris Maglione
c094a2dd2b Fix */# 2008-12-18 18:21:01 -05:00
Kris Maglione
c686d65ec2 Merge with master. 2008-12-18 14:03:15 -05:00
Doug Kearns
0841a01e15 access MarkupDocumentViewer via getBrowser() - only FF defines getMarkupDocumentViewer 2008-12-18 21:06:54 +11:00
Kris Maglione
cdcfb68e3b Add '' 2008-12-17 23:16:20 -05:00