about summary refs log tree commit diff stats
path: root/xxxterm.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix for FS#208 - open a file from the command line without full pathElias Norberg2012-01-031-3/+13
| | | | ok marco@
* Remove user_agent_roundrobin knobStevan Andjelkovic2012-01-021-3/+4
| | | | ok marco@
* Add history.c and completion.c...Stevan Andjelkovic2012-01-021-293/+0
| | | | | | ... and move history and completion related functions to them. ok marco@
* Fix two segfaultsStevan Andjelkovic2012-01-021-1/+5
| | | | | | Found and fixed by Nils Schneider <nils schneider at gmail dot com> ok marco@
* FS#201 - option to not load images on webpagesStevan Andjelkovic2011-12-301-0/+38
| | | | | | Code from Elias Norberg (xyzzy) ok marco@
* Fix spell checking value in config (FS#212)Stevan Andjelkovic2011-12-301-0/+1
| | | | | | Pointed out by John Brendler (brendlerjg) ok marco@
* Add "remove all cookies from domain" button FS#85Stevan Andjelkovic2011-12-291-0/+36
| | | | | | Code from Elias Norberg (xyzzy) ok marco@
* Add gt, gT, g0, g$ buffer commands (FS#202, FS#204)Stevan Andjelkovic2011-12-291-1/+55
| | | | | | Code from Elias Norberg (xyzzy) ok marco@
* Fixes the following bugs:Stevan Andjelkovic2011-12-291-7/+23
| | | | | | | | | | | | | | | FS#206:"Add option: maximize at startup" (From Wei-Ning Huang (aitjcize)) FS#198: "Buffer command gu documented as gU" (Pointed out by John Brendler (brendlerjg)) FS#203: "Add command gU for opening the root of a webpage" (Slightly modified code from Elias Norberg (xyzzy)) FS#211: "New key handling code breaks old :buffers/:ls behavior." ok marco@
* Add round robin user agentsMarco Peereboom2011-12-281-1/+23
| | | | | Fixes FS#65 from Elias Norberg xyzzy@kudzu.se
* user style ALL the pages _o/Marco Peereboom2011-12-281-11/+39
| | | | From Cody Wright M8R-2bxmml@mailinator.com
* Add link coloring after visiting it.Marco Peereboom2011-12-281-43/+187
| | | | | Work around for bug #51747 from Stevan Andjelkovic <stevan.andjelkovic@strath.ac.uk>
* be more paranoid with stringsMarco Peereboom2011-12-261-3/+6
|
* make sure show actually works as wellMarco Peereboom2011-11-161-0/+1
|
* Add proxy command.Marco Peereboom2011-11-161-2/+46
| | | | | We can now toggle a proxy with F2 and we also look at HTTP_PROXY environment variable. This is handy for toggling Tor on and off.
* add vi mode that eats ctrl/mod commands in inputMarco Peereboom2011-11-151-0/+6
|
* print build versionMarco Peereboom2011-11-151-0/+5
|
* bring back old keyboard behaviormarco2011-11-151-13/+4
|
* add a hybrid input modemarco2011-11-151-0/+7
|
* add webkit 1.2 codeMarco Peereboom2011-11-111-3/+1
|
* Move focus stuff into it's own file.Marco Peereboom2011-11-111-221/+5
| | | | This will enable us to support webkit 1.2 as well.
* focus nitsmarco2011-11-111-6/+15
|
* silence autorun js for nowMarco Peereboom2011-11-091-1/+2
|
* only set mode if focus succeedsMarco Peereboom2011-11-091-2/+4
|
* Add funky workaround for fancy rich edit boxes in RTMarco Peereboom2011-11-091-0/+17
| | | | | | | | HTML5 defines a new property called "editable". None of the old textarea or input properties has that so I never keyed off it. Turn out that it is used so treat these as editable things as well. This works around an issue in the RT rich text editor which is special in it's own way.
* fix some sites that screw with keyboard focusMarco Peereboom2011-11-091-4/+12
| | | | | | | This changes the behavior buffercommands by returning USED vs PASSTHROUGH on non ascii characters. This seems to work but I don't know if this affects non-US keyboards in any way. Please test this a lot!
* dont run JS_HINTING as oftenMarco Peereboom2011-11-091-11/+4
| | | | and clean up some debug
* handle frames and iframes as wellMarco Peereboom2011-11-091-10/+101
| | | | | | | | So now the heuristic is: focus on something in frame or iframe if nothing is found there then focus on input or textarea. This code does NOT take tabindex into account! It simply picks the first occurrence. This is deliberate!
* kill focusInput and clearFocus JSmarco2011-11-091-54/+93
| | | | | | We are way smart and do it all directly in the dom. This was the last stumbling block screwing with running auto js a bit nicer and I think we have working insert or command mode.
* cleanup and fix hintingmarco2011-11-091-96/+8
| | | | missed debug
* first attemp at doing a true keyboard modeMarco Peereboom2011-11-081-17/+180
|
* delete unused variableMarco Peereboom2011-11-051-2/+0
|
* be more quietMarco Peereboom2011-11-051-9/+3
|
* Add autorun JavaScript after page loadsMarco Peereboom2011-11-051-0/+178
| | | | | | | | | | It tries to open a default.js file followed by host.domain.js. If the host.domain.js file does not exist it tries to open domain.js. It reads the content of the default AND host/domain file and executes it. All scripts go in the ~/.xxxterm/js/ directory.
* kill a -Wshadow debugMarco Peereboom2011-11-051-2/+0
|
* Add stop commandMarco Peereboom2011-11-051-0/+8
| | | | Fixes FS#186
* fix a shadowed varMarco Peereboom2011-11-041-4/+4
|
* Fix command bar not disappearing when status bar is enabledMarco Peereboom2011-11-041-5/+7
| | | | | | | | Found by Feinerer <feinerer@logic.at> To the status bar maintainers, you guys need to take better care making sure you don't alter signal behavior when it is enabled. That is bad juju.
* Add useful tab_id to debugMarco Peereboom2011-11-041-12/+15
|
* set default encoding to UTF-8 as requestedmarco2011-11-031-1/+1
|
* add zz command to center pagemarco2011-11-031-0/+6
|
* Missed one more cmd_hide.marco2011-11-031-1/+2
|
* Fix 2 clever bugsMarco Peereboom2011-11-031-4/+6
| | | | | | | | | First :js/pl/cookie domain save wasn't saving the actual domain. I tried being clever to save a switch statement. FAIL. Second I tried to save an else statement. Again FAIL. Next time I am doing clever things please yell at me.
* enter was busted in link followingMarco Peereboom2011-11-031-2/+2
|
* stale protomarco2011-11-021-2/+0
|
* move cookies to own filemarco2011-11-021-212/+0
|
* move one more function overMarco Peereboom2011-11-021-50/+0
|
* More file splitsMarco Peereboom2011-11-021-1867/+8
| | | | Add whitelist and settings files.
* Move more stuff into aboutMarco Peereboom2011-11-021-174/+0
|
* damn git never does what it says it doesmarco2011-11-021-1222/+7
| | | | these file remained behind