Skip to content

Commit

Permalink
Added completions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz committed Dec 27, 2023
1 parent d72871d commit d64abc7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion generators/commands/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'Commands',
description: 'Creates a SublimePackage.sublime-commands file to register your new command / plugin for the Command Palette.',
priority: 3,
priority: 30,
versions: {
'4.0.x': '',
},
Expand Down
2 changes: 1 addition & 1 deletion generators/keymap/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'Keymap',
description: 'Creates a Default.sublime-keymap file. Default.sublime-keymap files contain the key bindings (shortcuts) for a command.',
priority: 4,
priority: 50,
versions: {
'4.0.x': '',
},
Expand Down
2 changes: 1 addition & 1 deletion generators/menu/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'Menu',
description: 'Creates a *.sublime-menu file. Define Menubar and various right-click menus. Creates a *.sublime-menu file.',
priority: 7,
priority: 60,
versions: {
'4.0.x': '',
},
Expand Down
2 changes: 1 addition & 1 deletion generators/plugin/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'Plugin',
description: 'Creates a new SublimePackage.py file to build your own feature.',
priority: 2,
priority: 20,
versions: {
'4.0.x': '',
},
Expand Down
2 changes: 1 addition & 1 deletion generators/readme/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'README.md',
description: 'Creates a README.md',
priority: 1,
priority: 10,
versions: {
'4.0.x': '',
},
Expand Down
2 changes: 1 addition & 1 deletion generators/settings/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const config = {
name: 'Settings',
description: 'Creates a SublimePackage.sublime-settings file to stores configuration data.',
priority: 5,
priority: 70,
versions: {
'4.0.x': '',
},
Expand Down
4 changes: 2 additions & 2 deletions generators/snippet/config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
const config = {
name: 'Snippet',
description: 'Creates a Snippet file. Snippets are smart templates that will insert text for you, adapting it to their context.',
priority: 6,
priority: 80,
versions: {
'4.0.x': '',
},
prompts: [
{
name: 'snippet_file_name',
message: 'What is the name of your new snippet file (snippet file name)?',
message: 'What is the name of your new snippet file (snippet/snippet_file_name)?',
type: 'input',
default: '${config.package_name_pascal_case}',
},
Expand Down

0 comments on commit d64abc7

Please sign in to comment.