17,804 questions
0
votes
0
answers
22
views
Writing elisp exwm function to switch workspaces
I'm trying to write elisp functions to work with exwm to switch to the next or previous workspaces and I came up with the following. They work as required with M-x, but when binding to a key, they don'...
0
votes
0
answers
30
views
Error downloading markdown mode when installing lsp-mode
I'm trying to follow steps from the official website: https://emacs-lsp.github.io/lsp-mode/page/installation/
When i do M-x package-install and type in lsp-mode it gives the following result in the *...
1
vote
0
answers
36
views
How do I disable blink-and-insert upon entering closing bracket in mg editor c-mode?
I use the mg MicroGNUEmacs editor, a small emacs clone, and encountered a problem upon using c-mode. Whenever I type "}", ")", or "]", the cursor is taken to the matching ...
0
votes
2
answers
43
views
emacs lisp: symbols and keywords not interchangable in e.g. insert-button
running emacs29 on windows/cygwin, have noticed that:
(insert-button "foobar" 'help-echo "Hovering")
works just fine with "Hovering" tooltip, while
(insert-button "...
Advice
1
vote
0
replies
39
views
How to export from Orgmode to `.docx` via Pandoc filter with custom style NAMES?
I have a file in Orgmode, and I have to export it to .docx format using a heavily customised .docx template (publishers requirement). Specifically, all paragraph styles have their own names, including ...
0
votes
0
answers
31
views
Is there a way to make Emacs underline only part of the text when receiving long diagnostics?
In VS Code, when a diagnostic is received by the client, only tree dots appear under the first caracters of the concerned text.
Is there a way to customize Emacs to do the same when it receives long ...
0
votes
0
answers
50
views
how to see full error message from emacs verilog-batch-auto
I am using the following command line to run the auto processing on a verilog file:
emacs -batch file.v -f verilog-batch-auto;
When I get the error, it is not printed entirely, so the source of the ...
1
vote
0
answers
72
views
No *cider-error* buffer and no stacktraces with shadow-cljs
I am using Emacs+Cider to develop a ClojureScript project with shadow-cljs.
When I am using Cider with a .clj project, everything works fine. But in shadow-cljs projects specifically, I don't get the ...
1
vote
0
answers
39
views
How to properly associate .omnijs files with typescript-ts-mode in doom emacs?
I am using doom emacs as an editor for writing OmniJS automation files. According to the instructions, I've downloaded the tsconfig.json and omnifocus.d.ts files and put them in my project folder. ...
0
votes
1
answer
85
views
Stop emacs to replace spaces or tabs in Makefiles
I have upgraded from Emacs 29 to 30 and set indent-tabs-mode no nil. In makefile-mode the indent-tabs-mode is set. Therefore, Emacs replaces 8 spaces with a tab character.
In version 29, the spaces ...
0
votes
0
answers
51
views
org-agenda-redo affected by evil state hook
I use the code
(add-hook
'evil-insert-state-entry-hook
(lambda ()
(global-hl-line-mode 0)))
(add-hook
'evil-insert-state-exit-hook
(lambda ()
(global-hl-line-mode 1)))
to make it more clear ...
0
votes
1
answer
61
views
VSCode with DVT: Verilog indentation/formatting of ports declaration lists like in Emacs
I move from Emacs to VSCode with DVT for Verilog.
In Emacs by a single push of Tab I am able to indent/format beautifully the whole ports declaration list so that all declarations are aligned ...
1
vote
0
answers
80
views
Ligatures working in some modes but not others in Emacs 30.2
I have installed emacs using nix-darwin with home-manager. The version is:
GNU Emacs 30.2 (build 1, x86_64-apple-darwin24.6.0, NS appkit-2575.70 Version 15.6 (Build 24G84))
I have set it up using ...
0
votes
0
answers
48
views
Can I remap/swap two keys for all keyboard commands (all ctrl, alt, shift, etc combinations) that use these keys, but retain for normal text editing
I have a custom keyboard and I want to map "n", "e", "i", "u" for movement, instead of "b", "n", "f", "p".
I wish to ...
0
votes
0
answers
43
views
Emacs interactive functions that generate lisp-errors with some names when using Ivy and lsp
Many interactive functions generate lisp errors depending on the function name when using ivy and lsp and debugging it is difficult (in part because of the bytecode compile-function references). This ...