日本語版のREADMEはこちらにあります。
Adds KAG/KAGEX language support for Visual Studio Code.
I recommend installing tjs-vscode for syntax highlighting between "iscript" and "endscript".
- Syntax highlighting
- Ctags support
- Some snippets. Currently only for emb, if, ignore, iscript, macro
- 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 "KAGEX: Open reference search palette".
- Input tag 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, KAGEX reference is enabled.
"kagex.referencePalletEnable": {
"kag3": false, // KAG3 reference
"kagex": true, // KAGEX reference
}
You must install ctags to use code navigation features such as "Go to Definition and "Peek definition". You can go to the definition of [macro] tags.
- Install ctags and put it in your system path. I recommend Exuberant Ctags.
- Install ctagsx to Visual Studio Code.
- Open the directory which contains ks files with Visual Studio Code.
- Press Ctrl+Shift+P to open command palette.
- Execute the command "KAGEX: 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.
"kagex.ctagsProcess": [
{
"tagFilePath": ".tags", // Path to Ctags' index file
"searchPath": "", // Path to the directory where ctags search ks files
"searchRecursive": true, // Whether search ks files recursively
"runOnSave": false, // Whether recreate the index file automatically when ks file is saved
"fileExtensions": [ // File extensions to be searched as ks file
".ks"
],
"extraOption": "" // Command-line options which will be passed to ctags
}
]
If you want to generate multiple index files, define multiple settings in kagex.ctagsProcess.
Below is the example to generate index files in src and out directory.
"kagex.ctagsProcess": [
// Search ks files in src directory and generate "src/.tags"
{
"tagFilePath": "src/.tags",
"searchPath": "src/",
"searchRecursive": true,
"runOnSave": true,
},
// Search ks 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.