[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/inf-ruby 965df80555 235/265: Copy edits
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/inf-ruby 965df80555 235/265: Copy edits |
Date: |
Sat, 9 Jul 2022 21:59:29 -0400 (EDT) |
branch: elpa/inf-ruby
commit 965df805552068ea37df8d3c05249689468c5662
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>
Copy edits
---
README.md | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index c481e9c974..fdf5a9fd27 100644
--- a/README.md
+++ b/README.md
@@ -119,20 +119,23 @@ 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 following code into your `~/.irbrc`.
- (issue [#51](https://github.com/nonsequitur/inf-ruby/issues/51)).
+ 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']
+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))
+* If your Ruby version is 2.7+ and there is a weird char instead of prompt, or
you see a reline related error
[([example](https://github.com/ruby/irb/issues/43#issuecomment-589593889)), try
adding the following to your `~/.irbrc` as well:
```rb
- IRB.conf[:USE_MULTILINE] = false if ENV['INSIDE_EMACS']
+IRB.conf[:USE_MULTILINE] = false if ENV['INSIDE_EMACS']
```
+For most projects that `inf-ruby-console-auto` can recognize, we try
+to apply this flag automatically, but some cases remain where the
+users will have to do it manually.
+
* Pry raises ZeroDivisionError in `lib/pry/pager.rb`?
Put `Pry.config.pager = false if ENV["INSIDE_EMACS"]` into your `~/.pryrc`.
- [nongnu] elpa/inf-ruby 5b24985b0e 135/265: Check IRB is defined before using it, fixes #64, (continued)
- [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, 2022/07/09
- [nongnu] elpa/inf-ruby 965df80555 235/265: Copy edits,
ELPA Syncer <=
- [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
- [nongnu] elpa/inf-ruby e05cc84738 196/265: Add menu for inf-ruby-minor-mode, ELPA Syncer, 2022/07/09