Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
If a search was done the shown number of search hits was right. But on
case of stepping through the list, the match count was updated by 1.
Now use the right signal "counted-matches" to get the real number of
search hits independent from stepping through the list.
|
|
|
|
|
|
|
|
Set hint to window managers to maximize the browser window.
|
|
This function intensional should be used by other components. But there
is only one component using this, so it's better to move this away.
|
|
|
|
|
|
There is no code calling complete(..., 0) which was used in early days
to stop the completion. So remove the code to handle none given
direction.
|
|
There are some reports about randomly cleared cookie file which seems to
be fixed by using sqlite instead of text base cookie storage.
|
|
The search highlight was not removed if incsearch was enabled and the
search not commited by <CR> but left by <Esc>.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Give only those information the util functions need to work.
|
|
|
|
|
|
Revert "Don't duplicate CFLAGS and CPPFLAGS."
This reverts commit 0cc0db9f7d40fdf9e88f20101a5183e35ba2ea91.
|
|
|
|
The warning is only shown if compiled with DEBUG. Hope this will helps
users and package managers to check the compilation or installation.
|
|
Most of the time uri do not contain credentials, so don't run expensive
uri cleanup if there is not @ char in uri indicating that this might
contain at least a username and possibly also and password.
|
|
|
|
Like Rudis Muiznieks pointed out the password appeared on other channels
too. So we sanitize the uri as soon as possible to ensure the password
is not visible in history, bookmarks, environment variables like
$VIMB_URI or the register '%'.
|
|
This will allow us to used this in other parts too.
|
|
|
|
|
|
Get some auto suggested download file name if a page is going to be
saved by :save command.
|
|
n/N restart the previous search if none is active
|
|
vimb no longer ignores n/N if no search is active. Instead, it restarts
a search with the same query that was used in the last search, just like
Vim does. This is very convenient when searching for the same query in
different pages.
|
|
Webkit shows an default embedded authentication dialog in case of
HTTP-Authentication. But this dialog is neither a GTK dialog nor part of
the DOM. So we are not informed about the any focus changes and vimb
keeps in normal mode and the user cant use all the chars for the
authentication.
This patch listen to the webview authentication signal to force
switching to input mode. On the other had a new flag is set to avoid
switching vimb back to normal mode because of focus changes in the
underlaying DOM (previous opened page).
|
|
fix #425
|
|
|
|
The g_variant format 's' will duplicate the memory of the requested
string. Changed this to '&s' to access the serialized data direct so
there is no need to free it.
|
|
Show matching url in case of `bmr tag<Tab>` as for the open command
`:open tag<Tab>` which is none sorting to keep the url in the sort order
they where added to the bookmarks. This means the last added bookmarks
or ordered first in the completion list.
|
|
Do not print to much in case the user is only interested in the current
used version. So show vimb version only on options -v, --version and
added the new option --bug-version which shows the currently used libs
and the library versions vimb was compiled against.
|
|
|
|
Setup the gui elements only when the webview is ready to be show like
suggested by the webkit developers.
|
|
Don't put the CPPFLAGS and CFLAGS duplicate to the compiler which lead
to warnings about redefinition of constants on command line like
<command-line>:0:0: warning: "EXTENSIONDIR" redefined
<command-line>:0:0: note: this is the location of the previous
definition
|
|
The ';o' hinting was not allowed for extended hinting because it makes no
sense to keep hinting open when opening a link into the same window. But
the ';o' hinting matches also form fields so it is useful to allow it
for extended hinting too. So the user can open the extended hinting by
'g;o' and toggle radio buttons and checkboxes and finally submit the
form.
|
|
The copy of variable into a shorter one enlarges the codes size when the
variable is used only once. So don't copy it.
|