Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ChristianKohler/PathIntellisense
Visual Studio Code plugin that autocompletes filenames
https://github.com/ChristianKohler/PathIntellisense
Last synced: 16 days ago
JSON representation
Visual Studio Code plugin that autocompletes filenames
- Host: GitHub
- URL: https://github.com/ChristianKohler/PathIntellisense
- Owner: ChristianKohler
- License: mit
- Created: 2016-04-16T21:06:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T11:24:19.000Z (5 months ago)
- Last Synced: 2024-08-01T05:24:17.816Z (3 months ago)
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense
- Size: 1.08 MB
- Stars: 421
- Watchers: 9
- Forks: 45
- Open Issues: 83
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Path Intellisense
Visual Studio Code plugin that autocompletes filenames.
## Installation
In the command palette (cmd-shift-p) select Install Extension and choose Path Intellisense.
To use Path Intellisense instead of the default autocompletion, the following configuration option must be added to your settings:
```javascript
{ "typescript.suggest.paths": false }
{ "javascript.suggest.paths": false }
```## Usage
![IDE](https://i.giphy.com/iaHeUiDeTUZuo.gif)
## Node packages intellisense
Use [npm intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense)
## Contributing
Something missing? Found a bug? - Create a pull request or an issue.
[Github](https://github.com/ChristianKohler/PathIntellisense)[Open in Gitpod](https://gitpod.io/#https://github.com/ChristianKohler/PathIntellisense)
## Are you a windows user?
There is an issue on windows with the period key. See Issue https://github.com/ChristianKohler/NpmIntellisense/issues/12
Add this to the keybinding:
```javascript
{ "key": ".", "command": "" }
```## TsConfig support
### BaseUrl
Pathintellisense uses the ts.config.compilerOptions.baseUrl as a mapping. So no need to define it twice. There is no support for paths at the moment.
For example:
```markdown
# Folderstructuresrc/
module-a
foo.ts
module-b
``````javascript
// tsconfig{
"baseUrl": "src",
}
```would allow to type:
```javascript
{
import {} from "module-a/foo.ts";
}
```You can disable this behaviour by setting it to true:
```javascript
{
"path-intellisense.ignoreTsConfigBaseUrl": true,
}
```## Settings
### File extension in import statements
Path Intellisense removes the file extension by default if the statement is a import statement. To enable file extensions set the following setting to true:
```javascript
{
"path-intellisense.extensionOnImport": true,
}
```### Show hidden files
Per default, hidden files are not displayed. Set this to true to show hidden files.
```javascript
{
"path-intellisense.showHiddenFiles": true,
}
```If set to false, PathIntellisense ignores the default "files.exclude" as well:
```javascript
{
"files.exclude": {
"**/*.map.js": true
}
}
```### Auto slash when navigating to folder
Per default, the autocompletion does not add a slash after a directory.
```javascript
{
"path-intellisense.autoSlashAfterDirectory": false,
}
```### Automatically trigger next suggestion
When a suggestion was selected, the next suggestion will automatically pop up.
This setting will override the `autoSlashAfterDirectory` setting.
```javascript
{
"path-intellisense.autoTriggerNextSuggestion": false,
}
```### Absolute paths
Per default, absolute paths are resolved within the current workspace root path.
Set it to false to resolve absolute paths to the disk root path.```javascript
{
"path-intellisense.absolutePathToWorkspace": true,
}
```### Mappings
Define custom mappings which can be useful for using absolute paths or in combination with webpack resolve options.
```javascript
{
"path-intellisense.mappings": {
"/": "${workspaceFolder}",
"lib": "${workspaceFolder}/lib",
"global": "/Users/dummy/globalLibs"
},
}
```Use \${workspaceFolder} when the path should be relative to the current root of the current project. V2.2.1 and lower used \${workspaceRoot}. Newer version support both placeholders.
## History
See changelog
## License
This software is released under [MIT License](https://www.opensource.org/licenses/mit-license.php)