Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-12-05 | Fix typoHEADmaster | Rafael Marçalo | |
2023-09-10 | Escape special keys in mappings using backslash | Nicholas Todoroff | |
* Interpret a string like "\<C-R>" as representing the literal key sequence '<' 'C' '-' 'R' '>'. * Add a '<Bslash>' special key so that e.g. the string "<Bslash><C-R>" is interpreted as the key sequence '\' followed by CTRL-R. | |||
2023-06-27 | Add global marks | Daniel J. Perry | |
2023-05-09 | Fix typo | Konst Mayer | |
2022-01-01 | Add option for WebKit Intelligent Tracking Prevention | ugla | |
2021-10-15 | Adapt man page to slightly changed real status bar settings used. | Daniel Carl | |
2021-10-15 | new feature: show some settings on statusbar | rafa_99 | |
2021-09-25 | Removed and set incognito mode on by default with cookies | rafa_99 | |
2021-09-25 | Project branch off | rafa_99 | |
2021-09-15 | add entry for javascript-markup-enabled | Sadoon AlBader | |
2021-03-02 | add kill to hint mode | Chris Howey | |
very useful to kill ads or anything you don't want to see | |||
2021-01-25 | Add new env VIMB_WIN_ID to hold the gtk window id. | Daniel Carl | |
Fixes #658. | |||
2020-12-22 | added documentation for the notification setting | Cássio | |
2020-10-13 | Move some file to $XDG_DATA_HOME #582. | Daniel Carl | |
Do not store all files in XDG_CONFIG_HOME. | |||
2020-05-28 | Fixed typo in setting #617. | Daniel Carl | |
2020-04-15 | Allow to push link url to queue by <S-LeftMouse> #610. | Daniel Carl | |
2020-02-29 | Allow to set scroll-multiplier #602. | Daniel Carl | |
2020-02-28 | Allow to focus last input field by 'i' #605. | Daniel Carl | |
2020-02-12 | fix conditional xembed compilation | Raphael Gosselin | |
2020-01-10 | Give current selection as env on :shellcmd #592. | Daniel Carl | |
Give current selected text as environment variable $VIMB_SELECTION to scripts called by `:shellcmd`. | |||
2019-12-18 | Added --cmd,-C option to give ex commands on startup #342. | Daniel Carl | |
2019-12-11 | Add documentation for dark-mode option | Alva | |
2019-11-18 | Merge branch 'geolocation' of https://github.com/fjallarefur/vimb. | Daniel Carl | |
2019-11-18 | Allow to disable hint matching base on element text #581. | Daniel Carl | |
2019-11-18 | Add documentation for 'geolocation' setting | Alva | |
2019-11-18 | Merge branch 'pks/load-starting' of https://github.com/pks-t/vimb. | Daniel Carl | |
2019-11-11 | autocmd: implement new LoadStarting event | Patrick Steinhardt | |
The first autocommand event that is being triggered when loading a website is the "LoadStarted" event. LoadStarted gets triggered when the web view has started loading of the page, notably after the initial request has been sent. Thus, this event comes too late to change settings that would modify the initial request, like e.g. the user agent. Implement a new event LoadStarting that triggers immediately before performing the initial load and thus before LoadStarted. As WebKit does not provide any signal for this, we have to manually trigger this event when executing any load or navigation actions. The best place to piggy-back on WebKit itself is in fact `decide_navigation_action`, which will get executed on clicks, history navigation and `load_uri`. Like this, there is only a single location that needs to trigger the new event. This change enables one to modify configuration like the user agent for certain websites, which was not possible with "LoadStarted". | |||
2019-10-10 | Simplified the man page a little. | Daniel Carl | |
2019-10-09 | Put :cleardata dataType before timespan. | Daniel Carl | |
2019-10-09 | Added :clearcache by :cleardata command. | Daniel Carl | |
Allow to clear different types of website data base on the last update time. | |||
2019-06-20 | Spelling correction | Docbroke | |
2019-06-15 | Use ephemeral webview if incognito option is used #562 | Daniel Carl | |
Also removed obsolete 'private-browsing' setting. | |||
2019-06-08 | Added --incognito option to man page #562. | Daniel Carl | |
2019-05-23 | Fix a typo | Konst Mayer | |
2019-05-19 | Add external download command #543 #348. | Daniel Carl | |
Added 'download-command' setting to configure a command/script that handles the download of an uri. With the new setting flag 'download-use-external' can be decided if the external download command is used to download an uri or the built in downloader. | |||
2019-03-29 | added "bookmark" to the FILES list | Docbroke | |
2019-03-24 | Prevent opening links into new window #544. | Daniel Carl | |
Added setting 'prevent-newwindow' to enforce opening links into same window even if they are crafted by `target="_blank"` or using `window.open()`. This option does not change the behaviour for links fired by hinting. | |||
2019-03-12 | Allow to not maximize window via option --no-maximize #483. | Daniel Carl | |
2018-10-25 | Document `gf' command | Leonardo Taccari | |
2018-10-15 | Document marks in the man page, from vimb-2.12 | Leonardo Taccari | |
2018-10-11 | Fix a typo | Leonardo Taccari | |
2018-10-11 | Fix a copypasto regarding user-scripts option | Leonardo Taccari | |
2018-09-27 | Clarify proxy configuration | Allan Wind | |
2018-08-08 | Added missed description for yank | Daniel Carl | |
2018-08-06 | Added webkit setting for file uri handling. | Daniel Carl | |
2018-06-19 | Correct the man page | Konst Mayer | |
Related to the introduction of the new `vimbhint` attribute. | |||
2018-06-13 | Document :set show-titlebar | George Bateman | |
2018-06-11 | Clarify :set usage in man page | George Bateman | |
2018-05-02 | Use sqlite as cookie storage #470. | Daniel Carl | |
There are some reports about randomly cleared cookie file which seems to be fixed by using sqlite instead of text base cookie storage. | |||
2018-04-28 | Allow basic motion commands for hinting too. | Daniel Carl | |