[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/inf-ruby 067dcba3b0 234/265: Merge pull request #135 from
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/inf-ruby 067dcba3b0 234/265: Merge pull request #135 from zw963/master |
Date: |
Sat, 9 Jul 2022 21:59:29 -0400 (EDT) |
branch: elpa/inf-ruby
commit 067dcba3b04ebd51e3f85ab85e24090a3640441c
Merge: 9f0f79ff45 a5b471efc0
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: GitHub <noreply@github.com>
Merge pull request #135 from zw963/master
Update readme with workaround for ruby 2.7 irb multiline issue
---
README.md | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 70749f425a..c481e9c974 100644
--- a/README.md
+++ b/README.md
@@ -119,9 +119,20 @@ type <kbd>M-x describe-function [RET] inf-ruby-minor-mode
[RET]</kbd>.
* The REPL buffer doesn't seem to react to input?
- Try putting `IRB.conf[:USE_READLINE] = false` into your `~/.irbrc`
+ Try putting following code into your `~/.irbrc`.
(issue [#51](https://github.com/nonsequitur/inf-ruby/issues/51)).
+```rb
+ IRB.conf[:USE_READLINE] = false if ENV['INSIDE_EMACS']
+```
+
+ If your's ruby version above 2.7, and above code not working, try putting
following code into your `~/.irbrc` too.
+(issue [#43](https://github.com/ruby/irb/issues/43#issuecomment-589593889))
+
+```rb
+ IRB.conf[:USE_MULTILINE] = false if ENV['INSIDE_EMACS']
+```
+
* Pry raises ZeroDivisionError in `lib/pry/pager.rb`?
Put `Pry.config.pager = false if ENV["INSIDE_EMACS"]` into your `~/.pryrc`.
- [nongnu] elpa/inf-ruby 5143c84f91 189/265: inf-ruby-proc: Fall back to inf-ruby-buffer, (continued)
- [nongnu] elpa/inf-ruby 5143c84f91 189/265: inf-ruby-proc: Fall back to inf-ruby-buffer, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 5b24985b0e 135/265: Check IRB is defined before using it, fixes #64, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby f908b1f506 136/265: Merge pull request #65 from iqbalansari/master, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 0af69257a4 138/265: Clarify the "usage" section, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 12d1d35f73 153/265: Add ruby-send-buffer function, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby d39ea0bd59 212/265: Use a more common idea of prefix, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 227a80fc52 176/265: Correct regexp, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby ca10d72e0c 220/265: Merge pull request #118 from marsam/master, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby e4ae089218 228/265: inf-ruby-console-gem: Support new IRB, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby a5b471efc0 233/265: Update document for support ruby 2.7.1, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 067dcba3b0 234/265: Merge pull request #135 from zw963/master,
ELPA Syncer <=
- [nongnu] elpa/inf-ruby 965df80555 235/265: Copy edits, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby b0124578db 238/265: Copy edits, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 7593d0f355 239/265: Change ruby-send-region to send any class and module lines that enlose the definition. Also throw error it not called within a definition, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 16c2acb458 250/265: Apply code review - use original Cider's face definition, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 2fae1a8ba9 248/265: Change 'C-x C-e' binding to use the new command, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 871158bcad 255/265: Merge pull request #153 from tunnes/feature-create-eval-overlay, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 7ed2b03c95 258/265: Check specifically than IRB.conf is defined, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 8894867e9d 263/265: Fix #159 by bringing back --noreadline, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby 51ba99f6be 186/265: Proper heading for hooks, ELPA Syncer, 2022/07/09
- [nongnu] elpa/inf-ruby ec70d7f0e9 187/265: inf-ruby-buffer: Fix "wrong-type-argument stringp nil" outside of any project, ELPA Syncer, 2022/07/09