Skip to content

Commit ddfd991

Browse files
author
deathaxe
authored
Extend Package Control settings (#230)
Package Control should... 1. not mess with VCS packages 2. not try to remove orphaned packages or libraries 3. not try to auto-upgrade anything automatically. On Windows use encoding: utf-8 to write settings for formal reasons. It doesn't make a technical difference though.
1 parent 9579212 commit ddfd991

4 files changed

+4
-4
lines changed

sbin/install_package_control.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ try{
1616

1717
if (-not (test-path $PC_SETTINGS)) {
1818
write-verbose "creating Package Control.sublime-settings"
19-
"{`"ignore_vcs_packages`": true, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding ascii
19+
"{`"auto_upgrade`": false, `"ignore_vcs_packages`": true, `"remove_orphaned`": false, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding utf8
2020
}
2121

2222
$PCH_PATH = "$STP\0_install_package_control_helper"

sbin/install_package_control.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fi
5050
if [ ! -f "$STP/User/Package Control.sublime-settings" ]; then
5151
echo creating Package Control.sublime-settings
5252
# make sure Pakcage Control does not complain
53-
echo '{"ignore_vcs_packages": true, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
53+
echo '{"auto_upgrade": false, "ignore_vcs_packages": true, "remove_orphaned": false, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
5454
fi
5555

5656
PCH_PATH="$STP/0_install_package_control_helper"

scripts/install_package_control.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $PC_SETTINGS = "C:\st\Data\Packages\User\Package Control.sublime-settings"
2222

2323
if (-not (test-path $PC_SETTINGS)) {
2424
write-verbose "creating Package Control.sublime-settings"
25-
"{`"auto_upgrade`": false, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding ascii
25+
"{`"auto_upgrade`": false, `"ignore_vcs_packages`": true, `"remove_orphaned`": false, `"submit_usage`": false }" | out-file -filepath $PC_SETTINGS -encoding utf8
2626
}
2727

2828
$PCH_PATH = "$STP\0_install_package_control_helper"

scripts/install_package_control.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ ! -f "$STP/User/Package Control.sublime-settings" ]; then
5151
echo creating Package Control.sublime-settings
5252
[ ! -d "$STP/User" ] && mkdir -p "$STP/User"
5353
# make sure Pakcage Control does not complain
54-
echo '{"auto_upgrade": false, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
54+
echo '{"auto_upgrade": false, "ignore_vcs_packages": true, "remove_orphaned": false, "submit_usage": false }' > "$STP/User/Package Control.sublime-settings"
5555
fi
5656

5757
PCH_PATH="$STP/0_install_package_control_helper"

0 commit comments

Comments
 (0)