| Commit message (Collapse) | Author | Age |
|\
| |
| | |
test: move two mapping tests to ex_cmds/map_spec.lua
|
|/ |
|
|
|
|
|
| |
--clean is supposed to emulate a "fresh install" and since Neovim
enables filetype detection and syntax highlighting by default, these
should be enabled when using --clean as well.
|
|\ |
|
|/
|
|
| |
The oltests hang on windows, making all CI runs fail.
|
|\
| |
| | |
refactor: remove unused K_AUCMD_SPECIAL
|
| | |
|
|\ \
| | |
| | | |
feat(lua): add :verbose support for lua config
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
`:verbose` didn't work properly with lua configs (For example:
options or keymaps are set from lua, just say that they were set
from lua, doesn't say where they were set at.
This fixes that issue. Now `:verbose` will provide filename and line no
when option/keymap is set from lua.
Changes:
- compiles lua/vim/keymap.lua as vim/keymap.lua
- When souring a lua file current_sctx.sc_sid is set to SID_LUA
- Moved finding scripts SID out of `do_source()` to `get_current_script_id()`.
So it can be reused for lua files.
- Added new function `nlua_get_sctx` that extracts current lua scripts
name and line no with debug library. And creates a sctx for it.
NOTE: This function ignores C functions and blacklist which
currently contains only vim/_meta.lua so vim.o/opt wrappers aren't
targeted.
- Added function `nlua_set_sctx` that changes provided sctx to current
lua scripts sctx if a lua file is being executed.
- Added tests in tests/functional/lua/verbose_spec.lua
- add primary support for additional types (:autocmd, :function, :syntax) to lua verbose
Note: These can't yet be directly set from lua but once that's possible
:verbose should work for them hopefully :D
- add :verbose support for nvim_exec & nvim_command within lua
Currently auto commands/commands/functions ... can only be defined
by nvim_exec/nvim_command this adds support for them. Means if those
Are defined within lua with vim.cmd/nvim_exec :verbose will show their
location . Though note it'll show the line no on which nvim_exec call was made.
|
| | | |
|
|\ \ \
| |_|/
|/| | |
docs: clarify actual behavior of <Plug>
|
|/ / |
|
|\ \
| | |
| | | |
feat(lua_autocmd): episode III (the autocmds strike back)
|
|/ /
| |
| |
| | |
Note: some of these changes are breaking, like change of API signatures
|
|\ \
| | |
| | | |
fix(api): convert blob to NUL-terminated API string
|
| | |
| | |
| | |
| | |
| | | |
Looks like I did an oopsie; although API strings carry a size field, they should
still be usable as C-strings! (even though they may contain embedded NULs)
|
|\ \ \
| |_|/
|/| | |
test: correct emmylua annotations
|
| | |
| | |
| | |
| | | |
This will fix the warnings sumneko language server outputs.
|
|\ \ \
| | | |
| | | | |
Fix fedora broken link
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
The link to the neovim fedorapackage.org in the README.md was broken.
Signed-off-by: Rodolfo Olivieri <rodolfo.olivieri3@gmail.com>
|
|\ \ \
| | | |
| | | | |
lua: autocmds take 2: electric autoroo
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | | |
Works similar to ex <f-args>. It only splits the arguments if the
command has more than one posible argument. In cases were the command
can only have 1 argument opts.fargs = { opts.args }
|
|\ \ \
| | | |
| | | | |
feat: ignore nore on <Plug> maps
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
ci(lint): use bundled luv until system packages are updated
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
This is required for the recent addition of lua loop threading
(luv_set_thread).
|
| | | |
| | | |
| | | |
| | | | |
Update runtime files.
https://github.com/vim/vim/commit/c51cf0329809c7ae946c59d6f56699227efc9d1b
|
|\ \ \ \
| | | | |
| | | | | |
support threads in lua
|
| | | | | |
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
vim-patch:8.1.2336,8.2.{4338,4401}: mapping cursor and redrawing patches
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: Map listing does not clear the rest of the command line.
Solution: Call msg_clear_eos(). (closes vim/vim#5623, closes vim/vim#5962)
https://github.com/vim/vim/commit/d288eaad846f0e07e0141226f97d858dcf96cb78
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add tests for:
- Cursor position restored after :map expr
- Cursor position restored after :imap expr
- Error in :cmap expr handled correctly
Cherry-picked from #12837
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: An error from an expression mapping messes up the display.
Solution: When the expression results in an empty string return K_IGNORE.
In cmdline mode redraw the command line. (closes vim/vim#9726)
https://github.com/vim/vim/commit/74a0a5b26d0180f3ea89e9495dff6a26f0df23cb
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: When an expr mapping moves the cursor it is not restored.
Solution: Position the cursor after an expr mapping. (closes vim/vim#5256)
https://github.com/vim/vim/commit/4ebe0e62d097d68c5312f9c32714fb41a4c947a3
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
dundargoc/refactor/coverity/big-parameter-passed-by-value
|
| | | | | |
|
|\ \ \ \ \ |
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
feat(hardcopy): check gui colours for highlights first
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously, :hardcopy would only use terminal highlight colours, with a
fixed mapping table, despite internally supporting true colour. This
patch looks at the guifg colour first while coming up with the printing
highlight colours, then falls back to the terminal ones.
I have passed through the modec argument in this change because it was
there before, but it could be deleted and hardcoded to 'c' since nobody
sets it to anything else anywhere.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ci: add timeout to all jobs
|
|/ / / / / |
|