comint-mime
comint-mime copied to clipboard
Display graphics and other MIME attachments in Emacs shells
It works when line 99 of comint-mime.el is changed: (url-filename url) --> (url-host url)
On Ubuntu 20.04.3 LTS, I use self-compiled git master Emacs, and installed `comint-mime` via [`straight`'s `use-package` integration](https://github.com/raxod502/straight.el#integration-with-use-package) as follows: ```emacs-lisp (use-package comint-mime :straight ( :host github :repo "astoff/comint-mime" :files (:defaults...
When using comint-mime in shell-mode, it complains that the command `hostname` cannot be found ``` bash: hostname: command not found ``` Is there perhaps a more portable way to retrieve...
A few small adaptations: - might be worth indicating in the instructions that coreutils need to be installed - probably need to use "file -bI" instead of "file -bi" (in...
Hi, I'm trying to use your package with spacemacs, but installing the package and activating it via `comint-mime-setup` in the REPL doesn't seem to have any effect. I also tried...
If `comint-mime-prefer-svg` is non-nil, the ipython config might be overwritten (e.g. `~/.ipython/profile_default/ipython_config.py`). Is it desirable for emacs to configure ipython? I guess it maybe is, since most other ipython consoles...
It's great that svg support has been added! But modifying [matplotlib rcParams is a bug](https://github.com/astoff/comint-mime/commit/ca278064dac431b8c3f72ab1b860bf9c9b8d8d60#diff-c0d5a4225d794dd3dd4a76046245ef1cc8c0cee0d9aab2701035621cdac43188R35) IMHO, as it changes the current mpl style (which might have set the `facecolor`) and...
Ideally can be toggled for each image or for all images in a given shell buffer.
First, congratulations on the package! After trying it out several versions in the past two years it finally works really well. For `altair` charts, it was enough to use `altair.renderers.enable('svg')`...