Skip to content

Commit

Permalink
Tweak default term settings for help generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Eilemann authored and eile committed Jan 19, 2017
1 parent ed62bd6 commit 63b7d52
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 49 deletions.
48 changes: 0 additions & 48 deletions .clang-format

This file was deleted.

2 changes: 1 addition & 1 deletion lunchbox/term.cpp
Expand Up @@ -40,7 +40,7 @@ size getSize()
if( ::ioctl( STDOUT_FILENO, TIOCGWINSZ, &w ) >= 0 )
return { w.ws_col, w.ws_row };
#endif
return {80, 80};
return { 120, 80 };
}
}
}

0 comments on commit 63b7d52

Please sign in to comment.