]> git.r.bdr.sh - rbdr/tree-sitter-api-notation/commitdiff
Use filetype instead of autocmd
authorRuben Beltran del Rio <redacted>
Wed, 4 Oct 2023 14:30:51 +0000 (16:30 +0200)
committerRuben Beltran del Rio <redacted>
Wed, 4 Oct 2023 14:30:51 +0000 (16:30 +0200)
lua/tree-sitter-api-notation.lua

index 184cb573548ab36bd7b02db27fc496bf9514985e..95d5bd558eba0568130fef05c0276136bb9a1f49 100644 (file)
@@ -12,9 +12,11 @@ function M.setup()
       branch = 'main'
     }
   }
-  vim.api.nvim_create_autocmd({'BufNewFile', 'BufRead'}, {
-    pattern = {'*.api', '*.apinotation'},
-    callback = function () vim.opt.filetype = 'api_notation' end
+  vim.filetype.add({
+    extension = {
+      api = 'api_notation',
+      apinotation = 'api_notation'
+    }
   })
 end