We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea95e55 commit 8e9bc64Copy full SHA for 8e9bc64
lib/snippets.js
@@ -218,7 +218,7 @@ module.exports = {
218
loadPackageSnippets (callback) {
219
const disabledPackageNames = atom.config.get('core.packagesWithSnippetsDisabled') || []
220
const packages = atom.packages.getLoadedPackages().sort((pack, _) => {
221
- return /\/app\.asar\/node_modules\//.test(pack.path) ? -1 : 1
+ return /\/node_modules\//.test(pack.path) ? -1 : 1
222
})
223
224
const snippetsDirPaths = []
0 commit comments