| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-29 | Colorize compile_error as same as on_parse_error | Nobuyoshi Nakada | |
| 2019-05-29 | parse.y: flush invalid char | Nobuyoshi Nakada | |
| 2019-05-29 | Revert "Colorize error part more" | Koichi Sasada | |
| This reverts commit c7f3c222c9b82736c993419daa6bfb643e5c0793. | |||
| 2019-05-29 | Colorize error part more | Nobuyoshi Nakada | |
| Colorize `compile_error` parts as well as `on_parse_error` parts. | |||
| 2019-05-29 | Remove extra items because Reline::HISTORY is a sized queue | aycabta | |
| 2019-05-29 | Revert 3b7862c8e88cd7838a53ec083ac5733386400956 causing various CI hangs | Takashi Kokubun | |
| and dependent commits c67934b1c3b40dda5f170b032423e520511c68dd and f0d1dc5cee87dfb023cb43a2db9bcdef5a8dee8f. RubyCI and ci.rvm.jp are almost dead by timeout since this commit. --- Revert "Skip a reline test hanging on Wercker since 3b7862c8e8" This reverts commit f0d1dc5cee87dfb023cb43a2db9bcdef5a8dee8f. Revert "Remove extra items because Reline::HISTORY is a sized queue" This reverts commit c67934b1c3b40dda5f170b032423e520511c68dd. Revert "Use existing instances for LineEditor and Config" This reverts commit 3b7862c8e88cd7838a53ec083ac5733386400956. | |||
| 2019-05-29 | Use IO.copy_stream | aycabta | |
| 2019-05-29 | Check RUBY_YES_I_AM_NOT_A_NORMAL_USER env to access RubyVM doc | aycabta | |
| 2019-05-29 | IRB never show RubyVM's doc | aycabta | |
| 2019-05-29 | Encode completed strings corecctly | aycabta | |
| 2019-05-29 | Remove extra items because Reline::HISTORY is a sized queue | aycabta | |
| 2019-05-29 | Use existing instances for LineEditor and Config | aycabta | |
| 2019-05-28 | Fix condition..."and" is lowest priority operator, than "=" | aycabta | |
| 2019-05-28 | Use Reline.completer_quote_characters to complete | aycabta | |
| 2019-05-28 | Fix reversed row and column get_screen_size on Windows | aycabta | |
| 2019-05-28 | Use Shift+Enter as Meta+Enter on Windows | aycabta | |
| 2019-05-28 | Use VK_MENU instead of VK_LMENU to check ALT on Windows | aycabta | |
| 2019-05-28 | Remove unused variable from IRB::InputCompletor | aycabta | |
| 2019-05-28 | Treat :@1, :@@1, @1, and @@1 correctly to check termination | aycabta | |
| 2019-05-28 | Join next line if deletes newline at end of line | aycabta | |
| 2019-05-28 | Exit only when blank input | aycabta | |
| 2019-05-28 | Supress duplicated warning | Kazuki Tsujimoto | |
| 2019-05-28 | Support OSC and treat \1 \2 correctly | aycabta | |
| 2019-05-28 | Revert "Support OSC and treat \1 \2 correctly" | aycabta | |
| This reverts commit 77bfebebc44c5e46ebd156d074081846c037f882. | |||
| 2019-05-28 | Support OSC and treat \1 \2 correctly | aycabta | |
| 2019-05-27 | Colorize error part | Nobuyoshi Nakada | |
| 2019-05-27 | CSI allows empty digit which equals 0 | Nobuyoshi Nakada | |
| 2019-05-27 | context.rb: hide wrapping lines | Nobuyoshi Nakada | |
| * lib/irb/context.rb (IRB::Context#evaluate): separate the code from wrapping lines to propagate the given exception, not to show the wrapping lines when SyntaxError. | |||
| 2019-05-27 | Use IRB::InputMethod#eof? to quit | aycabta | |
| 2019-05-27 | Fix rendering bug of ^D | aycabta | |
| 2019-05-27 | Move to next of last line by ^D | aycabta | |
| 2019-05-27 | Check blank history | aycabta | |
| 2019-05-27 | Move to next of last line by ^C | aycabta | |
| 2019-05-27 | Reline should move to next line after finished in Readline mode | aycabta | |
| 2019-05-27 | Add support for history with Reline backend | Sutou Kouhei | |
| 2019-05-27 | Move to the other line when press <- at head or -> at tail | aycabta | |
| 2019-05-27 | Implement J to join lines in vi command mode | aycabta | |
| 2019-05-27 | Remove \1 and \2 that escape CSI before render | aycabta | |
| 2019-05-26 | Highlight global variable on IRB | Takashi Kokubun | |
| 2019-05-26 | Simplify lexer state matching in #dispatch_seq | Takashi Kokubun | |
| for improving readability of the condition. It may be slightly faster, or may not. | |||
| 2019-05-26 | Refactor IRB color dispatch | Takashi Kokubun | |
| The reason why we were checking lexer state in addition to token was that we do not want to colorize local variable, method call, etc., while they share the :on_ident token with a name of method definition which should be colored as blue. It means that we're concerned about the lexer state only for :on_ident. Thus we can skip checking lexer state for non-:on_ident tokens. This refactoring is based on that idea. Also, now we manage Ripper's lexer state as Integer (use `|` if you need to check multiple states). It should be faster than using Array of Integer because #any? block call is not needed. | |||
| 2019-05-27 | Support op, cvar, iver, gvar and kw that follow on symbeg in IRB | aycabta | |
| 2019-05-27 | Support :@@cvar and : on colorize | aycabta | |
| 2019-05-26 | Make the imaginary color on IRB close to pry | Takashi Kokubun | |
| and sorted the token names alphabetically. | |||
| 2019-05-27 | Fix indexes in comments of vi_insert.rb | aycabta | |
| Previous fix was 2993b361333147f6dfb86a153971c22329ffbaf4. | |||
| 2019-05-27 | Fix number literal regexp of IRB completion | aycabta | |
| 2019-05-27 | Use correctly RI output in IRB completion | aycabta | |
| 2019-05-26 | Colorize imaginary and rational literals | Nobuyoshi Nakada | |
| 2019-05-25 | Handle keyword symbol in IRB::Color::SymbolState | Takashi Kokubun | |
| 2019-05-25 | Deal with more syntax highlight edge cases | Takashi Kokubun | |
| Please refer to the tests again. | |||
