sublimerepl

Is it normal to have really slow text transfer in Sublime Text 2 with the Clojure REPL?

若如初见. 提交于 2019-12-03 06:46:47
Text transfer is really slow for me in Sublime Text 2, especially multiline text (each line takes about 2 seconds to print in the repl before evaluating the whole expression...) Is it normal? It would be better if I could remove line endings before sending expressions to the repl, so in my command, I've added a step: text = text.rstrip() but it doesn't work. How can I make this faster? Change the SublimeREPL clojure command from lein repl to lein trampoline run -m clojure.main . Everything should be nice and fast after that. The file you want to change is SublimeREPL/config/Clojure/Main

SublimeREPL Unable to Find R

一个人想着一个人 提交于 2019-12-03 02:46:29
Okay, this is driving my crazy. I had set this up before, deleted Sublime Text, and now I can't remember what the right configuration was. Very simple: I'm running R through SublimeREPL and need to point the REPL to where R is installed. I followed the directions at http://sublimerepl.readthedocs.org/en/latest/ , which say to go into the user-defined REPL settings and add this: { ... "default_extend_env": {"PATH": "{PATH}:/home/myusername/bin"} ... } where the path points to the right directory. I tried replacing it with { ... "default_extend_env": {"PATH": "C:/Program Files/R/R-3.0.2/bin"} ..

“ No such file or directory” error happens when start SublimeREPL -python

Deadly 提交于 2019-12-02 12:53:06
问题 Everytime I start the python within sublimeREPL package, it gives me the error,there has already been a branch of discussion of this error,and the offical document gives the following solution "If the binary is not in your system path and you can’t or won’t change that, tweak SublimeREPL configuration:" { ... "default_extend_env": {"PATH": "{PATH}:/home/myusername/bin"} ... } I have changed the path to where the python interpreter is installed,say { "default_extend_env": {"PATH": "{PATH}:\

“ No such file or directory” error happens when start SublimeREPL -python

僤鯓⒐⒋嵵緔 提交于 2019-12-02 06:25:49
Everytime I start the python within sublimeREPL package, it gives me the error,there has already been a branch of discussion of this error,and the offical document gives the following solution "If the binary is not in your system path and you can’t or won’t change that, tweak SublimeREPL configuration:" { ... "default_extend_env": {"PATH": "{PATH}:/home/myusername/bin"} ... } I have changed the path to where the python interpreter is installed,say { "default_extend_env": {"PATH": "{PATH}:\\Python34"} } But it seems not correct, so which path name should I enter, the python interpreter path or

Display output from evaluating selection - Sublime Text Python REPL

别来无恙 提交于 2019-12-02 03:19:06
问题 I am using Sublime Text 3 and running OSX Mavericks. I am using the Sublime REPL package and I have adjusted the settings for that package such that I have "show_transferred_text" : true When a Python REPL window is opened, I have the nice option to send a chunk of code from the editor to it using Ctrl + , , s . But, doing so doesn't display any of the output of my commands, unless I include a print command. E.g. If I write the following x = 2.5 type(x) and use the Ctrl + , , s to send it to

Setting python path for sublimerepl from sublime text?

被刻印的时光 ゝ 提交于 2019-12-01 19:26:07
问题 I use python portable along with sublime portable of a memory stick and decided to install sublime REPL however when trying to use python portable as the build path for sublimerepl it does not specify it. To put it simply I can't specify the sublimerepl python path like I can with straight sublime text! I have tried adding the following into SublimeREPL.sublime-settings "default_extend_env": {"PATH": "{PATH}:C:\\Users\\Andy\\Documents\\_Main\\M-Stick Backups\\08.07.13\\Computing\\Python

SublimeREPL and IPython

断了今生、忘了曾经 提交于 2019-12-01 11:15:01
I fail when I tried to use IPython with SublimeREPL. My setup is: - Windows 8.1 - Sublime Text 3 - C:\Python34 - C:\Python27 - C:\Anaconda3\Scripts -> Here it's where Ipython is My PYTHONPATH and PATH are correct and I wrote in SublimeREPL settings - User: { "default_extend_env": {"PATH": "{PATH};C\\Anaconda3\\Scripts"} } It's solved. I make a file named Main.sublime-menu within the folder Sublime Text 3\Packages\User\SublimeREPL\config\Python [ { "id": "tools", "children": [{ "caption": "SublimeREPL", "mnemonic": "r", "id": "SublimeREPL", "children": [ { "caption": "Python", "id": "Python",

unable to send R code from a knitr document to SublimeREPL

给你一囗甜甜゛ 提交于 2019-12-01 09:44:21
I'm using Sublime 3, and I have a very simple question. SublimeREPL is working perfectly with R files, and Sublime compiles perfectly the knitr files (using LaTeXing) But if I want to send R code from a knitr file (.Rnw) I get the following error: Cannot find REPL for 'tex.latex.knitr.ing' (I'm using Ubuntu 14.04 by the way) Any ideas? Ok, so someone solved it here: https://github.com/wuub/SublimeREPL/issues/165#issuecomment-57658359 Just in case someone has the same problem: this file has to be edited: ~/.config/sublime-text-3/Packages/SublimeREPL/config/R/Main.sublime-menu and the aditional

SublimeREPL and IPython

跟風遠走 提交于 2019-12-01 09:29:20
问题 I fail when I tried to use IPython with SublimeREPL. My setup is: - Windows 8.1 - Sublime Text 3 - C:\Python34 - C:\Python27 - C:\Anaconda3\Scripts -> Here it's where Ipython is My PYTHONPATH and PATH are correct and I wrote in SublimeREPL settings - User: { "default_extend_env": {"PATH": "{PATH};C\\Anaconda3\\Scripts"} } 回答1: It's solved. I make a file named Main.sublime-menu within the folder Sublime Text 3\Packages\User\SublimeREPL\config\Python [ { "id": "tools", "children": [{ "caption":

Is it possible to disable syntax highlighting in Sublime REPL-tabs?

拈花ヽ惹草 提交于 2019-12-01 03:39:17
Is there any way to disable the syntax highlighting in SublimeREPL-tabs when a script is running? Please see this question for context: Red lines coming up after strings in SublimeREPL (python)? For example, when python-scripts run in Sublime REPL, apostrophes (') in the output-text get highlighted as syntax. Because of this, the last part of the line is highlighted as if the string (which in fact is text-output and not actual code) was not closed properly. This is what the output looks like: The highlighting is useful when Sublime REPL is running the interactive python shell, but when it just