Skip to content

Commit 314f8b1

Browse files
committed
feat: import files with drag and drop from tree-view
1 parent 60fc8f4 commit 314f8b1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ JavaScript support for Atom IDE.
1313
- Autocomplete
1414
- Linting (TypeScript, Eslint, etc)
1515
- Type information on hover
16-
- Goto Declaration
16+
- Goto Declaration / Hyperclick
1717
- Find References
18-
- Semantic view
18+
- Outline view and Semantic view
1919
- Block comment and uncomment
2020
- Rename refactoring
21+
- Autocomplete paths
22+
- Automatically import files by drag and drop from the tree view
2123
- Common Snippets
2224
- Alternative to symbols-view
2325

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"atom-ide-base",
6464
"atom-typescript",
6565
"linter-eslint",
66-
"autocomplete-paths"
66+
"autocomplete-paths",
67+
"javascript-drag-import"
6768
]
6869
}

spec/benchmark-spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ describe("Benchmark", () => {
1111
"atom-ide-base",
1212
"atom-typescript",
1313
"linter-eslint",
14-
"autocomplete-paths"
14+
"autocomplete-paths",
15+
"javascript-drag-import"
1516
];
1617
deps.forEach(async p => await atom.packages.activatePackage(p))
1718

src/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ async function package_deps() {
2626
"atom-ide-base",
2727
"atom-typescript",
2828
"linter-eslint",
29-
"autocomplete-paths"
29+
"autocomplete-paths",
30+
"javascript-drag-import"
3031
];
3132
if (deps.some((p) => !atom.packages.isPackageLoaded(p))) {
3233
await import("atom-package-deps").then((atom_package_deps) => {

0 commit comments

Comments
 (0)