bo-tato

Results 45 comments of bo-tato

I get the same as @sankalp-khare screenshot, with irb or pry, including when I set those pry config settings @sideshowcoder mentions. In pry the intermediate prompts end with * and...

There is another duplicate of this issue here https://github.com/nonsequitur/inf-ruby/issues/166 For reference I switched from that preoutput filter which doesn't work 100% to just adding to my pryrc: ``` Pry.config.prompt.prompt_procs[1] =...

btw if anyone knows comint mode and how this is addressed with other languages please help me out, I looked into it a while and am confused, for example if...

Ah sorry, I hadn't watched the video, just the screenshot at top of issue that looked like the same thing. Yea I haven't had any issues typing in the REPL...

ah that makes sense it used to be there but got removed. I'd read on a stackoverflow response also that comint had code to filter duplicated prompts and was thoroughly...

interesting... it seems python mode also has a problem with long lines, I send a 4K+ line of 1 + 1 + 1 ..., pasted in the repl it works...

Another possibility would be for the `ruby-send` commands to send: ``` __orig_prompt_mode=IRB.conf[:PROMPT_MODE];IRB.conf[:PROMPT_MODE] = :INF_RUBY; (actual region to send); IRB.conf[:PROMPT_MODE] = __orig_prompt_mode ``` and could do the same for pry, saving...

wow I'm learning more about messy internals of pty and emacs than I planned on lol. I checked how other languages handle this, the lisp/scheme/clojure that connect to repl over...

yea I think behavior of pry and irb could be slightly different when they think they're not being run interactive. So far I noticed the help message in pry doesn't...

I ran into the same issue and addressed it in my config with: ``` (defun my/evil-eol-advice (&optional count) (when (evil-eolp) (forward-char))) (advice-add 'sp-forward-sexp :before #'my/evil-eol-advice) ```