@@ -1034,6 +1034,11 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
1034
1034
App.m_strLuaScript .GetLength (),
1035
1035
SHOW_TRUE (App.m_bEnablePackageLibrary )));
1036
1036
1037
+ Note (TFormat (" Scripting prefix: '%s'. External editor in use: %s." ,
1038
+ m_strScriptPrefix, SHOW_TRUE (!m_bEditScriptWithNotepad)));
1039
+ if (!m_bEditScriptWithNotepad)
1040
+ Note (TFormat (" Editor path: %s" , (LPCTSTR) m_strScriptEditor));
1041
+
1037
1042
// time taken to execute scripts
1038
1043
if (App.m_iCounterFrequency > 0 )
1039
1044
{
@@ -1276,6 +1281,10 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
1276
1281
} // end of loop through views
1277
1282
1278
1283
Note (TFormat (" Commands in command history: %ld" , nTotal));
1284
+ Note (TFormat (" Speed walking enabled: %s. Speed walking prefix: %s" ,
1285
+ SHOW_TRUE (m_enable_speed_walk), (LPCTSTR) m_speed_walk_prefix));
1286
+ Note (TFormat (" Command stacking enabled: %s. Command stack character: '%s'" ,
1287
+ SHOW_TRUE (m_enable_command_stack), (LPCTSTR) m_strCommandStackCharacter));
1279
1288
1280
1289
// accelerators
1281
1290
@@ -1351,7 +1360,7 @@ VARIANT CMUSHclientDoc::Debug(LPCTSTR Command)
1351
1360
r.right , r.bottom , m_FontWidth, m_FontHeight));
1352
1361
1353
1362
if (m_FontWidth > 0 && m_FontHeight > 0 )
1354
- Note (TFormat (" width %ld characters, wrap at column %ld, height %ld lines." ,
1363
+ Note (TFormat (" can show %ld characters, wrapping at column %ld, height %ld lines." ,
1355
1364
r.right / m_FontWidth, m_nWrapColumn, r.bottom / m_FontHeight));
1356
1365
1357
1366
0 commit comments