Show More
@@ -51,10 +51,10 b' var IPython = (function (IPython) {' | |||||
51 | }, |
|
51 | }, | |
52 | { |
|
52 | { | |
53 | id : 'paste_b', |
|
53 | id : 'paste_b', | |
54 |
label : 'Paste Cell |
|
54 | label : 'Paste Cell Below', | |
55 | icon : 'ui-icon-clipboard', |
|
55 | icon : 'ui-icon-clipboard', | |
56 | callback : function () { |
|
56 | callback : function () { | |
57 |
IPython.notebook.paste_cell_ |
|
57 | IPython.notebook.paste_cell_below(); | |
58 | } |
|
58 | } | |
59 | } |
|
59 | } | |
60 | ],'cut_copy_paste'); |
|
60 | ],'cut_copy_paste'); |
@@ -142,8 +142,8 b' var IPython = (function (IPython) {' | |||||
142 | that.control_key_active = false; |
|
142 | that.control_key_active = false; | |
143 | return false; |
|
143 | return false; | |
144 | } else if (event.which === 86 && that.control_key_active) { |
|
144 | } else if (event.which === 86 && that.control_key_active) { | |
145 |
// Paste |
|
145 | // Paste below selected cell = v | |
146 |
that.paste_cell_ |
|
146 | that.paste_cell_below(); | |
147 | that.control_key_active = false; |
|
147 | that.control_key_active = false; | |
148 | return false; |
|
148 | return false; | |
149 | } else if (event.which === 68 && that.control_key_active) { |
|
149 | } else if (event.which === 68 && that.control_key_active) { |
General Comments 0
You need to be logged in to leave comments.
Login now