ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Import​Helper

by unlight ST3

A Sublime Text Plugin that helps you to import your modules.

Details

Installs

  • Total 11K
  • Win 4K
  • Mac 4K
  • Linux 3K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 1 2 0 1 1 0 2 0 4 3 0 0 0 1 2 1 0 1 1 0 2 1 1 0 0 0 0 0 0 4 1 1 0 0 0 0 1 0 1 1 0 0 1 0 1
Mac 0 0 1 1 1 0 0 0 0 0 0 1 1 3 0 0 0 0 0 0 0 0 2 1 0 0 0 0 2 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1
Linux 0 0 0 0 0 0 1 2 0 0 0 0 1 0 1 0 1 0 1 1 0 3 0 2 0 0 1 0 2 0 0 0 0 2 0 3 0 0 0 0 1 0 0 0 1 0

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:

  1. Project file
  2. Plugin file settings
  3. 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 .