File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -105,9 +105,12 @@ def _start_bash(self):
105105 finally :
106106 signal .signal (signal .SIGINT , sig )
107107
108+ # Disable bracketed paste (see <https://github.com/takluyver/bash_kernel/issues/117>)
109+ self .bashwrapper .run_command ("bind 'set enable-bracketed-paste off' >/dev/null 2>&1 || true" )
108110 # Register Bash function to write image data to temporary file
109111 self .bashwrapper .run_command (image_setup_cmd )
110112
113+
111114 def process_output (self , output ):
112115 if not self .silent :
113116 image_filenames , output = extract_image_filenames (output )
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ module = "bash_kernel"
77author = " Thomas Kluyver"
88author-email = " thomas@kluyver.me.uk"
99home-page = " https://github.com/takluyver/bash_kernel"
10- requires = [" pexpect (>=4.0)" ]
10+ requires = [" pexpect (>=4.0)" , " ipykernel " ]
1111description-file = " README.rst"
1212classifiers = [
1313 " Framework :: IPython" ,
You can’t perform that action at this time.
0 commit comments