Autocomplete ExtensionExtension that helps users improve consistency with naming conventions as well as proper naming of variables and methods. The extension detects most commonly used naming convention in the current workspace and suggests that as the default for the future suggestions. All commands are available in the command pallette This extension is for JavaScript only and only for English speaking users. FeaturesProvidersAutocompletion|snippet providerWhen typing a variable/method name will give suggestions of how the variable should be spelled given the naming convention user chose (or by default If user accepts given suggestion it will be used to increase the values of the words in user's personal dictionary and users common dictionary in the given variable/method name, which will increase the accuracy of suggestions overtime. Hover providerWhen hovering over a variable name or method name will show a popup with a name of the naming convention of that variable/method. CommandsAdd selected word to dictionaryAfter selecting a word or some text and pressing the command, the given word will be added to user's personal dictionary and users common dictionary and will increase the likelihood of this word being picked in the future when giving user suggestions. Get naming convention of selected textAfter selecting a word or some text simply returns the name of the naming convention with the highest likelihood. Get best naming convention for current workspaceFinds all variable and method names in all saved JavaScript files in a given workspace, removes duplicates, removes words that are less than 5 characters or more than 20 characters and returns the most common naming convention as well as gives a suggestion to update settings to that naming convention. |