| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-09-01 | IRB 1.1.0.pre.3 | aycabta | |
| 2019-08-28 | Adjusted indents and supplied last commas | Nobuyoshi Nakada | |
| Fixed unmatched indent of the closing bracket for `:irb_current_working_workspace`, and adjusted following elements. | |||
| 2019-08-27 | Handle binding.irb for frozen objects and BasicObjects using a delegate | Jeremy Evans | |
| Fixes Ruby Bug 13264 | |||
| 2019-08-27 | Move private call without arguments inside method | Jeremy Evans | |
| This code did not have the desired effect. I'm not sure if irb_binding is supposed to be private or not. If not, the private call can just be removed. | |||
| 2019-08-22 | IRB's multiline history is enable only when Reidline mode | aycabta | |
| 2019-08-20 | Treat two types "do" correctly | aycabta | |
| A "do" what has followed a token what has EXPR_CMDARG is for a block, and in other cases "do" is for "while", "until" or "for". | |||
| 2019-08-16 | Don't echo results of assignment expressions | Steven Willis | |
| 2019-08-06 | Revert "Don't echo results of assignment expressions" | aycabta | |
| This reverts commit 1ee88c51b3c319b74b69540e111e4a1c24833cad. | |||
| 2019-08-06 | Don't echo results of assignment expressions | Steven Willis | |
| 2019-07-27 | Ignore history file without saving if permissions cannot be changed | Jeremy Evans | |
| Fixes [Ruby Bug 13907] | |||
| 2019-07-27 | Use JRuby equivalent of RubyVM.compile. | Charles Oliver Nutter | |
| RubyVM is specific to CRuby and not supported on JRuby. This is the equivalent operation. | |||
| 2019-07-20 | Some keywords, "true", "false", and "nil" should be treated as a variable | aycabta | |
| 2019-07-19 | Fix showing doc of "nil.to_s", nil doesn't have #name | aycabta | |
| 2019-07-15 | Require Ruby 2.4 or later because needs lex_state from Ripper | aycabta | |
| 2019-07-15 | Change PROMPT_S of simple-prompt | Kazuhiro NISHIYAMA | |
| When input `"` or `/` with simple-prompt, Before: `"` or `/` (prompt disappeared and indent is changed) After: `"> "` or `/> /` (indent is unchanged since `>> `) | |||
| 2019-07-15 | Simplify history saving code | aycabta | |
| 2019-07-15 | Use #to_a for Readline::HISTORY directly | aycabta | |
| 2019-07-15 | Add lib/irb/color.rb to destribution file list | aycabta | |
| 2019-07-15 | Remove debug print | aycabta | |
| 2019-07-15 | Support multiline irb_history | aycabta | |
| A history line ends with "\" to escape newline if it's a continuous line. | |||
| 2019-07-15 | Save history in IRB is enabled by default | aycabta | |
| 2019-07-15 | Auto indent in IRB is enabled by default | aycabta | |
| 2019-07-15 | Version 1.1.0.pre.2 | aycabta | |
| 2019-07-15 | Need reline-0.0.1 or later for some features | aycabta | |
| 2019-07-15 | Suppress warnings | Masataka Pocke Kuwabara | |
| 2019-07-06 | Fix showing document of ClassName.method_name in IRB | aycabta | |
| In IRB, Time.new is split as "Time", ".", and "new". The receiver "Time" is processed by #class method but it means that "Time" changes to "Class". This commit fixes it. | |||
| 2019-07-03 | Check code_block_open for whether code continues | aycabta | |
| 2019-07-02 | Keyword token that follows EXPR_FNAME must be a method name | aycabta | |
| 2019-06-28 | Remove auto indent of continuation line | aycabta | |
| 2019-06-28 | Removed unused variable | Nobuyoshi Nakada | |
| 2019-06-27 | EXPR_LABEL also indicates non-continuation line | aycabta | |
| Example: [ 1, # this is not continuation line 2 ] | |||
| 2019-06-27 | bc mode is already removed [ci skip] | Kazuhiro NISHIYAMA | |
| 2019-06-27 | EXPR_CMDARG also indicates the end of an expression | aycabta | |
| 2019-06-27 | Increase indent of continuation line | aycabta | |
| v = 3 # auto indent | |||
| 2019-06-26 | Decrease nesting level when closing token comes at a non-first token of line | aycabta | |
| 2019-06-26 | `ensure` is not a continuos line | Nobuyoshi Nakada | |
| 2019-06-26 | Decrease indent at "elsif" too | Nobuyoshi Nakada | |
| 2019-06-26 | Remove other debug prints | Nobuyoshi Nakada | |
| 2019-06-26 | Remove debug print...sorry | aycabta | |
| 2019-06-25 | Treat auto indent with newline correctly | aycabta | |
| 2019-06-25 | Decrease indent when "else", "rescue", "ensure", "when", or "in" come | aycabta | |
| 2019-06-25 | Refactor calculation of corresponding token depth | aycabta | |
| 2019-06-22 | Treat closing token with starting token at head of 2nd line correctly | aycabta | |
| v = if true # starting token at head of 2nd line 3 end # closing token | |||
| 2019-06-22 | Do auto indent only when closing token at first of line | aycabta | |
| if true 3; end # this isn't auto-indented | |||
| 2019-06-21 | Support irregular auto indent | aycabta | |
| v = if true 3 end # this "end" is auto-indented correctly | |||
| 2019-06-19 | Use IRB.conf[:AUTO_INDENT] setting in multiline mode | aycabta | |
| 2019-06-18 | Fix auto indent crash when blank input | aycabta | |
| 2019-06-18 | Implement auto indent for multiline | aycabta | |
| 2019-06-16 | Implement line_no correctly | aycabta | |
| 2019-06-14 | Use Reline.prompt_proc in IRB | aycabta | |
