[Note: I've submitted a pull request for this fix.] The use of the 'n' key to search for the next occurrence of a string stopped working when running sup in Ruby 1.9. This simple patch fixes that problem. --- lib/sup/buffer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/buffer.rb b/lib/sup/buffer.rb index 444589a..859e0c7 100644 --- a/lib/sup/buffer.rb +++ b/lib/sup/buffer.rb @@ -271,7 +271,7 @@ EOS def handle_input c if @focus_buf - if @focus_buf.mode.in_search? && c != CONTINUE_IN_BUFFER_SEARCH_KEY[0] + if @focus_buf.mode.in_search? && c != CONTINUE_IN_BUFFER_SEARCH_KEY.ord @focus_buf.mode.cancel_search! @focus_buf.mark_dirty end _______________________________________________ sup-talk mailing list sup-talk@rubyforge.org http://rubyforge.org/mailman/listinfo/sup-talk