Created
August 21, 2024 06:54
-
-
Save andy0130tw/35776e9a8a401bdabb1b6c82dabdba00 to your computer and use it in GitHub Desktop.
Fix JSDoc autocompletion in JavaScript in Sublime Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// These settings override both User and Default settings for the JavaScript syntax | |
{ | |
"auto_complete_selector": "meta.tag, comment.block.documentation, source - comment - string.quoted.double.block - string.quoted.single.block - string.unquoted.heredoc", | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
{ "keys": ["enter"], "command": "commit_completion", "context": | |
[ | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": true }, | |
{ "key": "is_javadoc", "operator": "equal", "operand": true, "match_all": true } | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment