Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Mark some functional tests as pending in Windows | Rui Abreu Ferreira | 2016-08-26 |
| | |||
* | functests: Check logs in lua code | ZyX | 2016-06-10 |
| | | | | | | It is otherwise impossible to determine which test failed sanitizer/valgrind check. test/functional/helpers.lua module return was changed so that tests which do not provide after_each function to get new check will automatically fail. | ||
* | keymap: Support <D-...> (super/command key). | Justin M. Keyes | 2016-02-22 |
| | | | | | | | | | | | | | | | | | | | | Adds support for: - api:vim_input("<D-a>") - ":nnoremap <C-D-S-...>" and permutations thereof UIs must capture the modifier and send it as "<D-...>" to vim_input(). Note: Before this commit, any arbitrary ":nnoremap <{foo}-{bar}>" mapping could already be invoked with feedkeys("\<{foo}-{bar}>"). This commit supports "D-" as a modifier that can be combined with "C-", "A-", "S-" in any order. For non-GUI (terminal) support, user must: :set <D-a>={CSI sequence} then send the {CSI sequence} from their terminal. But this does not work yet (regression #2204). Closes #2190 | ||
* | test/functional: clean up according to luacheck (part 1) | Marco Hinz | 2015-11-23 |
| | |||
* | tui: Don't use 'pastetoggle' for automatic pasting | Thiago de Arruda | 2015-10-01 |
| | | | | | | | Add a new special key that can be used by UIs to toggle the 'paste' option and use it in the TUI instead of the user's 'pastetoggle' value. Close #2843 #2092 | ||
* | input: Escape utf8 sequences that contain CSI/K_SPECIAL | Thiago de Arruda | 2015-02-18 |
| | |||
* | test: Add screen test facility | Thiago de Arruda | 2014-12-09 |
- Add screen.lua which implements a remote screen to verify screen state by tests under functional/ui - Add some basic screen/highlight tests |