summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2023-12-05Fix typoHEADmasterRafael Marçalo
2023-09-10Escape special keys in mappings using backslashNicholas 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-27Add global marksDaniel J. Perry
2023-05-09Fix typoKonst Mayer
2022-01-01Add option for WebKit Intelligent Tracking Preventionugla
2021-10-15Adapt man page to slightly changed real status bar settings used.Daniel Carl
2021-10-15new feature: show some settings on statusbarrafa_99
2021-09-25Removed and set incognito mode on by default with cookiesrafa_99
2021-09-25Project branch offrafa_99
2021-09-15add entry for javascript-markup-enabledSadoon AlBader
2021-03-02add kill to hint modeChris Howey
very useful to kill ads or anything you don't want to see
2021-01-25Add new env VIMB_WIN_ID to hold the gtk window id.Daniel Carl
Fixes #658.
2020-12-22added documentation for the notification settingCássio
2020-10-13Move some file to $XDG_DATA_HOME #582.Daniel Carl
Do not store all files in XDG_CONFIG_HOME.
2020-05-28Fixed typo in setting #617.Daniel Carl
2020-04-15Allow to push link url to queue by <S-LeftMouse> #610.Daniel Carl
2020-02-29Allow to set scroll-multiplier #602.Daniel Carl
2020-02-28Allow to focus last input field by 'i' #605.Daniel Carl
2020-02-12fix conditional xembed compilationRaphael Gosselin
2020-01-10Give 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-18Added --cmd,-C option to give ex commands on startup #342.Daniel Carl
2019-12-11Add documentation for dark-mode optionAlva
2019-11-18Merge branch 'geolocation' of https://github.com/fjallarefur/vimb.Daniel Carl
2019-11-18Allow to disable hint matching base on element text #581.Daniel Carl
2019-11-18Add documentation for 'geolocation' settingAlva
2019-11-18Merge branch 'pks/load-starting' of https://github.com/pks-t/vimb.Daniel Carl
2019-11-11autocmd: implement new LoadStarting eventPatrick 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-10Simplified the man page a little.Daniel Carl
2019-10-09Put :cleardata dataType before timespan.Daniel Carl
2019-10-09Added :clearcache by :cleardata command.Daniel Carl
Allow to clear different types of website data base on the last update time.
2019-06-20Spelling correctionDocbroke
2019-06-15Use ephemeral webview if incognito option is used #562Daniel Carl
Also removed obsolete 'private-browsing' setting.
2019-06-08Added --incognito option to man page #562.Daniel Carl
2019-05-23Fix a typoKonst Mayer
2019-05-19Add 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-29added "bookmark" to the FILES listDocbroke
2019-03-24Prevent 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-12Allow to not maximize window via option --no-maximize #483.Daniel Carl
2018-10-25Document `gf' commandLeonardo Taccari
2018-10-15Document marks in the man page, from vimb-2.12Leonardo Taccari
2018-10-11Fix a typoLeonardo Taccari
2018-10-11Fix a copypasto regarding user-scripts optionLeonardo Taccari
2018-09-27Clarify proxy configurationAllan Wind
2018-08-08Added missed description for yankDaniel Carl
2018-08-06Added webkit setting for file uri handling.Daniel Carl
2018-06-19Correct the man pageKonst Mayer
Related to the introduction of the new `vimbhint` attribute.
2018-06-13Document :set show-titlebarGeorge Bateman
2018-06-11Clarify :set usage in man pageGeorge Bateman
2018-05-02Use 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-28Allow basic motion commands for hinting too.Daniel Carl