Code: Select all
msg "Hello1";
msg "Hello 2";
And is it true that empty lines at the bottom of a script file cause this same error?
Code: Select all
msg "Hello1";
msg "Hello 2";
Code: Select all
::text filetype();Code: Select all
msg "a";
msg "b";
Code: Select all
// Encoding used when saving new files, and files opened with an undefined
// encoding (e.g., plain ascii files). If a file is opened with a specific
// encoding (either detected or given explicitly), this setting will be
// ignored, and the file will be saved with the encoding it was opened
// with.
"default_encoding": "UTF-8",
// Determines what character(s) are used to terminate each line in new files.
// Valid values are 'system' (whatever the OS uses), 'windows' (CRLF) and
// 'unix' (LF only).
"default_line_ending": "system",Code: Select all
$rootdir = "C:\Users\aliteralmind\AppData\Roaming\Sublime Text 3";
$srcdir = $rootdir."\Packages\User\notes_and_backup\SideBarEnhancements_my_tweaks";
$destdir = $rootdir."\Packages\SideBarEnhancements";
if (confirm("About to delete ".$destdir.*.". Continue?", , 2) == 0) { end true;
} delete 1, 0, $destdir."*";
zip_extract($rootdir."\Installed Packages\SideBarEnhancements.zip", $destdir);
wait 500;
if (confirm("About to implement tweaks. Continue?", , 2) == 0) { end true;
} $destfile = $destdir."\Side Bar.sublime-menu";
$srctxt = readfile($srcdir."\Side Bar.sublime-menu");
writefile($destfile, $srctxt);
$destfile = $destdir."\SideBarAPI.py";
$srctxt = readfile($srcdir."\SideBarAPI.py");
writefile($destfile, $srctxt);
$destfile = $destdir."\_jeff_epstein_notes.txt";
$srctxt = readfile($srcdir."\_jeff_epstein_notes.txt");
writefile($destdir."\_jeff_epstein_notes.txt", $srctxt);
//; delete 1, 0, $destfile
//; delete 1, 0, $destfile
//; delete 1, 0, $destfile
