Arc Forumnew | comments | leaders | submitlogin
Vim + Arc
20 points by s3graham 5923 days ago | 6 comments
http://h4ck3r.net/vimarc0.tar.gz

Untar at the same level as you untarred arc0.tar. arc0/vimarc_readme.txt for setup details.

Ctrl-Enter: sends the current top-level form to arc, Ctrl-Shift-Enter: does '(load "currentfile")'

You still have the repl in the shell window where you launched arc to do other random stuff.



1 point by lojic 5923 days ago | link

Just out of curiosity, how much better is this than using a Scheme or Lisp filetype ?

-----

3 points by s3graham 5923 days ago | link

It's not a ft, it's interaction with an inferior process. I'm still using ft=lisp, but if someone wants to do a syntax highlight that'd be cool.

-----

1 point by mdemare 5923 days ago | link

ImportError: No module named pexpect

python 2.5 on OSX

-----

1 point by s3graham 5923 days ago | link

Try: easy_install pexpect

-----

1 point by mdemare 5923 days ago | link

easy_install: command not found

-----

3 points by s3graham 5923 days ago | link

Sorry, that sucks. pexpect comes with Python on my platform. I don't have an OSX box to test on.

You can either install easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall#installi...

Or, do a manual install for pexpect if you care enough: http://pexpect.sourceforge.net/

-----