From 296ff541e7cfbd7fd6c721566328e2f38a91a99d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 24 Jan 2025 13:59:37 -0800 Subject: [PATCH] oni-js: Consider .vue files to be JS files for searching --- oni-js.el | 4 ++-- 1 file 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 ;; 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