Skip to content

Commit ba14a3e

Browse files
prevent "may be a binary file" message with default pager
1 parent 23321f2 commit ba14a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/pager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import sys
3030
import shlex
3131

32-
def get_pager_command(default='less -r'):
32+
def get_pager_command(default='less -rf'):
3333
command = shlex.split(os.environ.get('PAGER', default))
3434
return command
3535

0 commit comments

Comments
 (0)