1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-20 21:51:24 +02:00
Commit Graph

580 Commits

Author SHA1 Message Date
Kris Maglione 047c7e5cf2 Fix :mkv bug 2009-01-10 18:16:57 -05:00
Kris Maglione 1e9a7f42c6 Fix beeping when no completions available. 2009-01-10 15:02:40 -05:00
Doug Kearns 050b701745 Make io.system behave like Vim with a default 'shellredir' setting. 2009-01-11 01:20:07 +11: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 2f2ea98a9c Update more inline docs in ui.js 2009-01-08 21:58:59 -05:00
Kris Maglione 7a38e53493 Fix stupid autocomplete sluggishness. 2009-01-08 21:21:00 -05:00
Kris Maglione c4f5d4f84d Fix some inline/help docs. 2009-01-08 20:56:26 -05:00
Kris Maglione 6534a0c665 Fix tab-completion bugs 2009-01-08 20:55:45 -05:00
Ted Pavlic 48d8b7cacd Added comment/query about why mappings.add("F") is doing what it's doing. 2009-01-08 18:04:55 -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
teramako 3a98dfc589 Merge branch 'master' of vimperator.org:/git/vimperator/liberator 2009-01-09 00:17:51 +09:00
teramako 994993820f support multi modifiers 2009-01-09 00:17:18 +09:00
Ted Pavlic d90e670d70 Revert 93b0cf2a063b045268a55fbeac9473ce12234300's changes to hints.js
Until liberator.NEW_BACKGROUND_TAB operates differently based on the
    setting of browser.tabs.loadInBackground, this code must remain. At
    the moment, NEW_BACKGROUND_TAB only opens a true background tab if
    loadInBackground=true. When loadInBackground=false, the meaning of
    NEW_TAB and NEW_BACKGROUND_TAB flip. Hence, until they're invariant,
    something like ;F (which must always load tabs in the background)
    has to pay attention to loadInBackground.
2009-01-08 08:51:34 -05:00
Doug Kearns ad6557db6d Don't clear the search highlighting when a search is cancelled. 2009-01-08 14:12:29 +11:00
Kris Maglione 465405bc84 Fix :sty site completions 2009-01-07 18:14:13 -05:00
Kris Maglione d9418ff43b Fix menuItem completer, use it for :emenu 2009-01-07 17:56:53 -05:00
Kris Maglione 0aeee25e65 Add standard 'mark' completer. Fix x/y transposition in :delm completion 2009-01-07 17:38:57 -05:00
Kris Maglione 1f2bf969d1 Fix completion bug 2009-01-07 17:16:08 -05:00
Kris Maglione 15a64a0085 Comment on 'new' in HACKING 2009-01-07 16:41:44 -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
Martin Stubenschrott 16ea6a79d9 make :open foo<tab> faster on certain hardware/OS configurations
(where foo is a completion which might take up to 20 seconds to return all results)
Still very, very buggy.
2009-01-07 20:57:31 +01: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
Kris Maglione 8acd490a50 Merge branch 'master' of kmaglione@git.vimperator.org:/git/vimperator/liberator into HEAD 2009-01-06 23:13:28 -05:00
Kris Maglione 102605556d Fix rapid succession <Tab><Tab> when busy. Don't wait for all contexts to complete when processing <Tab> 2009-01-06 23:12:51 -05:00
Doug Kearns ddce42858c s/retVal/ret/ in buffer.followDocumentRelationship. 2009-01-07 14:44:37 +11:00
Doug Kearns 61d3fae8b4 Use self as the returned object from all creation functions. 2009-01-07 14:44:35 +11:00
Kris Maglione 3116c16d54 Revert "fixed :open completions for slow computers. We now yield"
This reverts commit b32cfe76ff5f5a22e868eb8ab97191b12561e16e.
2009-01-06 22:09:35 -05:00
Martin Stubenschrott 99150247f9 added comments to ui.js, thanks cirmin. Note: Please try
to avoid trailing whitespace, I had to remove 18 of these things, but
otherwise nice job, thanks :)
2009-01-07 03:18:29 +01:00
Martin Stubenschrott 473c461d3f fixed :open completions for slow computers. We now yield
incremental results, and the user gets more completion, the more often
he presses tab. Need to find out, how to change the "Waiting..." message
to "More results...". Also reminds me, how ugly the completion context
code is partly. We should try to clean it up and remove/merge useless
function to make it's interface smaller and more side-effect free.
2009-01-07 03:07:29 +01:00
Kris Maglione e7f86f893d Cleanup liberator.open. Ted, please, just once, format your code correctly. Thanks. 2009-01-06 12:41:55 -05:00
Kris Maglione 343a40f71b Add CompletionContextcompletion.jscancelAll 2009-01-06 11:44:36 -05:00
Kris Maglione ffd69033f7 Add to HACKING 2009-01-06 11:40:12 -05:00
Martin Stubenschrott f09ad33e28 Fixed v exiting visual mode, thanks Xie&Tian 2009-01-06 14:00:27 +01:00
Martin Stubenschrott 2b404b74a0 Allow canceling of asynchronous completions. Some other small completion cleanups. NOTE to myself: The completion/commandline code is quite spaghetti code again, need to reduce unused functions, and reduce side effects inside functions like resetCompletions 2009-01-05 23:58:34 +01:00
Doug Kearns e004668572 Access the console service via the services cache in liberator.log. 2009-01-05 21:53:55 +11:00
Doug Kearns 698cdb19c2 Add "io" to the services cache. 2009-01-05 21:47:49 +11:00
Doug Kearns 49e0c091c1 s/stylesheet/style sheet/g in documentation. 2009-01-05 21:10:57 +11:00
Doug Kearns 0d3d8ce63b Remove old heredoc parsing cruft from commands.parseCommand. 2009-01-05 21:09:17 +11:00
Martin Stubenschrott 153536799a dont output continous "Waiting for page to load..." as a message 2009-01-05 06:09:57 +01:00
anekos 1c6907eb2c Fix Option#get 2009-01-05 13:27:58 +09:00
Ted Pavlic 3befa0120b Fixed ":winopen a, b, c" so that a, b, and c all open in the new window.
Before, only a opened in the new window. b and c opened in background
tabs.

Please review this patch. Feel free to refactor or revert. I'm not
entirely comfortable with the solution, but it was small.

Bug reported in http://vimperator.org/trac/ticket/119
2009-01-04 21:49:08 -05:00
Martin Stubenschrott b20f740d30 added simple style guide in HACKING file 2009-01-03 14:45:49 +01:00
Martin Stubenschrott 5a139df797 Add ;F back again. Kris is right, that we are in feature freeze, but
this really just is a small commit which looks done right and satisfies
the need of a lot of people.

This reverts commit 969feba9355bdc148dc9403992facb314a30d1be.
2009-01-03 14:10:34 +01:00
Doug Kearns 7e2461cd90 Use the services cache in liberator.profileName. 2009-01-03 22:36:17 +11:00
Doug Kearns 172900fff2 Declare a variable in "gi" action. 2009-01-03 21:59:44 +11:00
Kris Maglione 81e0ae4bb5 Wait for completion to finish before processing <Tab> 2009-01-03 00:14:48 -05:00
Kris Maglione f4b8edbb67 Hashes are better than arrays 2009-01-02 20:47:46 -05:00
Kris Maglione f36b293e0d Shorten last commit (and s/'/"/g) 2009-01-02 20:28:56 -05:00