janus_wel
00078c14a9
Remove macro [m] from non key sequence
...
Signed-off-by: Ted Pavlic <ted@tedpavlic.com >
2009-02-09 08:36:58 -05:00
janus_wel
bd69b43e89
Add macro [c] to the appropriate descriptions of commands
...
Signed-off-by: Ted Pavlic <ted@tedpavlic.com >
2009-02-09 08:36:58 -05:00
janus_wel
057cbf8cbd
Fix running over quotebox at the description of autocmd
...
Signed-off-by: Ted Pavlic <ted@tedpavlic.com >
2009-02-09 08:36:57 -05:00
janus_wel
0587cbe029
Fix vanishing some descriptions of Quickmarks
...
Signed-off-by: Ted Pavlic <ted@tedpavlic.com >
2009-02-09 08:28:21 -05:00
anekos
d9f1dc4605
Fix typo
2009-02-09 17:42:25 +09: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
Ted Pavlic
946ab07254
Updated main Makefile to support 'make target1 target2'
2009-02-04 22:58:35 -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
Ted Pavlic
8398287449
Removed :pageinfo TODO. Problem was in a plugin.
2009-02-02 09:29:11 -05: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
Daniel Bainton
894a4c52a0
Add a TODO entry for accessing NEWS
2009-02-01 21:00:24 +02: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
Martin Stubenschrott
ce0e5c1879
Updated Donors
2009-01-31 11:37:21 +01:00
Kris Maglione
379e44a69b
Sort buffer completions numerically.
2009-01-30 14:59:14 -05:00
Ted Pavlic
c1c6c659bc
TODO bugs: ":pageinfo" on ":help"; "g<" and "g<C-g>"
...
(*) Fix ":pageinfo" on ":help",
(*) Prevent Vimp from taking "<C-...>" mappings as literal characters
2009-01-28 22:06:26 -05:00
Doug Kearns
6d49a81d7f
Add TODO regarding :messages performance.
2009-01-29 13:09:36 +11:00
Doug Kearns
aa67f0a194
Add TODO regarding Windows paths in messages.
2009-01-29 12:56:51 +11: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
86d1d34a64
Makefile
2009-01-24 01:12:53 -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
9cb000545e
Put |VIMP_INIT| back where it should be in starting.txt
2009-01-23 15:28:53 -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
Doug Kearns
8c466abdcd
Remove the Vimballs as they're generated files.
...
The muttator Vimball was committed unintentionally.
2009-01-23 22:47:32 +11:00
Ted Pavlic
d4c62b4851
Corrections to last commit.
...
* The stdin - wasn't needed. However, an ||true is now used to prevent
Makefile from erroring out (I'm sure there's a better way).
* muttatorrc was spelled muttatororrc; fixed now.
2009-01-22 10:43:22 -05:00
Ted Pavlic
612362149a
Fully-staged previous commit (f4e4ed50986d091461536536a6a085dfcbc91823).
...
* The vimperator.vba was not included although muttator.vba was.
* Adjusted Makefiles so that vim is called with "-" to open stdin (that
was required on my Vim7.2 system; does it break others?)
2009-01-22 10:30:35 -05:00
Doug Kearns
6b8cd0b35b
Add a Vim syntax file for Muttator files and ftdetect files for all.
...
This also adds a quick 'n' dirty build mechanism for creating the
Vimballs. Unfortunately, these aren't particularly amenable to being
created in a batch process. Dr Chip has created a small C program for
this but that would be a silly dependency.
2009-01-22 18:59:23 +11:00
Ted Pavlic
f752a00233
Removed final extra indentation from Makefile status messages.
...
I thought the indentation looked nice and helped when viewing the output
of a "make xpi" from liberator.
Oh, well.
2009-01-21 15:55:49 -05:00
Kris Maglione
0d3ceb8c98
Merge branch 'master' of kmaglione@git.vimperator.org:/git/vimperator/liberator
2009-01-21 15:09:38 -05:00
Kris Maglione
3b6c0a2428
Remove last reference to T2T from Makefile.doc.
2009-01-21 15:09:29 -05:00
Kris Maglione
91c5485c42
Fix LANG setting in Makefile.doc. Remove extra indentation in messages.
2009-01-21 14:53:12 -05:00
Ted Pavlic
24e4a3ac19
Changed .gitignore to catch .stgit-*.txt instead of just .stgit-edit.txt
2009-01-21 14:48:37 -05:00
Ted Pavlic
f36748338b
Added some instructions to vimperator.vim.
...
Files like vimperator.vim, javascript.vim, and vimperatorrc.example
might fit better in a "contrib" directory. It's not clear whether there
should be vimperator/contrib and muttator/contrib directories or a
single liberator/contrib directory.
The Makefile.common doesn't include these files in the bundle, and so it
doesn't seem like a bad idea to package them in a single
liberator/contrib directory with a CONTENTS or README file giving a ToC
for the directory.
2009-01-21 11:19:16 -05:00
Ted Pavlic
23ff9efc61
Make xpi the default liberator/Makefile target (rather than clean).
2009-01-21 11:07:50 -05:00
Ted Pavlic
48be1c8df7
Changed awk to $(AWK) in Makefile.doc.
2009-01-21 11:02:52 -05:00
Ted Pavlic
74c04cc49b
Polished Makefile.doc anD Makefile.common.
...
(includes a more elegant fix for 1e4369cb40de23bd912bb7b5175c6cfae4e665c2)
2009-01-21 10:59:47 -05:00
Ted Pavlic
f381a86bf7
Temporary fix for "Sanitize Makefile.doc" (1e4369cb40de23bd912bb7b5175c6cfae4e665c2)
...
More elegant fix to come, but something was needed so that "make xpi"
could build.
2009-01-21 10:41:42 -05:00
Ted Pavlic
9ad451b7f7
Three small Makefile.doc fixes.
...
* Require language part of locale to be two lowercase letters.
* Update Makefile.doc comment -- add "include" comment.
* Get rid of muttator/locale/en-US/Makefile symlink in favor of include.
2009-01-21 10:17:37 -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
Kris Maglione
4d07a8b47f
Cleanup last patch
2009-01-20 23:40:05 -05:00
janus_wel
912bf91133
Fix erroneous info and add group names in styling.txt
...
* Delete the desctiption of nonexistent command :highlight-clear.
* Delete the erroneous info about bang of :highlight command.
* Add unwritten group names from styling.js.
Signed-off-by: Kris Maglione <maglione.k@gmail.com >
2009-01-20 23:38:48 -05:00