An extension which adds support for Google Input Tools (Transliteration) in VS Code.
ext install google-input-tools
Google Input Tools can be activated through the command 'Toggle Google Input Tools' or using the keybinding (defaults to shift+cmd+i). Once you activate and type any word, it will be transliterated to the chosen language. You can toggle it once you are done typing in your chosen language. Status bar will indicate if Google input tools is active or not.
No external dependency
This extension contributes the following settings:
google.input.tools.language
: ISO 639-1 Code of language to transliterate to. For example, 'ta' for Tamil (தமிழ்). List of supported languages.google.input.tools.suggestions
: Number of suggestions to show for the word. Defaults to 5.
This extension contributes Toggle Google Input Tools
TouchBar menu item. You need to have MacBook Pro 2016+ for using this feature.
You can also set custom shortcut in keybindings.json
via Code => Preferences => Keyboard Shortcuts
For example:
[
{ "key": "shift+cmd+i", // set to your favorite shortcut
"command": "extension.googleInputTools",
"when": "editorTextFocus" }
]
None
The source code is available here under MIT license. Feel free to use any part of the code. Please send any bugs, feedback, complaints, patches to me at varunkumar[dot]n[at]gmail[dot]com.
-- Varun