summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-12Make do with a single connectionJose Antonio Ortega Ruiz
Separate connections for the REPL and Geiser commands was kind of neat, but it had the problem of synchronising the current namespace for both connections. A quick fix would have been to ask the scheme for the current namespace for every Geiser command in the REPL, but that, besides clunky, would add potentially prohibitive overhead for (real) remote connections. As it happens, using a single connection turned out to be not that difficult and relatively clean code-wise. We could even turn back to not use inferior schemes, and the net result of this refactoring would be the replacement of comint-redirect (which wasn't able to match the whole EOT token if it didn't arrive all at once) by transaction queues (which also makes geiser-connection's implementation cleaner). But using an inferior scheme has a dog-food value, and allows external processes to connect to the scheme being used by Geiser without further ado, which could be useful for debugging (although this is a lame excuse: nothing prevents you from starting a REPL server from emacs if you want). We'll see.
2010-11-12Debugger support, and Guile using itJose Antonio Ortega Ruiz
2010-11-12Better EOT token for more robust communicationJose Antonio Ortega Ruiz
2010-11-12Guile reconnected (but not debuggable (yet))Jose Antonio Ortega Ruiz
Or the importance of EOL. Switching to a transaction queue for communication with the Scheme process means that i had to care about sending eols in the queries... Guile was waiting for ever reading a metacommand taking a variable number of arguments. Argh: this has taken me a few hours -- i'm getting old.
2010-11-12Avoiding clobbering scm-strings with propertiesJose Antonio Ortega Ruiz
Apparently, (format "%s" sym) for a symbol read from a buffer where it's fontified, produces a string with the same fontification. Go figure.
2010-11-12NitsJose Antonio Ortega Ruiz
2010-11-11Merge branch 'guile-meta' into meta-reconnectionJose Antonio Ortega Ruiz
2010-11-11Racket reconnectedJose Antonio Ortega Ruiz
2010-11-11Elisp support for inferior schemesJose Antonio Ortega Ruiz
2010-11-11Partial work (connections working)Jose Antonio Ortega Ruiz
2010-11-09Merge branch 'master' into guile-metaJose Antonio Ortega Ruiz
2010-11-09Merge branch 'master' into guile-metaJose Antonio Ortega Ruiz
Conflicts: elisp/geiser-guile.el
2010-11-09Racket: remote REPLsJose Antonio Ortega Ruiz
2010-11-09Elisp buggettes and warningsJose Antonio Ortega Ruiz
2010-11-08README nitJose Antonio Ortega Ruiz
2010-11-08Documentation typosJose Antonio Ortega Ruiz
2010-11-08squarify again, now with numeric prefixJose Antonio Ortega Ruiz
2010-11-08geiser-squarify to toggle between () and []Jose Antonio Ortega Ruiz
2010-11-08Let geiser-connect take optional host and port argsJose Antonio Ortega Ruiz
2010-11-08Tweakings in switch-to-geiser (multiple REPLs)Jose Antonio Ortega Ruiz
2010-11-08Better handling of REPL's header lineJose Antonio Ortega Ruiz
2010-11-08Connection plumbing: ability to specify EOT token addedJose Antonio Ortega Ruiz
2010-11-07Interruptible connection waitingJose Antonio Ortega Ruiz
2010-11-07Better connection logsJose Antonio Ortega Ruiz
2010-11-07Pumbling cleanupsJose Antonio Ortega Ruiz
2010-11-07NitsJose Antonio Ortega Ruiz
2010-11-07Completion: not completing the empty stringJose Antonio Ortega Ruiz
2010-11-06Completion: falling back to module name completion for realJose Antonio Ortega Ruiz
2010-11-06Doc fixJose Antonio Ortega Ruiz
2010-11-06REPL: remembering last connection addressJose Antonio Ortega Ruiz
2010-11-06Racket: little evaluation nitsJose Antonio Ortega Ruiz
2010-11-06Manual nitsJose Antonio Ortega Ruiz
2010-11-06Manual: more precise docs on completionJose Antonio Ortega Ruiz
2010-11-05Documentation nitsJose Antonio Ortega Ruiz
2010-11-05Documentation tweakingJose Antonio Ortega Ruiz
2010-11-05Documentation fixJose Antonio Ortega Ruiz
2010-11-05Fix for TAB in REPL, and BACKTAB going to previous errorJose Antonio Ortega Ruiz
2010-11-04Manual: image update and grammatical errorJose Antonio Ortega Ruiz
2010-11-01Better error message for edit-symbol-at-pointJose Antonio Ortega Ruiz
2010-10-31Merge branch 'master' into guile-metaJose Antonio Ortega Ruiz
2010-10-31REPL: TAB when away from last prompt goes to next errorJose Antonio Ortega Ruiz
2010-10-31REPL: RET on an error jumps to itJose Antonio Ortega Ruiz
2010-10-31Merge branch 'master' into guile-metaJose Antonio Ortega Ruiz
2010-10-31Informational logs disabled by defaultJose Antonio Ortega Ruiz
Set geiser-log-verbose-p to t to enable all logs. Calling geiser-show-logs with a prefix argument will do that for you.
2010-10-31Always fallback to edit-module in M-.Jose Antonio Ortega Ruiz
2010-10-31Simple tables (not yet used)Jose Antonio Ortega Ruiz
2010-10-31Missing, if thankful, texi fileJose Antonio Ortega Ruiz
2010-10-31Documented thanksJose Antonio Ortega Ruiz
2010-10-31Fix for geiser-doc-moduleJose Antonio Ortega Ruiz
2010-10-31Fix for geiser-edit-moduleJose Antonio Ortega Ruiz