Tony Fettes
392cb7ac0c
fix(lsp): pass offset_encoding in formatexpr() ( #18084 )
2022-04-11 12:44:31 -07:00
zeertzjq
2dc86ef3b2
vim-patch:8.2.4733: HEEx and Surface do need a separate filetype
...
Problem: HEEx and Surface do need a separate filetype.
Solution: Revert 8.2.4729. (closes vim/vim#10147 )
https://github.com/vim/vim/commit/4232dff815db1a727cb1aea26783267d8bd731c3
2022-04-11 18:40:46 +08:00
Christian Clason
b438bb4343
vim-patch:8.2.4729: HEEx and Surface templates do not need a separate filetype ( #18065 )
...
Problem: HEEx and Surface templates do not need a separate filetype.
Solution: Use Eelixir for the similar filetypes. (Aaron Tinio, closes vim/vim#10124 )
https://github.com/vim/vim/commit/fa76a24109f3c3287e4ee17b6270bfd5310c12f3
2022-04-10 13:53:33 +02:00
Christian Clason
61bd5426f4
vim-patch:8.2.4721: cooklang files are not recognized ( #18058 )
...
Problem: Cooklang files are not recognized.
Solution: recognize *.cook files. (Goc Dundar, closes vim/vim#10120 )
https://github.com/vim/vim/commit/36951ed1dab2b2e816dc8959c72b5732f36d9e3b
2022-04-09 17:43:33 +02:00
Christian Clason
3280dc2b60
vim-patch:8.2.4720: ABB Rapid files are not recognized properly ( #18057 )
...
Problem: ABB Rapid files are not recognized properly.
Solution: Add checks for ABB Rapid files. (Patrick Meiser-Knosowski,
closes #10104 )
https://github.com/vim/vim/commit/b09c320039ad49e62d2e2d7f14ba47ee3ca0706a
2022-04-09 17:42:46 +02:00
Christian Clason
8055f9857b
vim-patch:8.2.4715: Vagrantfile not recognized ( #18052 )
...
Problem: Vagrantfile not recognized.
Solution: Recognize Vagrantfile as ruby. (Julien Voisin, closes vim/vim#10119 )
https://github.com/vim/vim/commit/5e1792270a072a96157e5d5e1d6a97414e26d0bf
2022-04-09 11:19:18 +02:00
Christian Clason
8c25dbff46
vim-patch:8.2.4708: PHP test files are not recognized ( #18025 )
...
Problem: PHP test files are not recognized.
Solution: Add the *.phpt pattern. (Julien Voisin, closes vim/vim#10112 )
https://github.com/vim/vim/commit/177847e67a495f80a15b6dfd0a3fcd151b44249e
2022-04-07 20:24:55 +02:00
Christian Clason
f85f4e25d2
vim-patch:8.2.4701: Kuka Robot Language files not recognized ( #18012 )
...
Problem: Kuka Robot Language files not recognized.
Solution: Recognize *.src and *.dat files. (Patrick Meiser-Knosowski,
closes vim/vim#10096 )
https://github.com/vim/vim/commit/3ad2090316edc85e93094bba7af64f9991cc7f85
2022-04-07 09:09:08 +02:00
Christian Clason
e45d141e28
vim-patch:8.2.4664: Elvish files are not recognized ( #17963 )
...
Problem: Elvish files are not recognized.
Solution: Recognize .elv files. (Bruno Roque, closes vim/vim#10058 )
https://github.com/vim/vim/commit/c1658a196bb05dd96562fd0a92409be2201b62e9
2022-04-02 13:36:19 +02:00
Lewis Russell
3cc29b7f0d
fix(keymap): don't coerce false to ''
2022-04-01 09:09:30 +01:00
bfredl
dc48330b9d
Merge pull request #17842 from lewis6991/keymap
...
feat(keymap): return nil from an expr keymap
2022-04-01 00:48:46 +02:00
Christian Clason
38ba2a75fc
vim-patch:8.2.4658: org-mode files are not recognized ( #17939 )
...
Problem: Org-mode files are not recognized.
Solution: Add patterns to recognize "org" files. (closes vim/vim#10046 )
https://github.com/vim/vim/commit/3a6f952cc87065a4cf1f6502b2054ba99fdf45ed
2022-03-31 22:16:25 +02:00
Christian Clason
2e85af47d2
feat(runtime): add query filetype ( #17905 )
...
used for Tree-sitter queries
uses Lisp runtime files
(in Lua to distinguish from upstream runtime files)
2022-03-31 08:46:45 -06:00
Gregory Anders
6d648f5594
feat(treesitter): add more default groups to highlight map ( #17835 )
...
This covers some default groups listed in :h group-name.
2022-03-30 22:14:20 +02:00
Andrea Cappuccio
a18c9ba2da
docs(lsp): remove outdated offset_encoding default value for apply_text_edits
2022-03-30 21:04:17 +02:00
Jaehwang Jung
4d3acd6beb
fix(lsp): use "text" filetype for plaintext ( #17898 )
2022-03-28 09:16:11 -07:00
Smitesh Patil
a8e2c45b94
fix(diagnostic): make open_float respect global diagnostic options ( #17879 )
...
* make `open_float` respect `scope` option set in `vim.diagnostic.config`
* Closes #17878
2022-03-27 08:10:03 -06:00
Jared Weakly
5e64d65df6
fix(filetype.lua): always return a string in getline helper function ( #17852 )
...
Uses of `getline` in `filetype.lua` currently assume it always returns a
string. However, if the buffer is unloaded when filetype detection runs,
`getline` returns `nil`. Fixing this prevents errors when filetype
detection is run on unloaded buffers.
2022-03-25 12:12:00 -06:00
Michael Lingelbach
69f1de86dc
feat: add vim.tbl_get ( #17831 )
...
vim.tbl_get takes a table with subsequent string arguments (variadic) that
index into the table. If the value pointed to by the set of keys exists,
the function returns the value. If the set of keys does not exist, the
function returns nil.
2022-03-24 12:01:04 -07:00
Lewis Russell
58140a9428
feat(keymap): return nil from an expr keymap
...
For Lua callback expr keymaps, returning `nil` or `false` is equivalent
to an empty string
2022-03-24 13:59:20 +00:00
bfredl
e7391191e2
Merge pull request #17776 from bfredl/tsconceal
...
feat(ui): allow conceal to be defined in decorations
2022-03-20 18:59:20 +01:00
Tim Pope
af427dedf6
fix(lsp): set tabSize from 'shiftwidth', not 'softtabstop' ( #17787 )
...
The use of 'softtabstop' to set tabSize was introduced in 5d5b068 ,
replacing 'tabstop'. If we look past the name tabSize and at the actual
purpose of the field, it's the indentation width used when formatting.
This corresponds to the Vim option 'shiftwidth', not 'softtabstop'.
The latter has the comparatively mundane purpose of controlling what
happens when you hit the tab key (and even this is incomplete, as it
fails to account for 'smarttab').
2022-03-20 10:41:46 -07:00
bfredl
6eca9b69c4
feat(ui): allow conceal to be defined in decorations
...
Unlike syntax conceal, change highlight of concealed char
Can be used in tree-sitter using "conceal" metadata.
2022-03-20 18:02:41 +01:00
dundargoc and zeertzjq
d238b8f600
chore: fix typos ( #17670 )
...
Co-authored-by: zeertzjq <zeertzjq@outlook.com >
2022-03-17 13:21:24 +08:00
Jade Lovelace
5a8bf31d32
vim-patch:8.2.4571: not all gdb files are recognized ( #17727 )
...
Problem: Not all gdb files are recognized.
Solution: Add a few more patterns for gdb.
(closes https://github.com/vim/vim/pull/9956 )
https://github.com/vim/vim/commit/8d5e514d77bd4b1956656ad2be2ce7094bd43a72
2022-03-15 22:46:32 +01:00
zeertzjq
e263afc0e9
fix(paste): escape control characters in Cmdline mode
2022-03-15 18:15:18 +08:00
zeertzjq
a6eafc77ce
fix(paste): deal with trailing new line in chunk
2022-03-15 18:15:18 +08:00
zeertzjq
fcc6f66cf2
fix(paste): avoid edges cases caused by empty chunk
2022-03-15 18:15:18 +08:00
zeertzjq
21ba2d81a8
refactor(paste): do not print dots in cmdline mode
2022-03-15 18:15:18 +08:00
zeertzjq
bfb7754442
fix(paste): deal with eol and eof in Visual mode
2022-03-15 18:15:18 +08:00
zeertzjq
2601e0873f
fix(paste): don't move cursor past the end of pasted text in Normal mode
2022-03-15 18:15:18 +08:00
zeertzjq
9b1e1fbc9f
fix(paste): use getcmdtype() to determine whether in cmdline mode
2022-03-15 18:15:18 +08:00
Charlie Groves
1dbf8675c7
fix(remote): respect silent in error reporting
2022-03-11 11:16:46 -05:00
Charlie Groves
29c3632285
fix(remote): report on missing wait commands, typecheck lua results
...
Clean up lint errors, too
2022-03-11 11:16:46 -05:00
Charlie Groves
039e94f491
test(remote): add tests for --remote
...
This also fixes a fair number of issues found in running the tests
2022-03-11 11:16:46 -05:00
Charlie Groves
5862176764
feat(remote): add basic --remote support
...
This is starting from @geekodour's work at
https://github.com/neovim/neovim/pull/8326
2022-03-11 11:16:46 -05:00
bfredl
6170574d2f
Merge pull request #17660 from bfredl/luacomplete
...
feat(lua): handle lazy submodules in `:lua vim.` wildmenu completion
2022-03-10 15:46:18 +01:00
a7b1c8893c
chore: fix typos ( #17331 )
...
Co-authored-by: Hongyi Lyu <hongyi.lyu95@gmail.com >
Co-authored-by: Gregory Anders <greg@gpanders.com >
Co-authored-by: notomo <notomo.motono@gmail.com >
Co-authored-by: zeertzjq <zeertzjq@outlook.com >
2022-03-10 14:34:55 +08:00
bfredl
5ed60804fe
feat(lua): handle lazy submodules in :lua vim. wildmenu completion
2022-03-09 15:25:06 +01:00
bfredl
f39a12d629
refactor(lua): make vim submodule lazy loading declarative
...
This will allow us to also use the same logic for lua threads and
processes, later.
2022-03-07 09:59:22 +01:00
Michael Lingelbach
3800615da9
fix(lsp): handle insertion of previous line ( #17618 )
2022-03-06 07:52:11 -08:00
zeertzjq
80e6f81862
docs(lua): reference runtime/lua/vim/_editor.lua
2022-03-06 22:32:22 +08:00
bfredl
2de4d3c7ac
Merge pull request #17603 from bfredl/luaworld
...
refactor(lua): move only runtime lua file in src/ to runtime/lua
2022-03-05 19:21:34 +01:00
Michael Lingelbach
a5e475fcc2
fix(lsp): start incremental sync range at previous newline character ( #17610 )
...
This change forces the start of an incremental sync range to begin always on an existing line.
2022-03-05 09:17:56 -08:00
bfredl
186a559818
refactor(lua): move only runtime lua file in src/ to runtime/lua
...
reorganize so that initialization is done in lua
2022-03-04 19:07:42 +01:00
bfredl
f9faba88fd
refactor(lua): reorganize builtin modules, phase 1
2022-03-03 20:03:30 +01:00
David Shen
5d6006f9bf
feat(diagnostic): add "code" to the diagnostic structure ( #17510 )
2022-03-02 18:42:27 -07:00
Tim Pope
d477788cd5
fix(lsp): respect all of 'fixeol', 'eol', and 'binary' applying edits ( #17574 )
2022-03-02 11:33:02 -08:00
bfredl
c65d93e60a
Merge pull request #16969 from shadmansaleh/enhance/ingore_nore_on_plug_keymaps
...
feat: ignore nore on <Plug> maps
2022-02-27 16:47:55 +01:00
shadmansaleh
c031e038df
chore: remove <Plug> detection from vim.keymap
2022-02-27 08:21:21 +06:00