Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Modify some entry box overrides. | Marco Peereboom | 2011-11-10 | 1 | -8/+8 |
| | | | | | | | | Ass a side effect of all the keyboard changes some keys lost their override in address and search entry. Bring some of those back (like ctrl-t etc). I am not sure I captured all the right ones so come debate me if you think other changes need to be made to the defaults. One can always do their own by using the ! in a keybinding. | ||||
* | silence autorun js for now | Marco Peereboom | 2011-11-09 | 1 | -1/+2 |
| | |||||
* | only set mode if focus succeeds | Marco Peereboom | 2011-11-09 | 1 | -2/+4 |
| | |||||
* | Add funky workaround for fancy rich edit boxes in RT | Marco Peereboom | 2011-11-09 | 1 | -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 focus | Marco Peereboom | 2011-11-09 | 1 | -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 often | Marco Peereboom | 2011-11-09 | 1 | -11/+4 |
| | | | | and clean up some debug | ||||
* | handle frames and iframes as well | Marco Peereboom | 2011-11-09 | 1 | -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 JS | marco | 2011-11-09 | 1 | -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 hinting | marco | 2011-11-09 | 1 | -96/+8 |
| | | | | missed debug | ||||
* | first attemp at doing a true keyboard mode | Marco Peereboom | 2011-11-08 | 2 | -18/+184 |
| | |||||
* | delete unused variable | Marco Peereboom | 2011-11-05 | 1 | -2/+0 |
| | |||||
* | be more quiet | Marco Peereboom | 2011-11-05 | 1 | -9/+3 |
| | |||||
* | Add autorun JavaScript after page loads | Marco Peereboom | 2011-11-05 | 4 | -0/+182 |
| | | | | | | | | | | 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. | ||||
* | Prepare for release 1.8.1. | Marco Peereboom | 2011-11-05 | 1 | -1/+1 |
| | |||||
* | kill a -Wshadow debug | Marco Peereboom | 2011-11-05 | 1 | -2/+0 |
| | |||||
* | Add stop command | Marco Peereboom | 2011-11-05 | 2 | -0/+10 |
| | | | | Fixes FS#186 | ||||
* | Add M-p to toggle plugins | Marco Peereboom | 2011-11-05 | 2 | -1/+4 |
| | |||||
* | Add ctrl-p to toggle plugins | Marco Peereboom | 2011-11-05 | 1 | -0/+1 |
| | |||||
* | move common warnings to common area | Marco Peereboom | 2011-11-04 | 1 | -2/+1 |
| | |||||
* | better warnings | Marco Peereboom | 2011-11-04 | 1 | -4/+4 |
| | |||||
* | fix a shadowed var | Marco Peereboom | 2011-11-04 | 1 | -4/+4 |
| | |||||
* | add -Wshadow to clang target | Marco Peereboom | 2011-11-04 | 1 | -2/+6 |
| | |||||
* | Fix command bar not disappearing when status bar is enabled | Marco Peereboom | 2011-11-04 | 1 | -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 debug | Marco Peereboom | 2011-11-04 | 1 | -12/+15 |
| | |||||
* | one more file | marco | 2011-11-03 | 1 | -1/+3 |
| | |||||
* | use install instead of cp and mkdir for install | marco | 2011-11-03 | 1 | -7/+8 |
| | |||||
* | set default encoding to UTF-8 as requested | marco | 2011-11-03 | 2 | -2/+2 |
| | |||||
* | document zz | marco | 2011-11-03 | 1 | -0/+2 |
| | |||||
* | add zz command to center page | marco | 2011-11-03 | 1 | -0/+6 |
| | |||||
* | Missed one more cmd_hide. | marco | 2011-11-03 | 1 | -1/+2 |
| | |||||
* | Fix a warning that was an actual issue. | Marco Peereboom | 2011-11-03 | 1 | -5/+8 |
| | | | | Found by gcc! | ||||
* | fix extra <li>, pointed out by rgouveia | Marco Peereboom | 2011-11-03 | 1 | -1/+1 |
| | |||||
* | fix a clang warning | Marco Peereboom | 2011-11-03 | 1 | -1/+3 |
| | |||||
* | add uninstall target and install icon already | Marco Peereboom | 2011-11-03 | 1 | -0/+19 |
| | |||||
* | Fix 2 clever bugs | Marco Peereboom | 2011-11-03 | 2 | -12/+27 |
| | | | | | | | | | 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 following | Marco Peereboom | 2011-11-03 | 1 | -2/+2 |
| | |||||
* | Update .gitignore with generated deps and tags. | Dave Collins | 2011-11-03 | 1 | -0/+2 |
| | |||||
* | Add automatic dependency generation for linux. | Dave Collins | 2011-11-03 | 1 | -4/+16 |
| | | | | Also improve the makefile to use dynamic sources and objects. | ||||
* | dang it i disabled threads by accident | Marco Peereboom | 2011-11-03 | 1 | -1/+1 |
| | |||||
* | kill warning | Marco Peereboom | 2011-11-03 | 1 | -1/+2 |
| | |||||
* | one more oops, we need .o not .c | Marco Peereboom | 2011-11-03 | 1 | -1/+1 |
| | |||||
* | oops, add missing CFLAGS | Marco Peereboom | 2011-11-03 | 1 | -2/+2 |
| | |||||
* | stale proto | marco | 2011-11-02 | 1 | -2/+0 |
| | |||||
* | move cookies to own file | marco | 2011-11-02 | 4 | -213/+234 |
| | |||||
* | move one more function over | Marco Peereboom | 2011-11-02 | 2 | -50/+48 |
| | |||||
* | catch up | Marco Peereboom | 2011-11-02 | 2 | -2/+6 |
| | |||||
* | More file splits | Marco Peereboom | 2011-11-02 | 6 | -1873/+2027 |
| | | | | Add whitelist and settings files. | ||||
* | Move more stuff into about | Marco Peereboom | 2011-11-02 | 3 | -176/+187 |
| | |||||
* | Merge branch 'master' of ssh://opensource.conformal.com/git/xxxterm | marco | 2011-11-02 | 2 | -2/+4 |
|\ | |||||
| * | catch up on new files | Marco Peereboom | 2011-11-02 | 2 | -2/+4 |
| | |