Skip to main content

Questions tagged [variables]

for variables in Emacs Lisp, which are symbols with values. The symbol’s name is also called the variable name. Most variable names, by convention, consist of lowercase, ordinary words separated by hyphens.

Filter by
Sorted by
Tagged with
0 votes
1 answer
45 views

When trying to modify a face through M-x customize-face, I got this error Symbol’s value as variable is void: tool-bar-map and the buffer shows nothing. I retried with all the contents of my .emacs ...
nougako's user avatar
  • 139
0 votes
0 answers
33 views

Every time I start up spacemacs, some variables are not defined. I get: "Symbols function definition is void: nil" However, when I refresh the configuration (SPC f e R), everything works ...
kai90's user avatar
  • 113
3 votes
0 answers
36 views

Is there an Emacs tool that show the dependencies for every file from a project? I have undeclared errors at an Emacs project. If the variable or the function/macro into file is not declare yet, Emacs ...
Mitu Gabriel's user avatar
0 votes
1 answer
119 views

I'm attempting to centralize my key-binds in my org-literate Emacs config, that expands out to a series of use-package declarations. The issue I'm having is with the passing of keys as variables into ...
Alex Stragies's user avatar
0 votes
3 answers
108 views

Consider the following code (defun somefunc (text) (message "hello, somefunc called with %s" text) ) (defun func-caller (func) (func "some string") ) (func-caller 'somefunc) ...
Harald's user avatar
  • 404
0 votes
0 answers
26 views

Version: GNU Emacs 29.4 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.43, cairo version 1.18.0) I have an emacs configuration file which has followed me around through numerous different versions. ...
Alasdair McAndrew's user avatar
1 vote
0 answers
24 views

I have this code: (defun my-test (type) (org-roam-ql-nodes-files '(and (properties "TYPE" (format "%s" type))))) (my-test "wiki") It throws a type error ...
lyndhurst's user avatar
  • 123
0 votes
2 answers
96 views

I'm using the built in use-package macro of GNU Emacs 29.4. When I do (use-package magit :bind ("C-x g" . magit)) magit does not get loaded on emacs startup, as expected. But when I use ...
bird-dancer's user avatar
0 votes
0 answers
38 views

As an aid, let me show you a video: https://streamable.com/c2bnko, though it's not needed to follow this question. I'm going to edebug org-id-alist-to-hash (0:13 in video). First I verify that the ...
meedstrom's user avatar
  • 189
0 votes
1 answer
60 views

How can I tell emacs/e-lisp to check if a user defined variable is a full path to a file or just a folder name? Currently, for one particular mode, user can just define variable for a sqlite database ...
kakk11's user avatar
  • 103
0 votes
1 answer
114 views

I'm getting back in to emacs after a few years away, and my old init.el is throwing up warnings like this: ⛔ Warning (comp): init.el:114:7: Warning: assignment to free variable ‘c-basic-offset’ ⛔ ...
Dan's user avatar
  • 279
0 votes
0 answers
59 views

I'm using emacs29 on linux. At present, if I load a file with the extension '.tsx', and then do 'M-x lsp-mode' I get an error: 'Symbol’s value as variable is void: lsp-ada-project-file' I assume that ...
bob.dobbs's user avatar
  • 111
0 votes
1 answer
135 views

I love using cape in text mode, but I cannot figure out how to stop it from activating in programming modes. Is it possible to either only enable it in certain modes or to disable it in specific modes?...
J. Mini's user avatar
  • 265
3 votes
1 answer
91 views

Dealing with a one-file elisp package, I wonder if there is a nice way to see unused functions and variables after some major refactoring. I can go through the code and do xref-find-references. But ...
Harald's user avatar
  • 404
3 votes
1 answer
149 views

When I run the following three lines with eval-region (defcustom custom-var "some-custom-value" "for testing only") (setq indirectRef (make-symbol "custom-var")) (message ...
Harald's user avatar
  • 404

15 30 50 per page
1
2 3 4 5
16