simurgh9
simurgh9
As the title reads, sometimes when there are emails from different senders at the start-up time, there are multiple notifications (see the image bellow). Is there a nice way (or...
Steps to reproduce, 1. Put `test.el` in the current working directory. ```lisp (package-initialize) (require 'use-package) (use-package treemacs) (use-package lsp-mode) (use-package dap-mode :custom (dap-auto-configure-features '(sessions locals controls tooltip repl)) :config (use-package...
Fixes #10.
I'd like to add page-number in the mode-line when looking at a pdf in `pdf-view-mode` from [pdf tools](https://github.com/politza/pdf-tools) package. ```lisp (format "%d/%d " (eval `(pdf-view-current-page)) (pdf-cache-number-of-pages)) ``` This returns what...
The `alert.el` library has a built in style `osx-notifier`, `C-h v alert-styles:` has an element, `(osx-notifier :title "Notify using native OSX notification" :notifier alert-osx-notifier-notify)` But when set like this: `(mu4e-alert-set-default-style...
`curl 'wttr.in/?format=%t\n&m'` returns, e. g., `+10°C`. I want it to be just `10°C` unless the temperature is bellow zero. So `-10°C` should have a sign while positive should not. Is...
## Issue description If the directory has a `test.html` and `index.html` and we run, ~~~ live-verser --entry-file=test.html ~~~ I expect test.html to open but index.html does. Is this by design?...
Emacs stores temporary dot files, e. g., program.c when edited and unsaved for `auto-saved-timeout` seconds will be copied to something like `.#program.c` and written on disk. This file shows up...
According to the [Homebrew Documentation](https://docs.brew.sh/Homebrew-and-Python#brewed-python-modules), ``` For brewed Python, modules installed with pip or python3 setup.py install will be installed to the $(brew --prefix)/lib/pythonX.Y/site-packages directory (explained above). Executable Python scripts...
When I run `M-x lsp-mssql-connect` and selected the server, I get: `lsp-request: method not supported: connection/connect`. I am running `sqls Version:0.2.19, Revision:a2584ef` and Emacs 28. Here are my configs, ```lisp...