dylan-emacs-support icon indicating copy to clipboard operation
dylan-emacs-support copied to clipboard

Emacs mode for indenting and highlighting Dylan code

Results 12 dylan-emacs-support issues
Sort by recently updated
recently updated
newest added

## Bugs / to-do list * Don't highlight macro variables (e.g., "?x:" in ?x:name) as keywords. Just highlight the "x" as a variable binding. * Customize fill-column to some acceptable...

dylan-mode

The majority of sources/lib/big-integers/double-integer.dylan appears to be commented out because it uses `dylan/*` as the name for `*` imported from the `dylan` module. (This is obviously low priority.)

dylan-mode

What we have now: ``` let foo = really-long-function-name( long-argument-1(), long-argument-2()) ``` What I want: ``` let foo = really-long-function-name( long-argument-1(), long-argument-2()) ``` Note, **never** this: ``` let foo =...

dylan-mode

dylan-mode highlights macros like with-open-file. If you import file-system with prefix "fs/" (or probably anything else) the highlighting of fs/with-open-file doesn't happen. To solve this I suppose we need a...

dylan-mode

The second line doesn't indent correctly (or at all): ``` if (starts-with?(url, "https://github.com")) make() ``` If I change `"https://github.com"` to the empty string dylan-mode indents the second line correctly.

dylan-mode

Leaving this here as a reminder. Could be useful but I haven't tried it. http://www.flycheck.org/en/latest/index.html

So I set up DIME with this code ``` ;;; Dylan (add-to-list 'load-path "~/dylan-mode") (setq inferior-dylan-program "dswank") (require 'dime) (dime-setup '(dime-dylan dime-repl)) (setenv "OPEN_DYLAN_USER_REGISTRIES" "/home/rage/Downloads/opendylan-2014.1/sources/registry") ``` but when I try...

dime

File compilation through dime fails with an error, ``` Evaluation aborted on { : #f is not of type {: }}. ``` I've tried importing, opening and building all through...

dime

SLIME transmits always the current package over the wire -- so does DIME. But Dylan has the concept of both libraries (unit of compilation), modules (namespace); and additionally Open Dylan...

dime

The [OD DIME docs](https://opendylan.org/getting-started-cli/dylan-mode-for-emacs.html) say that parameter lists should be displayed when you type `(` and when you type `,` inside a parameter list. This isn't happening for me despite...

dime