about summary refs log tree commit diff stats
path: root/xxxterm.conf
Commit message (Collapse)AuthorAgeFilesLines
...
* set enable spell check to to 1 so that removing # does the trick.Marco Peereboom2011-06-211-1/+1
|
* Add options for spell checking.Raphael Graf2011-06-211-0/+2
| | | | ok omg marco@
* add sMarco Peereboom2011-05-261-1/+1
|
* pimp cyphertiteMarco Peereboom2011-05-261-1/+1
|
* example on how to ignore certain mime types, i am talking to you flashMarco Peereboom2011-04-201-0/+3
|
* Make some commands more gvim-like and allow trailing "!".Raphael Graf2011-04-131-1/+1
| | | | | | Fix segmentation fault with ':tabclose' from command-line on a single tab. ok marco@
* remove tabgoto, use tabnext insteadRaphael Graf2011-04-111-10/+10
| | | | ok marco@
* Arbitrary commands can now be bound to keys using keybindings.Stevan Andjelkovic2011-04-101-2/+2
| | | | ok marco@
* expose max connections and max host connections for extra vroom vroom.Marco Peereboom2011-03-171-0/+2
| | | | news.google.com in like 300ms ;-)
* Generalised and simplified keybindings. Keys can now be bound toStevan Andjelkovic2011-03-171-2/+2
| | | | | | | commands taking arguments, such as "js toggle". Removed karg from the key_binding struct. ok marco@
* add @ modifier to mime type to enable "downloading first"; needed to useMarco Peereboom2011-03-171-3/+6
| | | | | with like xpdf that can't handle URLs or sites like chase.com that do stupid js crap to start the download.
* bring conf back into realityMarco Peereboom2011-03-161-7/+7
|
* Big change to how keys are handled.Stevan Andjelkovic2011-03-151-10/+13
| | | | | | | | | | | | All functions are now accessable thru commands, when a key is pressed the name string in the key_binding struct is used to lookup the correct function to call in the cmds[] array. As a result the func field in the keys[] struct is no longer needed. This is also a first step towards making it possible to drive a running xxxterm instance from the command line. ok marco@
* Fixed keybindings clash.Stevan Andjelkovic2011-03-071-4/+4
| | | | | | Improved an error message. ok marco@
* Added keybindings for cmd aliases (F9-F12).Stevan Andjelkovic2011-03-071-0/+4
| | | | ok marco@
* Low contrast web browsing (yay!)Marco Peereboom2011-02-261-0/+1
| | | | From: Todd Carson <toc@daybefore.net>
* use zoom-level to scale the whole page instead of just fontsTodd Fries2011-02-221-0/+1
| | | | get it in marco@
* move keyboard mappings from C+q to C-q.Marco Peereboom2011-02-171-42/+42
| | | | | Fix a bug where the wrong value was being stored for the keybinding name. Work around a bug in gtk+ where 10 was considered a valid keystroke.
* make audio go to vlc because we need a gui to control itMarco Peereboom2011-02-171-1/+1
|
* * Added a wrapper around webkit_web_frame_get_uri(), and used it allStevan Andjelkovic2011-02-091-1/+1
| | | | | | | | | | | | | | | over the code. * Fixed FS#53, patch by Raphael Graf: http://opensource.conformal.com/flyspray/index.php?do=details&task_id=53&project=5 * Rewrote one instance of "while (!feof(f)) {" into "for (;;) { if ((line = fparseln(f, &linelen, NULL, NULL, 0)) == NULL)", there is one instance of "while(!feof(f))" left in the code... * Minor fix to keybindings stuff. * Some other minor fixes.
* add keybindingsMarco Peereboom2011-02-031-0/+84
|
* Man page fix (make guess_url, status{s,h} respect the alphabeticalStevan Andjelkovic2011-02-021-1/+1
| | | | | | | | | | order). Made rs[] (runtime settings) more readable, by indenting it. download_dir = ~/downloads rather than ~downloads in config. ok marco@
* correct note, pointed out by stevanMarco Peereboom2011-02-011-1/+1
|
* new config file is all disabled so only needs tinkering if one knows whatMarco Peereboom2011-02-011-50/+67
| | | | one really wants to do
* Added a slightly modified patch for the guess search heuristic from RivoStevan Andjelkovic2011-02-011-0/+1
| | | | | | Nurges <rix at estpak dot ee>. Also made the guess search heuristic optional.
* Added a vimperator style status bar, based on Todd's earlier patch.Stevan Andjelkovic2011-01-301-0/+1
| | | | | | | | Added a new heuristic for guess_url_type; if the string passed to the function isn't a local file and contains no dot, assume that the user wants to search for the string. ok marco@
* some stray cookie_wl items got inMarco Peereboom2011-01-141-3/+0
|
* Add session_autosave as requested by jy-p.Marco Peereboom2011-01-141-0/+1
| | | | doco all session commands.
* show_{tab,url} in conf + docoTodd Fries2011-01-121-0/+2
|
* kill runtime settings and simply enable it at all times.Marco Peereboom2011-01-101-3/+0
| | | | Sort cookie and js white lists forward instead of reverse.
* add feature to save all rejected cookies. Handy for data mining themMarco Peereboom2011-01-071-0/+4
| | | | trackers.
* add user_agent settingMarco Peereboom2011-01-071-0/+6
|
* add latest stuff to confMarco Peereboom2011-01-061-0/+4
| | | | from todd@openbsd.org
* add save_global_historyMarco Peereboom2011-01-051-0/+1
| | | | from Stevan Andjelkovic <stevan@student.chalmers.se>
* Add bunch of iconsMarco Peereboom2011-01-031-0/+1
|
* Add runtime cookie white list toggle.Marco Peereboom2010-12-291-0/+1
| | | | | Add allow_volatile_cookies option that ellows short lived cookies to exist in the session cache.
* add runtime settings option, not in use yet.Marco Peereboom2010-12-291-1/+4
| | | | create a generic settings walker with fancy callbacks to do stuff
* now that we have the socket stuff add single_instance optionMarco Peereboom2010-12-281-0/+1
|
* Add local socket option to open new tabs from the command line.Marco Peereboom2010-12-281-0/+1
| | | | | Mostly from Stevan Andjelkovic <stevan@student.chalmers.se> Debugging and some extra stuff by me.
* add append_next to enable tab insertions instead of appending as requestedMarco Peereboom2010-12-281-0/+1
| | | | by jy-p.
* add a toggle js button on the toolbarMarco Peereboom2010-12-271-1/+1
|
* handle certificates more gracefully. Trusted is green, untrusted yellow.Marco Peereboom2010-12-261-0/+2
| | | | When there is no CA file color all secure connections red.
* add conformal as a good guyMarco Peereboom2010-12-221-0/+2
|
* Add javascript whitelist.Marco Peereboom2010-12-221-0/+6
|
* Add proper cookie support with policy, cookie white list, session cookiesMarco Peereboom2010-12-221-0/+15
| | | | etc
* Add refres_interval for dlmanMarco Peereboom2010-12-211-0/+1
|
* add word docsMarco Peereboom2010-08-101-0/+3
|
* add alias exampleMarco Peereboom2010-08-101-0/+4
|
* add scrogle ssl search link; much nicerMarco Peereboom2010-02-281-1/+2
|
* add pdf exampleMarco Peereboom2010-02-271-0/+3
|