Sublime Forum

No Package Control in v3 build 3143 !?

#1

I just installed the newest v3 b 3143 version of SublimeText and I am unable to install, list, remove, or do anything with packages. The packages commands have completely disappeared from the command palette. Did anything change in how we install, list, remove packages? If not, what could be the problem? I see Package Control is installed and all my packages are working properly, but I can’t change any of them.

Anyone else experiencing the same thing? Anyone have a solution for this?

Thanks!

0 Likes

#2

It might be disabled. Check your User settings file.

If it is not, paste the contents of your Sublime Text console (in a code block).

2 Likes

#4

You are right, it was disabled. I guess installing 3143 disables it for some reason. Thanks!

0 Likes

#5

I also don’t have those commands, and I don’t see it being disabled.

My user settings:

{
	"always_show_minimap_viewport": true,
	"animation_enabled": false,
	"binary_file_patterns":
	[
		"*.min.css",
		"*.min.js"
	],
	"close_sidebar_if_opened": false,
	"color_scheme": "Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme",
	"detect_indentation": false,
	"drag_text": false,
	"draw_minimap_border": true,
	"ensure_newline_at_eof_on_save": true,
	"file_exclude_patterns":
	[
		"*.pyc",
		"*.pyo",
		"*.exe",
		"*.dll",
		"*.obj",
		"*.o",
		"*.a",
		"*.lib",
		"*.so",
		"*.dylib",
		"*.ncb",
		"*.sdf",
		"*.suo",
		"*.pdb",
		"*.idb",
		".DS_Store",
		"*.class",
		"*.psd",
		"*.db",
		"*.sublime-workspace"
	],
	"find_selected_text": true,
	"folder_exclude_patterns":
	[
		".svn",
		".git",
		".hg",
		"CVS",
		"tmp",
		"log",
		"public/assets",
		"coverage",
		"node_modules",
		"**/*/build",
		"*.xcodeproj"
	],
	"font_size": 15,
	"highlight_line": true,
	"ignored_packages":
	[
		"Package Control",
		"Vintage"
	],
	"indent_to_bracket": true,
	"scroll_speed": 0,
	"shift_tab_unindent": true,
	"show_full_path": true,
	"tab_size": 2,
	"theme": "Boxy Tomorrow.sublime-theme",
	"theme_accent_green": true,
	"theme_sidebar_disclosure": true,
	"theme_sidebar_folder_materialized": true,
	"translate_tabs_to_spaces": true,
	"tree_animation_enabled": false,
	"trim_trailing_white_space_on_save": true,
  "open_files_in_new_window": false,
  "create_window_at_startup": true
}
0 Likes

#6

Just remove “Package Control” from "ignored_packages".

1 Like

#7

Wow, I’m blind :smiley: ashamed

1 Like