日本語版のREADMEはこちらにあります。
Adds TJS language support for Visual Studio Code. If you needs KAG/KAGEX support, check kagex-vscode.
- Full syntax highlighting including type specifiers on Kirikiri Z
- Ctags support
- Snippets such as class, function and for loop
- The codes between "//#region" and "//#endregion" can be folded
- The Reference search pallet to open API references
You can open API references with your browser by following the steps
- Push Ctrl+Shift+P to open the Command Pallet.
- Execute the command "TJS: Open reference search palette".
- Input class name to open the reference. "Ctrl+Shift+Alt+R" is default shortcut key to open reference search palette.
You can choose references to search by following configuration. By default, TJS reference and kirikiriZ reference is enabled.
"tjs.referencePalletEnable": {
"tjs": true, // TJS reference
"krkrz": true, // kirikiriZ reference
"krkr2": false, // kirikiri2 reference
"dll": false // some dll reference
}
You must install ctags to use code navigation features such as "Go to Definition and "Peek definition".
- Install ctags and put it in your system path. I recommend Exuberant Ctags.
- Install ctagsx to Visual Studio Code.
- Open the directory which contains tjs files with Visual Studio Code.
- Push Ctrl+Shift+P to open command palette.
- Execute the command "TJS: Update Ctags File".
Now ".tags" file is created in your directory and you can use ctagsx features.
You can change ctags behavior by the following configuration.
"tjs.ctagsProcess": [
{
"tagFilePath": ".tags", // Path to Ctags' index file
"searchPath": "", // Path to the directory where ctags search tjs files
"searchRecursive": true, // Whether search tjs files recursively
"runOnSave": false, // Whether recreate the index file automatically when tjs file is saved
"fileExtensions": [ // File extensions to be searched as tjs file
".tjs"
],
"extraOption": "" // Command-line options which will be passed to ctags
}
]
If you want to generate multiple index files, define multiple settings in tjs.ctagsProcess.
Below is the example to generate index files in src and out directory.
"tjs.ctagsProcess": [
// Search tjs files in src directory and generate "src/.tags"
{
"tagFilePath": "src/.tags",
"searchPath": "src/",
"searchRecursive": true,
"runOnSave": true,
},
// Search tjs files in out directory and generate "out/.tags"
{
"tagFilePath": "out/.tags",
"searchPath": "out/",
"searchRecursive": true,
"runOnSave": true,
}
]
Submit the issues if you find any bug or have any suggestion.