aboutsummaryrefslogtreecommitdiff
path: root/test/functional/options/keymap_spec.lua
Commit message (Collapse)AuthorAge
* test: use exec_capture() in more places (#22787)zeertzjq2023-03-26
| | | | | | | Problem: Using `meths.exec2("code", { output = true })` is too verbose. Solution: Use exec_capture() in more places.
* feat(api): nvim_exec2(), deprecate nvim_exec() #19032Evgeni Chasnovski2023-03-25
| | | | | | | Problem: The signature of nvim_exec() is not extensible per ":help api-contract". Solution: Introduce nvim_exec2() and deprecate nvim_exec().
* docs: fix typos (#20394)dundargoc2022-09-30
| | | | | Co-authored-by: Raphael <glephunter@gmail.com> Co-authored-by: smjonas <jonas.strittmatter@gmx.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
* test: correct order of arguments to eq() and neq()zeertzjq2022-04-26
|
* API: deprecate nvim_command_outputJustin M. Keyes2019-12-02
|
* Update documentationMatthew Malcomson2018-03-14
| | | | | | | | Update vim_diff.txt with :lmap differences, update documentation on 'keymap', and add tests. The tests added are to demonstrate the behaviour specified in the documentation of :loadkeymap.
* 'keymap' now uses :lmap instead of :lnoremapMatthew Malcomson2018-03-14
| | | | | | | This means that the major way that :lmap mappings are applied works as one would expect with macros. This also means that having a translation with 'keymap' does not preclude using mappings in insert mode with :imap.
* Split :lnoremap test into done and pendingMatthew Malcomson2018-03-14
| | | | | | | There is some behaviour that we keep with the recent changes, and some behaviour that we change. Instetad of having one failing test covering all behaviour, we split the test into two.
* :lnoremap mappings should not be remapped when replaying a recordingMatthew Malcomson2018-03-14
|
* Account for :lmap in macrosMatthew Malcomson2018-03-14
close #5652 Start by adding some tests