1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 00:17:58 +01:00

*** empty log message ***

This commit is contained in:
Martin Stubenschrott
2007-05-01 11:23:14 +00:00
parent 7c16e5c969
commit eaca2e379d
4 changed files with 9 additions and 8 deletions

View File

@@ -1,10 +1,9 @@
<pre> <pre>
date: 2007-05-01:
* version 0.4 * version 0.4
* extension GUID was changed to 'vimperator@mozdev.net' -> YOU WILL HAVE * extension GUID was changed to 'vimperator@mozdev.net' -> YOU WILL HAVE
TO UNINSTALL ANY OLD VIMPERATOR INSTALLATION BEFORE INSTALLING THIS VERSION TO UNINSTALL ANY OLD VIMPERATOR INSTALLATION BEFORE INSTALLING THIS VERSION
* support for internal search engines was dropped. Now we use Firefox * support for internal search engines was dropped. Now we use Firefox search engines
search engines. Add custom search engines with :qsadd, remove engines with :qsdel
* support for 'wildmode' completion setting with support for matching the * support for 'wildmode' completion setting with support for matching the
longest common substring. Also new 'wildoptions' setting longest common substring. Also new 'wildoptions' setting
* added 'f' to the 'complete' option to allow listing of filenames in :open prompt * added 'f' to the 'complete' option to allow listing of filenames in :open prompt

2
TODO
View File

@@ -10,13 +10,13 @@ BUGS:
- multiple windows to not work at all, so :q will close the whole browser session, even when there are other windows which has tabs - multiple windows to not work at all, so :q will close the whole browser session, even when there are other windows which has tabs
- reload/stop buttons don't update enabled state - reload/stop buttons don't update enabled state
- http://en.wikipedia.org/wiki/Portal:Current_events - 'f' shows more hints than 'F' (on left side of nav bar) - http://en.wikipedia.org/wiki/Portal:Current_events - 'f' shows more hints than 'F' (on left side of nav bar)
- gu and gU don't work on local files properly
FEATURES: FEATURES:
9 marks of a Location, [m a-zA-Z] to set it, [` a-zA-Z] to go there 9 marks of a Location, [m a-zA-Z] to set it, [` a-zA-Z] to go there
[m 0-9] marks a buffer instead [' 0-9] goes there [m 0-9] marks a buffer instead [' 0-9] goes there
also mark bookmarks (with M[a-zA-Z] maybe and use only lowercase marks for inbuffer marks?) also mark bookmarks (with M[a-zA-Z] maybe and use only lowercase marks for inbuffer marks?)
also support :mark and :marks also support :mark and :marks
8 :open .. -> Up one directory, :cd goes to top location, [Backspace] command shortcut, use count (:3cd goes 3 levels up)
8 downloading of links to filesystem (:save <filename>) 8 downloading of links to filesystem (:save <filename>)
8 provide a buffer on the bottom where more than 1 line messages can be shown, preferrable 8 provide a buffer on the bottom where more than 1 line messages can be shown, preferrable
with color support (for things like :echo line1\nline2) with color support (for things like :echo line1\nline2)

View File

@@ -1339,7 +1339,9 @@ function stringToURLs(str)
* open it with default search engine */ * open it with default search engine */
if (urls[url].match(/\s+/) || urls[url].match(/\.|:|\//) == null) if (urls[url].match(/\s+/) || urls[url].match(/\.|:|\//) == null)
{ {
var default_engine = search_service.defaultEngine; // defaultEngine is always the same (Google), therefor let's use the currentEngine
var default_engine = search_service.currentEngine;
//var default_engine = search_service.defaultEngine;
if (default_engine) if (default_engine)
{ {
urls[url] = default_engine.getSubmission(urls[url], null).uri.spec; urls[url] = default_engine.getSubmission(urls[url], null).uri.spec;

View File

@@ -6,10 +6,10 @@
<em:id>vimperator@mozdev.org</em:id> <em:id>vimperator@mozdev.org</em:id>
<em:name>Vimperator</em:name> <em:name>Vimperator</em:name>
<em:version>###VERSION###</em:version> <em:version>###VERSION###</em:version>
<em:description>Make Firefox work like Vim</em:description> <em:description>Make Firefox behave like Vim</em:description>
<em:creator>Martin Stubenschrott</em:creator> <em:creator>Martin Stubenschrott</em:creator>
<em:homepageURL>http://vimperator.mozdev.org</em:homepageURL> <em:homepageURL>http://vimperator.mozdev.org</em:homepageURL>
<em:updateURL>http://downloads.mozdev.org/vimperator/update.rdf</em:updateURL> <!--em:updateURL>http://downloads.mozdev.org/vimperator/update.rdf</em:updateURL-->
<em:file> <em:file>
<Description about="urn:mozilla:extension:file:vimperator.jar"> <Description about="urn:mozilla:extension:file:vimperator.jar">
<em:package>content/vimperator/</em:package> <em:package>content/vimperator/</em:package>
@@ -20,7 +20,7 @@
<Description> <Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>2.0</em:minVersion> <em:minVersion>2.0</em:minVersion>
<em:maxVersion>2.1</em:maxVersion> <em:maxVersion>2.0.0.*</em:maxVersion>
</Description> </Description>
</em:targetApplication> </em:targetApplication>
</Description> </Description>