File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 360360 results . push ( formatted . join ( '\n' ) ) ;
361361 }
362362 else {
363- // Multi-column output for terminal display
364- results . push ( formatted . join ( ' ' ) ) ;
363+ // Multi-column output for terminal display with wider spacing
364+ results . push ( formatted . join ( ' ' ) ) ;
365365 }
366366 }
367367 }
Original file line number Diff line number Diff line change 11{
22 "name" : " unix-shell-js" ,
3- "version" : " 1.2.0 " ,
3+ "version" : " 1.2.1 " ,
44 "description" : " Browser-based Unix/Linux command emulator with vi editor support" ,
55 "main" : " ./dist/cjs/index.js" ,
66 "module" : " ./dist/esm/index.js" ,
Original file line number Diff line number Diff line change @@ -520,8 +520,8 @@ export class UnixShell {
520520 if ( this . _isPiped ) {
521521 results . push ( formatted . join ( '\n' ) ) ;
522522 } else {
523- // Multi-column output for terminal display
524- results . push ( formatted . join ( ' ' ) ) ;
523+ // Multi-column output for terminal display with wider spacing
524+ results . push ( formatted . join ( ' ' ) ) ;
525525 }
526526 }
527527 }
You can’t perform that action at this time.
0 commit comments