scicloj / wolframite

An interface between Clojure and Wolfram Language (the language of Mathematica)
https://scicloj.github.io/wolframite/
Mozilla Public License 2.0
56 stars 2 forks source link

(emacs integration) autocompletion on symbols doesn't work #36

Closed light-matters closed 9 months ago

light-matters commented 10 months ago

Using the latest version of (doom) emacs, where clojure autocompletion is otherwise working fine, loaded Wolfram symbols do not autocomplete. This is likely an emacs configuration issue rather than wolframite per se, but considering the intended audience it might be worth investigating.

concrete example:

(ns physics.cavity.simple-loss
  (:require
   [wolframite.core :as wl]))

(wl/load-all-symbols 'w)

(w/Pl...)

After loading all of the symbols, tab completion does not recover "w/Plus" and yet when Plus is fully typed, documentation appears in the modeline.

holyjak commented 9 months ago

Duplicate of #33