Questions tagged [builtin]

9 questions
4
votes
3 answers

Find and replace a text among the files of a project

How can I do a "find and replace a string" in the files of a project? Is there a standard, built-in way?
Rakori
  • 143
  • 1
  • 3
4
votes
2 answers

Is Emacs using a TAGS file to locate built-in definitions?

Out of the box, my emacs build can jump to elisp function definitions. For example, I start emacs with no init file, type copy-to-buffer in the scratch buffer, hit M-., and it opens up simple.el.gz with the cursor on the defun for copy-to-buffer. I…
ivan
  • 1,928
  • 10
  • 20
4
votes
1 answer

Recover a built-in function that I accidentally unbound

I accidentally unbound a built-in function (a subr) from its usual symbol. Is there a generic way to recover it? Of course I could save my buffers and my session, exit Emacs and start another instance. That is, if the function I lost wasn't needed…
3
votes
1 answer

How do I change behaviour of eshell/rm (rm in eshell) tab completion?

Qestion: Is there a way to make eshell/rm (especially) either display a completion buffer even for few files or remove the . and .. entries for eshell/rm. Background (and some ranting): So I learned the hard way that in eshell/ls and eshell/rm tab…
Sparx
  • 1,111
  • 9
  • 20
1
vote
0 answers

see virtual/recent buffers when switching with fido

I've switched from ido to fido and I'm missing the feature of being able to open recently closed buffers that ido-mode provided with ido-use-virtual-buffers. I spent a lot of time searching for how to get this and reading all about icomplete and do…
hzuim992
  • 11
  • 2
1
vote
1 answer

Is there a way to check if a symbol is a built-in variable?

This is how you check if an object is a built-in function: (subrp (symbol-function 'assoc)) => t Is there an equivalent way to do this for variables as well?
John DeBord
  • 550
  • 3
  • 13
1
vote
3 answers

How to remove the remaining commands of removed built-in packages?

I've read here that you can delete the built-in packages from emacs at /usr/share/emacs/25.2/lisp in order to get rid of their commands which may clutter the minibuffer every time you want to execute something via M-X or at auto-completion pop ups…
1
vote
1 answer

how to quit describe-key function?

I forgot what a key is bound to, so I decided to run C-h k But after pressing C-h k, I've remembered about that key binding and decided to quit. So I pressed C-g. Instead of quitting that command, describe-key described about C-g.…
Chillar Anand
  • 4,042
  • 1
  • 23
  • 52
0
votes
1 answer

where to find a list of all the builtin functions that have been implemented in C?

Is there a list somewhere or a command that can be run to output all the functions that have been implemented in C?
zcaudate
  • 637
  • 4
  • 14