Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-25 | Project branch off | rafa_99 | |
2018-10-25 | Add command_spawn_editor() and implement normal_view_source() | Leonardo Taccari | |
- Add a command_spawn_editor() to asynchronously spawn editor - Adjust input_editor_formfiller() to use command_spawn_editor() - Add support to view the source of the current page via the editor (`gf' command). | |||
2018-07-31 | Convert focus_element_by_id.js to C | Virgil Dupras | |
2018-06-27 | Use travis-ci for testing. | Daniel Carl | |
2018-06-16 | Fix missing string.h include | Yutao Yuan | |
2018-06-14 | Do not damage utf8 string on escape. | Daniel Carl | |
This fixes #492. | |||
2018-06-02 | Remove not really needed variable. | Daniel Carl | |
2018-06-02 | Fixed possible memory leak in case of errors. | Daniel Carl | |
2018-06-02 | Reuse success flag. | Daniel Carl | |
2018-06-02 | Fixed some code style issues. | Daniel Carl | |
2018-06-01 | moved id to its own variable to adher to IPO model | Sven Speckmaier | |
2018-05-30 | multi line javascript used from scripts/scripts.h | Sven Speckmaier | |
2018-05-29 | use vimb_editor_map when no id is present | Sven Speckmaier | |
2018-05-28 | assert and free data->element_id in editor return | Sven Speckmaier | |
2018-05-28 | fix indentation to adher to the contribution guidlines | Sven Speckmaier | |
2018-05-28 | Remember element id per open process watch | Sven Speckmaier | |
2018-05-15 | Use g_strescape() to escape editor contents. | Daniel Carl | |
2018-05-15 | More info when spawning of editor-command fails. | Daniel Carl | |
2018-03-28 | Update license year. | Daniel Carl | |
2017-06-24 | Use Uppercase bool value from glib. | Daniel Carl | |
2017-05-26 | Update license year. | Daniel Carl | |
2017-05-12 | implements external editor (closes #347) | Robert Timm | |
2017-04-21 | Run js by webextension. | Daniel Carl | |
Make sure all the scripts we run internally are also evaluated in case js is disabled. | |||
2017-02-26 | fixes (shift)tab cycling through editable elements | Robert Timm | |
2016-06-01 | Update license year. | Daniel Carl | |
2016-03-30 | Startup webkit2 branch from the scratch. | Daniel Carl | |
2015-07-20 | give the focus to the text box after it's closed in an external editor | Benjamin Petrenko | |
2015-07-20 | stop the focus from appearing to be on the input box after closing an ↵ | Benjamin Petrenko | |
external editor | |||
2015-02-21 | Merged code from mode.c into main.c | Daniel Carl | |
2015-01-01 | Change year in license block. | Daniel Carl | |
2014-12-02 | Show mode label in statusbar. | Daniel Carl | |
This avoid often opening inputbox in case 'input-autohide=on' is set. | |||
2014-08-15 | Added CTRL-0 to run normal mode command during input mode. | Daniel Carl | |
2014-08-03 | Fixed some typos. | Daniel Carl | |
2014-06-29 | Used g_slice_new instead of g_new. | Daniel Carl | |
2014-06-29 | Save settings in hash map. | Daniel Carl | |
2014-06-03 | Use g_return_*() function to avoid programming issues. | Daniel Carl | |
2014-06-03 | Moved char related macro to ascii.h. | Daniel Carl | |
2014-01-19 | Use message logging function instead of fprintf. | Daniel Carl | |
2014-01-11 | Change year in license block. | Daniel Carl | |
2013-11-02 | Fixed none remove file for editor command. | Daniel Carl | |
2013-10-06 | Allow utf8 for keybinds. | Daniel Carl | |
Used some key processing stuff from vim. | |||
2013-09-21 | Allow to bind also function keys. | Daniel Carl | |
2013-09-20 | Changed the way keys are processed. | Daniel Carl | |
Until today vimb mapped two-part keybindings to commands. This patch changed this paradigm into a more vi like way. The commands are separated into normal mode commands that mainly consists of a single char and ex commands that can by typed into the inputbox like ':open'. This change allows us to adapt also the way keypresses and mapping are handled. Now every keypress is converted into a unsigned char and collected into a typeahead queue. The mappings are applied on the queue. So now we can use also long keymaps and run multiple commands for different modes with them like ':nmap abcdef :set scripts!<CR>:open search query<CR>50G'. |