Using Kawa in Emacs -
are there modes or resources kawa in emacs? i've checked, not able find any. mostly, i'd able run kawa repl inside of emacs, kind of completion/syntax checking great too.
i don't have prior experience kawa, have "universal" way deal repls: plugin isend + hacks
follow instructions in section 2 , section 3 of article http://wenshanren.org/?p=351#sec-2 setup isend (it's bit tedious, please let me know if have problems)
open shell in emacs, assume buffer name
*shell*
m-x shell
open kawa repl in
*shell*
classpath=/usr/local/lib/kawa.jar && export classpath && java kawa.repl
create new buffer test.kawa , turn on lisp-mode
m-x lisp-mode
(you can use mode want)associate
*shell*
test.kawam-x isend-associate *shell*
now type sexps in test.kawa, select them , press
c-enter
send them*shell*
execution (the cursor won't move)
Comments
Post a Comment