Get info for lua commands on buffer, ctrl shift Q thing, packaging
This commit is contained in:
@@ -165,6 +165,12 @@ int CompileTextEditor() {
|
||||
Run("rc icon.rc");
|
||||
}
|
||||
result += Run(cmd);
|
||||
if (result == 0) {
|
||||
OS_MakeDir("../package");
|
||||
OS_CopyFile("../build/te.exe", "../package/te.exe", true);
|
||||
OS_CopyFile("../build/te.pdb", "../package/te.pdb", true);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -422,7 +428,9 @@ function IsLoadWord(w)
|
||||
w == string.byte('_') or
|
||||
w == string.byte('.') or
|
||||
w == string.byte('-') or
|
||||
w == string.byte(',')
|
||||
w == string.byte(',') or
|
||||
w == string.byte('"') or
|
||||
w == string.byte("'")
|
||||
if not result then
|
||||
result = not (IsSymbol(w) or IsWhitespace(w))
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user