Hi Jacobo,
sorry for responding so late. Usually I try to keep an eye on SublimeREPL
Google Alerts and forums, but I've been buried with paperwork for the past
several weeks (and there is no end in sight).
Regarding text transfer shortcuts. Please move them to Preferences -> Key
Bindings - User. This way when a new version of SublimeREPL is released,
updated sources won't overwrite your changes.
>
> Do you know of any way to force to open a new REPL everytime we fire up
> Sublime?
>
You can create a keybinding that will make it super easy.
{"keys": ["ctrl+f9"], "command": "run_existing_window_command", "args":
{"id": "repl_clojure", "file": "config/Clojure/Main.sublime-menu"}}
Or a simple plugin:
1) Tools -> New Plugin
2) Paste this
import sublime, sublime_plugin
def run():
sublime.active_window().run_command("run_existing_window_command", {"id":
"repl_clojure", "file": "config/Clojure/Main.sublime-menu"})
sublime.set_timeout(run, 2000)
3) Save as clojurerepl_autostart.py in your "User" directory.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en