Commit graph

3075 commits

Author SHA1 Message Date
Github Actions
39cc1be202 Update README 2022-10-03 10:14:00 +02:00
gbprod
179a06bc8b style: fix code styling according to Stylua 2022-10-03 10:06:41 +02:00
gbprod
d8a695a1ac Introduce twig parser
This commit introduce parser, highlights and injections for the
[twig syntax](https://twig.symfony.com)
2022-10-03 10:06:41 +02:00
GitHub
7ce47ddf52 Update lockfile.json 2022-10-03 09:04:11 +02:00
Christian Clason
8e763332b7 fix(test): update tests to Nvim 0.8 2022-10-02 09:29:34 -04:00
GitHub
28f5458424 Update lockfile.json 2022-10-02 09:15:28 -04:00
Jędrzej Boczar
e2efbb6569 docs: add example of how to use function to disable a module 2022-10-01 22:46:51 -04:00
GitHub
aebc6cf6bd Update lockfile.json 2022-09-30 13:49:00 +02:00
GitHub
bb40c986ac Update lockfile.json 2022-09-30 13:41:08 +02:00
Stephan Seitz
9bfaf62e42 ci: relax check for valid captures (only check prefixes) 2022-09-29 09:06:50 +02:00
Github Actions
c466ffd860 Update README 2022-09-29 09:03:23 +02:00
GitHub
5ad8b285d8 Update lockfile.json 2022-09-29 08:54:12 +02:00
Christian Clason
5f6f866c86 update vimdoc parser and queries 2022-09-29 08:41:42 +02:00
Stephan Seitz
27cba73df9 indents(wgsl): add indents.scm 2022-09-28 19:25:07 -04:00
Jade Lovelace
aa736f5f36 haskell/highlights: Match pattern as a keyword
Sample:
-- | Smart constructor that deduplicates plugins
pattern IdePlugins :: [PluginDescriptor ideState] -> IdePlugins ideState
pattern IdePlugins{ipMap} <- IdePlugins_ (sortOn (Down . pluginPriority) . HashMap.elems -> ipMap) _
  where
    IdePlugins ipMap = IdePlugins_{ipMap_ = HashMap.fromList $ (pluginId &&& id) <$> ipMap
                                  , lookupCommandProvider = lookupPluginId ipMap
                                  }
2022-09-27 21:38:16 -04:00
ShootingStarDragons
0289160c96 feat(slint): <=> operator
Slint have support <=> operator, so add this for highlight,

Next time when lockfile.json is update, then merge this one

Log: slint
2022-09-26 23:55:10 -04:00
Laytan Laats
4303c1af69 highlights(php): add spell 2022-09-26 23:23:21 +01:00
Lewis Russell
37398c7d68 feat(spell): support more languages 2022-09-26 13:47:12 +01:00
GitHub
d712b1bed1 Update lockfile.json 2022-09-26 09:20:06 +02:00
GitHub
3b790e7657 Update lockfile.json 2022-09-25 10:54:10 +02:00
GitHub
a60aa7b2e1 Update lockfile.json 2022-09-24 10:35:57 +02:00
GitHub
34a8ff99ba Update lockfile.json 2022-09-24 10:26:04 +02:00
Erik Westrup
26105050aa
feat(comment): highlight NOTE as @text.note (#3537) 2022-09-23 17:52:00 +00:00
GitHub
ebea89483d Update lockfile.json 2022-09-23 09:25:25 +02:00
Christian Clason
a52cbe0951 ci(lint): update stylua-actions 2022-09-23 09:14:05 +02:00
Github Actions
8ec59aee80 Update README 2022-09-20 09:14:11 +02:00
ObserverOfTime
9e897d7c74 chore(pug): mark as experimental 2022-09-20 09:01:40 +02:00
GitHub
dc621c0bd7 Update lockfile.json 2022-09-19 17:22:53 +02:00
Null Chilly
1a85a335c2 fix(highlight): respect g:skip_ts_default_groups on ColorScheme autocmd 2022-09-19 17:12:40 +02:00
Tobias Frilling
b92535f045 highlights(elvish): Use @function.builtin for operator-like functions
Elvish uses prefix notation even for mathematical operators (i.e. `<= 1 2 3 4`),  so these should be considered functions.
2022-09-19 17:11:30 +02:00
GitHub
17563f4699 Update lockfile.json 2022-09-19 09:13:56 +02:00
GitHub
539bed2f44 Update lockfile.json 2022-09-18 11:22:12 +02:00
GitHub
8689f61270 Update lockfile.json 2022-09-17 10:33:51 +02:00
GitHub
5d913936ad Update lockfile.json 2022-09-17 10:11:59 +02:00
GitHub
088dfbc54a Update lockfile.json 2022-09-16 09:15:49 +02:00
Nick Friday
ba752cee13 fix(ecma injections): jsdoc match /** */ only 2022-09-15 15:41:18 -07:00
GitHub
6d486212ed Update lockfile.json 2022-09-15 09:14:50 +02:00
GitHub
cd9dfc1e48 Update lockfile.json 2022-09-14 08:31:20 +02:00
Matthias Queitsch
3aef8d60ae highlights(sql): remove grouped keyword 2022-09-14 08:22:21 +02:00
Matthias Queitsch
8e85ac1511 update sql lockfile 2022-09-14 08:22:21 +02:00
Matthias Queitsch
1c384edc57 highlights(sql): removed duplicate keywords, added new keyword, hashing
as function.calls
2022-09-14 08:22:21 +02:00
GitHub
5891e2e160 Update lockfile.json 2022-09-13 09:22:34 +02:00
Lewis Russell
2eaf188269 fix(fold): don't include whitespace end regions
Some languages that are difficult to parse via Treesitter may
incorrectly include whitespace lines at the end of regions. This can
makes the calculated folds sub-optimal.

To recitfy, use a custom directive (trim), to calculate the range with
the trailing whitespace lines removed. Note this only works if the
region end column is 0.

Also added folds for Make.
2022-09-12 11:49:51 +01:00
GitHub
2bc82e814b Update lockfile.json 2022-09-12 12:20:01 +02:00
Github Actions
8dcaff2eee Update README 2022-09-12 12:09:49 +02:00
Lewis Russell
c836f946a9 highlights(lua): add spell 2022-09-12 11:02:35 +01:00
Gabriele Musco
3c2d63c118 parsers: add blueprint parser 2022-09-12 10:54:58 +01:00
GitHub
c42812ecc7 Update lockfile.json 2022-09-12 09:20:29 +02:00
Matthieu Coudron
965a74f76a build: add a rockspec
so that users can install this via luarocks
2022-09-11 04:52:04 -07:00
Omar Zeghouani
05a07e6e34 Add spell query 2022-09-11 04:21:53 -07:00