mads kjeldgaard
64ea6cd46f
recurse_local_nodes: type check local_def to ensure it is a table ( #1331 )
2021-09-17 21:06:36 +02:00
Simon Hauser
ada52fe561
fix: make additional_vim_regex_highlighting actually accept a list
2021-09-17 21:06:36 +02:00
GitHub
60441706ee
Update lockfile.json
2021-09-17 21:06:36 +02:00
Stephan Seitz
3f5d554f68
injections(cuda): add injections.scm
2021-09-17 21:06:36 +02:00
Stephan Seitz
af63aa17d4
highlights(cuda): add support for __launch_bounds__
2021-09-17 21:06:36 +02:00
GitHub
bdf740565c
Update lockfile.json
2021-09-17 21:06:36 +02:00
Stephan Seitz
764eec1617
Change install command on Mac
...
Fixes #1600
2021-09-17 21:06:36 +02:00
David Hotham
7d5becca27
YANG fold on blocks
2021-09-17 21:06:36 +02:00
Duarte OC
bd2129ea0e
Update README.md
2021-09-17 21:06:36 +02:00
Duarte OC
6749dc7332
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-09-17 21:06:36 +02:00
Laurence Tratt
da86014e1f
"-z" needs to come before "-f".
2021-09-17 21:06:36 +02:00
Laurence Tratt
6b0179cba6
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-09-17 21:06:36 +02:00
GitHub
cfc24d9673
Update lockfile.json
2021-09-17 21:06:36 +02:00
26797767+krnik
f8e17e74a5
Update transferred fish repo info
2021-09-17 21:06:36 +02:00
Thomas Vigouroux
2b4ab852bf
docs: notify about 0.5-compat in the readme
2021-09-17 21:06:36 +02:00
Oliver Marshall
d569c542cd
Don't capture quotes as comments
2021-09-17 21:06:36 +02:00
Oliver Marshall
4d61d5f114
Remove last @a
2021-09-17 21:06:36 +02:00
Oliver Marshall
c810888952
Remove docstring highlights
2021-09-17 21:06:36 +02:00
Oliver Marshall
f7aebc15a1
Use ignored capture groups
2021-09-17 21:06:36 +02:00
Oliver Marshall
cc8e5caaba
Improve some comments
2021-09-17 21:06:36 +02:00
Oliver Marshall
f68cf9e793
Improve highlights for types
2021-09-17 21:06:36 +02:00
Oliver Marshall
d562ffcab9
Remove constant highlighting
2021-09-17 21:06:36 +02:00
Oliver Marshall
6641eee7a7
Add forgotten annon function highlight
2021-09-17 21:06:36 +02:00
Oliver Marshall
c9209f8a2c
Add header comment
2021-09-17 21:06:36 +02:00
Oliver Marshall
d6aae5a7d2
Add some todos
2021-09-17 21:06:36 +02:00
Oliver Marshall
36964190f2
Add context based highlighting for def, defn & ns
2021-09-17 21:06:36 +02:00
Oliver Marshall
16a06b30c2
Revamp the symbol highlighting
2021-09-17 21:06:36 +02:00
Oliver Marshall
b8b0da006b
Move meta punctuation
2021-09-17 21:06:36 +02:00
Oliver Marshall
0cf75fd96d
Simplify
2021-09-17 21:06:36 +02:00
Oliver Marshall
99185fcf7d
Add some comments & TODOs
2021-09-17 21:06:36 +02:00
Oliver Marshall
5b5b55f8ed
First pass at def-likes
2021-09-17 21:06:36 +02:00
Oliver Marshall
da360bfd04
Match % variables
2021-09-17 21:06:36 +02:00
Oliver Marshall
7882600caa
Add more operators
2021-09-17 21:06:36 +02:00
Oliver Marshall
31c54c5048
Add some TODOs
2021-09-17 21:06:36 +02:00
Oliver Marshall
19b6a84089
Highlight splicing operators
2021-09-17 21:06:36 +02:00
Oliver Marshall
171082600e
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-09-17 21:06:36 +02:00
Oliver Marshall
688ec2f6a0
Reorganise slightly
2021-09-17 21:06:36 +02:00
Tomas Sandven
f6c6d0d947
Add YANG parser
2021-09-17 21:06:36 +02:00
Khue Doan
93d7d536d1
Use terraform ft for tf and tfvars
2021-09-17 21:06:36 +02:00
Khue Doan
1311dbeea2
Support HCL file type detection
2021-09-17 21:06:36 +02:00
Thomas Vigouroux
a9a76a6970
feat(mergify): delay mergify merging by one day
2021-09-17 21:06:36 +02:00
GitHub
cd5d1ea9f6
Update lockfile.json
2021-09-17 21:06:36 +02:00
Thomas Vigouroux
7d00a39466
fix: only automerge when then is two approvals
2021-09-17 21:06:36 +02:00
Thomas Vigouroux
97f15c5c85
fix(mergify): only merge when there is no review requests
2021-09-17 21:06:36 +02:00
Andrew He
c8b32028bc
Folds: remove ending marks for folds; they only confuse vim when multiple closes on the same line are expected
2021-09-17 21:06:36 +02: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