We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 427f8af commit 6c94faeCopy full SHA for 6c94fae
session.c
@@ -822,6 +822,15 @@ do_exec_no_pty(Session *s, const char *command)
822
}
823
if (!debug_flag)
824
RevertToSelf();
825
+ {
826
+ /* TODO - check this - Create Process above is not respecting x# and y# chars, so we are doing this explicity on the
827
+ * attached console agein */
828
+
829
+ COORD coord;
830
+ coord.X = s->col;
831
+ coord.Y = s->row;
832
+ SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE), coord);
833
+ }
834
835
836
/*
0 commit comments