summaryrefslogtreecommitdiff
path: root/elisp
AgeCommit message (Collapse)Author
2010-11-13CleanupsJose Antonio Ortega Ruiz
Nothing here, move on.
2010-11-13geiser-mode-auto-p: automatic geiser-mode is now optionalJose Antonio Ortega Ruiz
It hadn't occurred to me that anyone wouldn't want non-automatic geiser-mode often enough to require its own customization variable. Rotty proved me wrong. Or maybe not, but he deserves a custom var!
2010-11-13Superior schemesJose Antonio Ortega Ruiz
Inferior schemes weren't really a good idea, were they? With remote connections one can launch an external scheme to debug Geiser anyway. And everything is (ahem, will be) simpler when we add new implementations.
2010-11-12Hiding a bit inferior scheme buffersJose Antonio Ortega Ruiz
By prefixing their name with a space... an argument against inferior schemes, btw, is that they raise the barrier to entry for new schemes: they must provide a networked REPL server.
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
Conflicts: elisp/geiser-guile.el
2010-11-09Racket: remote REPLsJose Antonio Ortega Ruiz
2010-11-09Elisp buggettes and warningsJose 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-06REPL: remembering last connection addressJose Antonio Ortega Ruiz
2010-11-06Racket: little evaluation nitsJose Antonio Ortega Ruiz
2010-11-05Fix for TAB in REPL, and BACKTAB going to previous errorJose Antonio Ortega Ruiz
2010-11-01Better error message for edit-symbol-at-pointJose 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-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-31Fix for geiser-doc-moduleJose Antonio Ortega Ruiz
2010-10-31Fix for geiser-edit-moduleJose Antonio Ortega Ruiz
2010-10-30Elisp: more flexible parsing of :eval and :ge formsJose Antonio Ortega Ruiz
This allows the implementation decide the concrete structure of the code sent to the REPL. For instance, it doesn't need to be a single s-expression, and argument order can be re-arranged.
2010-10-24Locals completion: a fix and an extensionJose Antonio Ortega Ruiz
- ((foo wasn't being completed - define-syntax makes its first argument a bound local
2010-10-23Using smart tab mode in REPLJose Antonio Ortega Ruiz
2010-10-23A proper (let's hope) fix for the sluggishness problemJose Antonio Ortega Ruiz
2010-10-23Temporary fix for sluggishness while scanning big formsJose Antonio Ortega Ruiz
2010-10-16Bug fix: setting correct default-directory in debug buffersJose Antonio Ortega Ruiz
2010-10-15WhitespaceJose Antonio Ortega Ruiz
2010-10-12Menus: callers/callees active only if availableJose Antonio Ortega Ruiz
2010-10-11Guile: remote REPLs (connect-to-guile)Jose Antonio Ortega Ruiz
geiser-connect (or its specialisation, connect-to-guile) working for Guile, where the external process is started with the new --listen flag.
2010-10-11Remote REPLs: elisp support (geiser-connect)Jose Antonio Ortega Ruiz
New user command geiser-connect, which will try to connect to a remote server and use it in the REPL.