aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-01-24 13:59:37 -0800
committerGravatar Tom Willemse2025-01-24 13:59:37 -0800
commit296ff541e7cfbd7fd6c721566328e2f38a91a99d (patch)
tree20b2e8b3554c6856e2305b82ab601e5cebc36709
parent4121bdb89c1d83949cc368bf81998887b6678168 (diff)
downloademacs-config-296ff541e7cfbd7fd6c721566328e2f38a91a99d.tar.gz
emacs-config-296ff541e7cfbd7fd6c721566328e2f38a91a99d.zip
oni-js: Consider .vue files to be JS files for searching
-rw-r--r--oni-js.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/oni-js.el b/oni-js.el
index 757353c..9c07650 100644
--- a/oni-js.el
+++ b/oni-js.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.1129.232529
+;; Version: 2025.0124.135906
;; Package-Requires: (oni-company js2-mode js2-refactor oni-flycheck fic-mode rjsx-mode)
;; This program is free software; you can redistribute it and/or modify
@@ -76,7 +76,7 @@
;;;###autoload
(with-eval-after-load 'grep
- (add-to-list 'grep-files-aliases '("js" . "*.js *.jsx *.json")))
+ (add-to-list 'grep-files-aliases '("js" . "*.js *.jsx *.json *.vue")))
(provide 'oni-js)
;;; oni-js.el ends here