Skip to content

Commit bd6f210

Browse files
updated name menu option add_jsdoc_conf command
1 parent 81dedb9 commit bd6f210

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Main.sublime-menu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
"command": "generate_jsdoc"
5959
},
6060
{
61-
"caption": "Add jsdoc configuration file to the current project folder",
62-
"command": "add_jsdoc_conf_to_curr_project_folder"
61+
"caption": "Add a jsdoc configuration file",
62+
"command": "add_jsdoc_conf"
6363
},
6464
{ "caption": "-" },
6565
{

_generated_2017_12_31_at_17_41_34.py renamed to _generated_2017_12_31_at_17_44_25.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4458,7 +4458,7 @@ def on_load_async(self) :
44584458
lines = [view.line(view.text_point(bookmark["line"], 0)) for bookmark in search_bookmarks_by_view(view, ( True if is_project_view(view) and is_javascript_project() else False ))]
44594459
view.add_regions("region-dot-bookmarks", lines, "code", "bookmark", sublime.DRAW_NO_FILL | sublime.DRAW_NO_OUTLINE)
44604460

4461-
class add_jsdoc_conf_to_curr_project_folder(sublime_plugin.WindowCommand) :
4461+
class add_jsdoc_conf(sublime_plugin.WindowCommand) :
44624462
def run(self, **args):
44634463
settings = get_project_settings()
44644464
if settings :

helper/jsdoc/generate_jsdoc_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class add_jsdoc_conf_to_curr_project_folder(sublime_plugin.WindowCommand) :
1+
class add_jsdoc_conf(sublime_plugin.WindowCommand) :
22
def run(self, **args):
33
settings = get_project_settings()
44
if settings :

0 commit comments

Comments
 (0)