Doug Kearns
866940886d
Set the href of links in the output of :jumps to the actual URL.
...
template.highlightURL should probably have the same change applied but
I'm not sure of the intent there.
2009-03-03 00:57:04 +11:00
Doug Kearns
614ab6082c
Fix ;t and ;b extended hint modes in the MOW.
2009-03-03 00:50:11 +11:00
Doug Kearns
226e7e6add
Remove a trailing comma from an object literal.
2009-03-01 14:15:26 +11:00
Doug Kearns
f82b03f796
Fix escaped path separator in messages on Windows.
2009-03-01 02:49:18 +11:00
Doug Kearns
60791f64af
Ignore case in :sidebar and :dialog completion.
...
Also fixes these to report the original arg in error messages again.
2009-02-24 15:22:08 +11:00
Ted Pavlic
e318da7073
Made <S-l> and <S-L> look the same to events.js
2009-02-23 10:30:07 -05:00
Daniel Bainton
530670f1a0
case-insensitivity for :sidebar and :dialog
2009-02-23 08:18:03 +02:00
anekos
e459c7c867
Escaping the error.
...
A error occurs if the element has been removed when "elem.selectionStart" is executed.
e.g.
Press "gi<ESC>" on
<input type="text" onfocus="this.parentNode.removeChild(this)" />
2009-02-23 04:55:51 +09:00
Doug Kearns
22200fc282
Remove some duplication from buffer.followDocumentRelationship.
2009-02-19 23:41:32 +11:00
Doug Kearns
7b9dfd2070
Whitespace fix.
2009-02-19 12:13:58 +11:00
anekos
4a475bb234
Fix for f09dc06283bef36e99e315b57acd16879c036410
2009-02-18 21:20:43 +09:00
anekos
60509096b3
Changed the behavior when commandline.input was canceled.
...
When commandline.input is canceled, should not do callback to act like Vim,
2009-02-18 17:45:56 +09:00
anekos
d3d8e21fa9
Remove empty comment
...
eb9211b894f384c7a6fda21fd0219378c6e8643f
2009-02-18 00:17:17 +09:00
anekos
f0ff9bf2a1
Fix: set! foo="multibyte string" was broken.
2009-02-18 00:11:16 +09:00
Doug Kearns
71a0f56db4
Fix ]] when the relationship is specified with rel/rev ( #162 ).
2009-02-17 01:49:26 +11:00
Doug Kearns
7469b1965d
Fix the liberator.version comment so it's ignored by the Makefile.
2009-02-15 15:44:09 +11:00
anekos
49ec231eda
Fix typo in evalExpression@liberator.js.
...
Thanks snaka72.
2009-02-12 13:50:10 +09:00
Kris Maglione
c9c708f636
Fix some bugs, generally.
2009-02-09 16:18:24 -05:00
janus_wel
688ea844cc
Allow setting empty value to some stringlist options
...
* eventignore
* activate
* newtab
* suggestengines
* wildoptions
Signed-off-by: Kris Maglione <maglione.k@gmail.com >
2009-02-05 10:12:54 -05:00
Kris Maglione
d99be763ec
Merge branch 'master' of kmaglione@git.vimperator.org:/git/vimperator/liberator
2009-02-05 10:09:07 -05:00
Martin Stubenschrott
5f5c437ddf
Fixed muttator for recent TBs, minimum requirements are 3.0b2pre now
2009-02-04 14:51:29 +01:00
Martin Stubenschrott
125f3057e9
fixed hintmatching with wordstartswith, thanks Daniel
2009-02-04 00:32:36 +01:00
anekos
e7c57052fa
Fix: commands.parseArgs raises "Invalid option: .." Error.
...
When command(:foo) has NOARG option(-bar), ":foo -bar<CR>" raises the error.
2009-02-03 20:08:00 +09:00
Martin Stubenschrott
c125a9dd66
updated TODO (:ha! seems broken)
2009-02-02 00:18:04 +01:00
Martin Stubenschrott
f3971d13b5
Fix resetting completions (hopefully)
2009-02-01 23:41:00 +01:00
Martin Stubenschrott
4de7cc8db8
* Fixed strange completion height bug. One less blocker to 2.0beta1.
...
* Doug: Might ui.js:701: elements[elements.length - 1].scrollIntoView(true);
be the problem of your very slow MOW for multiple items? I just
noticed that :echo liberator takes 0.25sec , but :echo liberator
when the MOW already displas :echo window takes 0.47 sec
2009-01-31 11:59:38 +01:00
Kris Maglione
379e44a69b
Sort buffer completions numerically.
2009-01-30 14:59:14 -05:00
Kris Maglione
70022ff0af
Stricter number option parsing (and comment out some dump statements)
2009-01-28 09:15:26 -05:00
Kris Maglione
a29e5246d1
Fix gF for URIs with fragment identifiers
2009-01-24 01:13:23 -05:00
Kris Maglione
dc0bf00e0a
Formatting
2009-01-24 00:47:54 -05:00
Kris Maglione
3487b8d0d9
Last commit
2009-01-24 00:46:03 -05:00
Kris Maglione
3a4da78529
Revert "In delmarks, change let variable name to prevent namespace-related error (bug #126 )."
...
This reverts commit f6eb37e82c0419cdc62c1a781b64d30148024a58.
2009-01-24 00:45:01 -05:00
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
Ted Pavlic
ac603ad687
Small fix to last commit. Prevents gobbling all <C-*> on Mac.
2009-01-23 10:47:26 -05:00
Ted Pavlic
4884f5defc
Fixes <C-[>, <C-\\>, <C-]>, <C-^>, and <C-_> on Mac OS/X.
...
On Mac OS/X, control characters 27 through 31 pass charCode=CONTROL_CHAR
rather than charCode=KEY. For example, when a user wants <C-[>
Vimperator sees <C-Esc>. Most people view this as a bug in FirefOS/X.
The following patch tests for has("MacUnix"), then checks to see if the
control character is within this buggy range. If so, it shifts the
charCode up by 64 (there is a special case for Escape where the CTRL key
is relaxed and key is set to "Esc").
For more information, see:
[*] Vimp FAQ: http://vimperator.org/trac/wiki/Vimperator/FAQ#WhydoesntC-workforEscMacOSX
[*] Referenced mailing list msg: http://www.mozdev.org/pipermail/vimperator/2008-May/001548.html
[*] Mozilla bug 416227: event.charCode in keypress handler has unexpected values on Mac for Ctrl with chars in "[ ] _ \"
https://bugzilla.mozilla.org/show_bug.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&id=416227
[*] Mozilla bug 432951: Ctrl+'foo' doesn't seem same charCode as Meta+'foo' on Cocoa
https://bugzilla.mozilla.org/show_bug.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&id=432951
2009-01-23 10:05:14 -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
050cd4b2e4
Make [count]<C-n> behave as expected.
2009-01-21 03:37:40 -05:00
Ted Pavlic
8b95e72115
Minor copyedits.
2009-01-20 11:54:46 -05:00
Ted Pavlic
1f93e422e7
Fixed (:abbr """a b) so it stopped throwing E114 (like Vim).
2009-01-20 11:28:32 -05:00
Ted Pavlic
9993f0594e
Make abbreviations expand on quotes as well as space.
...
Also added rough documentation for insert mode.
TODO: Abbreviations should also expand on <CR> and <Tab>, but right now
adding <CR> to the mappings.add() has no effect, and adding <Tab> to the
mappings.add() breaks tab completion.
TODO: Rather than listing non-keyword characters in two places (ui.js
and mappings.js), they should be specified in one location (that could
someday be trumped by an 'iskeyword' option).
2009-01-20 10:45:48 -05:00
anekos
3abd88276e
Fix OPTION_NOARG's completion.
...
If the option is OPTION_NOARG, args[-opt] becomes null.
2009-01-20 23:40:07 +09:00
Martin Stubenschrott
08dbdcb7ba
Fixed external editor on Linux, maybe broke it for some other system?
2009-01-19 20:28:49 +01: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
7f305e8ba4
Allow extra args to be bassed to completion.addUrlCompleter
2009-01-19 00:39:35 -05:00
Kris Maglione
207913e49a
s/Itarator/Iterator/
2009-01-18 17:24:51 -05:00
anekos
d822a0b363
Merge branch 'master' into fixTailQuote
2009-01-18 03:14:50 +09:00
anekos
a381a3947a
Fix let-command's extraInfo
...
'let g:foo="c:\"' raise a error.
-> E114: Missing quote: "
2009-01-18 03:07:47 +09:00
Ted Pavlic
45f6153de4
More command-line edits (now elsewhere in the source).
2009-01-17 12:55:56 -05:00
Kris Maglione
74256da392
Die on unclosed quote
2009-01-17 02:51:18 -05:00
Doug Kearns
624516108c
Fix comment typo.
2009-01-17 17:31:25 +11:00