Sublime Forum

Dev Build 3130

#41

Thanks!

No more tab crashing, and no more gray bar at the bottom.

0 Likes

#42

Does anyone have a problem with Package Control? It loads a list, but I canā€™t install anything. It throws an error:

Traceback (most recent call last):
  File "package_control.package_installer in /Users/rainglady/Library/Application Support/Sublime Text 3/Installed Packages/Package Control.sublime-package", line 154, in on_done
  File "package_control.package_disabler in /Users/rainglady/Library/Application Support/Sublime Text 3/Installed Packages/Package Control.sublime-package", line 76, in disable_packages
ImportError: No module named 'package_control'

Iā€™m on latest macOS Sierra (10.12.4).

0 Likes

#43

Ok, fixed it. I have to uninstall Sublime (via CleanMyMac) and deleted Sublime Text 3 folder placed in ~/Library/Application Support. Then install everything once again. Now it works completely fine. Maybe it was some issue with updating it from 3130? Cheers :)!

0 Likes

#44

Hi Jon, I made a few minor changes to the command palette entries. Click below for a diff, should you be interested.

Diff
--- a/Default.sublime-commands
+++ b/Default.sublime-commands
@@ -4,25 +4,14 @@
         "command": "toggle_setting",
         "args": {"setting": "word_wrap"}
     },
-    {
-        "caption": "Convert Case: Upper Case",
-        "command": "upper_case"
-    },
-    {
-        "caption": "Convert Case: Lower Case",
-        "command": "lower_case"
-    },
-    {
-        "caption": "Convert Case: Title Case",
-        "command": "title_case"
-    },
-    {
-        "caption": "Convert Case: Swap Case",
-        "command": "swap_case"
-    },
 
-    { "command": "toggle_comment", "args": {"block": false}, "caption": "Toggle Comment" },
-    { "command": "toggle_comment", "args": {"block": true}, "caption": "Toggle Block Comment" },
+    { "command": "upper_case", "caption": "Convert Case: Upper Case" },
+    { "command": "lower_case", "caption": "Convert Case: Lower Case" },
+    { "command": "title_case", "caption": "Convert Case: Title Case" },
+    { "command": "swap_case", "caption": "Convert Case: Swap Case" },
+
+    { "command": "toggle_comment", "args": {"block": false}, "caption": "Comment Line: Toggle" },
+    { "command": "toggle_comment", "args": {"block": true}, "caption": "Comment Block: Toggle" },
 
     { "command": "toggle_bookmark", "caption": "Bookmarks: Toggle" },
     { "command": "next_bookmark", "caption": "Bookmarks: Select Next" },
@@ -40,6 +29,8 @@
     { "caption": "View: Toggle Tabs", "command": "toggle_tabs" },
     { "caption": "View: Toggle Status Bar", "command": "toggle_status_bar" },
     { "caption": "View: Toggle Menu", "command": "toggle_menu" },
+    { "caption": "View: Toggle Full Screen", "command": "toggle_full_screen" },
+    { "caption": "View: Toggle Distraction Free Mode", "command": "toggle_distraction_free" },
 
     { "caption": "Project: Save As", "command": "save_project_and_workspace_as" },
     { "caption": "Project: Close", "command": "close_workspace" },
@@ -77,11 +68,20 @@
         "command": "select_theme"
     },
 
+    { "caption": "File: New", "command": "new_file" },
+    { "caption": "File: Openā€¦", "command": "prompt_open_file", "platform": "!OSX" },
     { "caption": "File: Save All", "command": "save_all" },
     { "caption": "File: Revert", "command": "revert" },
     { "caption": "File: New View into File", "command": "clone_file" },
     { "caption": "File: Close All", "command": "close_all" },
 
+    { "caption": "Folder: Openā€¦", "command": "prompt_open_folder", "platform": "!OSX" },
+
+    { "caption": "Openā€¦", "command": "prompt_open", "platform": "OSX" },
+
+    { "caption": "Window: New", "command": "new_window" },
+    { "caption": "Window: Close", "command": "close_window" },
+
     { "caption": "HTML: Wrap Selection With Tag", "command": "insert_snippet", "args": { "name": "Packages/XML/Snippets/long-tag.sublime-snippet" } },
     { "caption": "HTML: Encode Special Characters", "command": "encode_html_entities" },
 
@@ -100,6 +100,8 @@
     { "caption": "Permute Selections: Unique", "command": "permute_selection", "args": {"operation": "unique"} },
     { "caption": "Permute Selections: Shuffle", "command": "permute_selection", "args": {"operation": "shuffle"} },
 
+    { "caption": "Code Folding: Fold", "command": "fold" },
+    { "caption": "Code Folding: Unfold", "command": "unfold" },
     { "caption": "Code Folding: Unfold All", "command": "unfold_all" },
     { "caption": "Code Folding: Fold Tag Attributes", "command": "fold_tag_attributes" },
 
@@ -108,5 +110,7 @@
 
     { "caption": "About", "command": "show_about_window" },
     { "caption": "Changelog", "command": "show_changelog" },
+    { "caption": "Documentation", "command": "open_url", "args": { "url": "https://www.sublimetext.com/docs/3/" } },
+    { "caption": "Check for Updatesā€¦", "command": "update_check", "platform": "!Linux" },
     { "caption": "Indexing Status", "command": "show_progress_window" },
 ]
0 Likes

#45

I prefer the current comment toggle command names because they are more accurate. Specifically, the default toggle command will fall back to a block command if line commands arenā€™t valid in a syntax, e. G. In css. This also makes it hard to group the commands to a common prefix, unless you do it like ā€œToggle Comment: Prefer Lineā€ or ā€œDefaultā€ or similar.

0 Likes

#46

In combination with:

theme developers might find:

useful, which has been updated last week.

0 Likes

#47

Jon, maybe you could add support for jump lists on Windows in one of the next builds?

1 Like

#48

Iā€™ve lately been enjoying the existance of the Skins package by @deathaxe. Iā€™d suggest merging its functionality into the core, should one last issue (see #5) be resolved, instead of having the separate menu entries for Color Schemes and Themes which lack the ability to add related settings.

You can test it using one of these packages out of-the-box:

  • Boxy Theme
  • Material Theme
  • gruvbox
  • Brogrammer Theme
  • ayu
  • TwoDark
  • Agila Theme
0 Likes

#49

@jps, @wbond

Iā€™m not sure this is the right place to bring this up, however:

The new app icon keeps reminding me of the SS flag the Nazis used, maybe you could consider changing the app icon again? Every time I see the icon it makes me feels uneasy.

0 Likes