mads kjeldgaard
d4c645c4d9
recurse_local_nodes: type check local_def to ensure it is a table ( #1331 )
2021-07-21 16:31:55 -05:00
Simon Hauser
e473630fe0
fix: make additional_vim_regex_highlighting actually accept a list
2021-07-20 09:36:22 +02:00
GitHub
091462592f
Update lockfile.json
2021-07-20 08:54:56 +02:00
Stephan Seitz
182efd525c
injections(cuda): add injections.scm
2021-07-20 08:32:58 +02:00
Stephan Seitz
c4a6d93408
highlights(cuda): add support for __launch_bounds__
2021-07-20 08:32:34 +02:00
GitHub
61e87b2f9c
Update lockfile.json
2021-07-19 23:49:33 +02:00
Stephan Seitz
f5c318f341
Change install command on Mac
...
Fixes #1600
2021-07-19 21:28:32 +00:00
David Hotham
368a016c15
YANG fold on blocks
2021-07-19 20:22:00 +00:00
Duarte OC
eccf3eb014
Update README.md
2021-07-19 19:56:42 +00:00
Duarte OC
b8408203b8
Updated TSInstall example command.
...
When getting set up, the current instructions make me think I have to write `:TSInstall {'python'}`, when the correct command is `TSInstall python`
Let me know if this makes sense 😄
2021-07-19 19:56:42 +00:00
Laurence Tratt
37a220526d
"-z" needs to come before "-f".
2021-07-19 21:51:33 +02:00
Laurence Tratt
968ce80c99
Add -z switch to tar.
...
Some versions of tar automatically infer `-z` if a `.gz` (or other compressed
extension) file is passed -- but some, including OpenBSD's, don't do this and
require an explicit `-z`. As far as I know, any version of tar which
automatically unzips files supports `-z` so this should be a backwards
compatible change for most versions of tar.
2021-07-19 21:51:33 +02:00
GitHub
f12790c5d7
Update lockfile.json
2021-07-19 21:50:26 +02:00
26797767+krnik
8df19b91ad
Update transferred fish repo info
2021-07-19 21:27:07 +02:00
Thomas Vigouroux
20b5dd9893
docs: notify about 0.5-compat in the readme
2021-07-19 21:12:54 +02:00
Oliver Marshall
17cf76de8a
Don't capture quotes as comments
2021-07-19 16:24:01 +00:00
Oliver Marshall
036e88b94a
Remove last @a
2021-07-19 16:24:01 +00:00
Oliver Marshall
e0ecd61046
Remove docstring highlights
2021-07-19 16:24:01 +00:00
Oliver Marshall
2bba92dfb0
Use ignored capture groups
2021-07-19 16:24:01 +00:00
Oliver Marshall
de5641a246
Improve some comments
2021-07-19 16:24:01 +00:00
Oliver Marshall
39d0b9b61b
Improve highlights for types
2021-07-19 16:24:01 +00:00
Oliver Marshall
dd75916ef9
Remove constant highlighting
2021-07-19 16:24:01 +00:00
Oliver Marshall
9d1fe26b4d
Add forgotten annon function highlight
2021-07-19 16:24:01 +00:00
Oliver Marshall
89a3dffd8d
Add header comment
2021-07-19 16:24:01 +00:00
Oliver Marshall
78190687be
Add some todos
2021-07-19 16:24:01 +00:00
Oliver Marshall
2403f3a8de
Add context based highlighting for def, defn & ns
2021-07-19 16:24:01 +00:00
Oliver Marshall
1099809d70
Revamp the symbol highlighting
2021-07-19 16:24:01 +00:00
Oliver Marshall
54e4a59fa7
Move meta punctuation
2021-07-19 16:24:01 +00:00
Oliver Marshall
e5ba6de3a3
Simplify
2021-07-19 16:24:01 +00:00
Oliver Marshall
4390cbffd5
Add some comments & TODOs
2021-07-19 16:24:01 +00:00
Oliver Marshall
336206e380
First pass at def-likes
2021-07-19 16:24:01 +00:00
Oliver Marshall
91e0fc6719
Match % variables
2021-07-19 16:24:01 +00:00
Oliver Marshall
8219dbbdbe
Add more operators
2021-07-19 16:24:01 +00:00
Oliver Marshall
a9863864a8
Add some TODOs
2021-07-19 16:24:01 +00:00
Oliver Marshall
e26009b7f4
Highlight splicing operators
2021-07-19 16:24:01 +00:00
Oliver Marshall
2c67ca51a5
All the other stuff, includes:
...
- Changing huge 'match's to 'any-of's
- Roughly organising the queries into sections
- Add some TODOs for more improvements
- Comment out def-like and call queries as they overlap too much
- Change the captures to use better (imo) groups
- Make with-.* and when-.* always highlight like a builtin
2021-07-19 16:24:01 +00:00
Oliver Marshall
5885256549
Reorganise slightly
2021-07-19 16:24:01 +00:00
Tomas Sandven
a6121f014d
Add YANG parser
2021-07-19 16:03:27 +00:00
Khue Doan
a7c90103ce
Use terraform ft for tf and tfvars
2021-07-19 09:32:43 +00:00
Khue Doan
8cb355beb4
Support HCL file type detection
2021-07-19 09:32:43 +00:00
Thomas Vigouroux
11801ddc9f
feat(mergify): delay mergify merging by one day
2021-07-19 11:03:13 +02:00
GitHub
9144ea1107
Update lockfile.json
2021-07-18 20:00:46 +02:00
Thomas Vigouroux
647f81638e
fix: only automerge when then is two approvals
2021-07-18 19:24:57 +02:00
Thomas Vigouroux
6dc6a68aca
fix(mergify): only merge when there is no review requests
2021-07-18 19:24:57 +02:00
Andrew He
50af926d81
Folds: remove ending marks for folds; they only confuse vim when multiple closes on the same line are expected
2021-07-18 16:57:57 +00:00
Gregory Anders
27f5e99cdd
c: don't treat uppercase functions as constants
...
A macro function such as
#define FOO(x) ...
should be highlighted with @function.macro, even though the name is in
all-caps (which would otherwise be treated as a constant). Similarly,
call sites of such functions, e.g.
int y = FOO(x);
should be highlighted with @function instead of @constant.
This is as simple as moving the query definition for macro functions
after the query definition for constants.
2021-07-18 16:44:40 +00:00
Łukasz Niemier
21a7f61b06
fix(elixir): add missing possible parameters
2021-07-18 16:44:35 +00:00
Santos Gallegos
9be9ebda0a
Re-attach module when the file type is changed
...
Requires https://github.com/neovim/neovim/pull/14995
Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1249
2021-07-18 16:44:25 +00:00
Thomas Vigouroux
74d1d58572
ci(mergify): don't use queues
2021-07-18 18:43:45 +02:00
Thomas Vigouroux
e88f154dc4
ci(Mergify): configuration update
2021-07-18 18:30:56 +02:00