ImportHelper
A Sublime Text Plugin that helps you to import your modules.
Details
Installs
- Total 11K
- Win 5K
- Mac 4K
- Linux 3K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 2 | 1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 7 |
Readme
- Source
- raw.githubusercontent.com
sublime-import-helper
A Sublime Text Plugin that helps you to import your modules.
Supported Languages
- TypeScript
- JavaScript (ES2015)
Requirements
- Node.JS 12.0+
Installation
PackageControl
- Select
Package Control: Install Package
from command palette - Select
ImportHelper
Manual Installation
You can install sublime-import-helper
manually using git by running the following command
within sublime packages directory (Preferences > Browse Packages):
git clone https://github.com/unlight/sublime-import-helper ImportHelper
Install Old version
Check https://github.com/unlight/sublime-import-helper/releases page,
dowload source code archive, unzip to Data/Packages/ImportHelper
.
Or you can use git, see like in manual installation:
git clone https://github.com/unlight/sublime-import-helper ImportHelper
cd ImportHelper
git checkout -f v2.3.2
Usage
Initialize / Setup / Update modules
- Restart plugin - update node_modules, source modules
Insert import
- Set cursor or select word
- Press
ctrl+alt+i
, or select the command from command palette
List imports
- Press
alt+i, alt+l
, or select the command from command palette
Update source modules
- Press
alt+i, alt+s
, or select the command from command palette
Import from clipboard
- Copy text to clipboard
ctrl+c
- Press
alt+i, alt+k
, or select the command from command palette
Screenshots
Settings
There are some several configuration settings. Open plugin settings file by opening in menu:
Preferences -> Package Settings -> Import Helper
Also, there are some optional project specific settings.
The precedence of getting of value of setting is following:
- Project file
- Plugin file settings
- Default settings
from_quote
What kind of quotes will be used in import statement.
- Type:
string
- Default:
'
no_semicolon
Remove semicolon at the end of import
string.
- Type:
boolean
- Default:
false
insert_space_in_braces
Insert space after opening and before closing non empty braces.
- Type:
boolean
- Default:
true
node_bin
Sometimes sublime cannot find node executable, if it happens. Set node_bin
explicitly (e.g. c:/nodejs/node.exe)
- Type:
string
- Default: '' (auto detect)
import_path_mapping
How to apply path mapping (read more about Module Resolution and Path Mapping).
If enabled
implementation will try to find first matching alias.
- Type:
string
- Enum:
['disabled', 'enabled']
- Default:
enabled
autocomplete_export_names
Show all possible export names from sources and node modules in autocomplete menu.
- Type:
boolean
- Default:
true
autocomplete_auto_import
Automatically add import statement if export name was selected from autocomplete menu (Ctrl + Space).
Requires autocomplete_export_names: true
.
- Type:
boolean
- Default:
false
remove_trailing_index
Remove index suffix ending in file path
- Type:
boolean
- Default:
true
import_root
(project file only)
Path to your project root folder (not source folder). If not set,
tries automatically detect. For single souce folder folders[0].path
will be used,
for serveral source folders common path will be used.
import_file_extension
Option what to do with file extension in import statement.
- Type:
string
- Default:
remove
Options:
-
remove
js/ts/jsx/tsx extension will be removed -
js
js/ts/jsx/tsx will be replaced to js -
as_is
will stay as is
Example of settings in project file:
Example of project file:
{
"import_root": ".",
"from_quote": "'",
"folders": [
{
"path": "."
}
]
}
Notes for No imports found for ...
message
Looks like you do not have opened folders in current Sublime window.
It is recommended to create project from your working files and folders, you can do it in top menu:
Project -> Save project as...
Save project file in any place you want.
Then restart Sublime.
Currently, it is not posssible to detect when project was switched (Project -> Quick Switch Project),
in this case you need manually re-initialize plugin:
Select Import Helper: Initialize / Setup / Update modules
from command palette
Dev Notes
sublime.log_input(True); sublime.log_commands(True); sublime.log_result_regex(True)
sublime.log_input(False); sublime.log_commands(False); sublime.log_result_regex(False)
python3 -m black .