Skip to content
emacs logo

Emacs

Emacs is an extensible text editor written primarily in Emacs Lisp. While it excels at editing text, Emacs stretches the boundaries of what 'text' is.

Here are 3,202 public repositories matching this topic...

spacemacs
siwka
siwka commented Apr 11, 2018

Cloned, installed but linked. Any advice?

➜  Spacemacs git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
Cloning into '/Users/kasia/.emacs.d'...
remote: Counting objects: 64434, done.
remote: Compressing objects: 100% (47/47), done.
remote: Total 64434 (delta 24), reused 41 (delta 23), pack-reused 64364
Receiving objects: 100% (64434/64434), 37.94 MiB | 3.16 MiB/s, done.
Re
doom-emacs
Amatrelan
Amatrelan commented Feb 11, 2019

I created this meta issue to track missing documentation. I added [x] even
thought documentation might not be complete. This point is just to make easier
to people to find what module needs documentation, so they can easier contribute
to documentation.

If you want to contribute to documentation there is snippet template,
M-x -> yas-snippet-insert ->Doom module readme
Or in org-mode you ca

brotzeit
brotzeit commented Apr 17, 2019
DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook,
       Srun_window_configuration_change_hook, 0, 1, 0,
       doc: /* Run `window-configuration-change-hook' for FRAME.
If FRAME is omitted or nil, it defaults to the selected frame.  */)
  (Lisp_Object frame)
{
  run_window_configuration_change_hook (decode_live_frame (frame));
  return Qnil;
}
``
RickMoynihan
RickMoynihan commented Sep 27, 2019

Evaling the form (throw (ex-info "foo" {})) with M-x cider-pprint-eval-last-sexp-to-comment yields the empty comment string:

;; =>

Arguably it should either:

  1. Not yield a ;; => at all (just the empty string) (and appropriate cider error buffer)

or it should:

  1. Print the error in the comment.

The later might be useful when describing code interactions and REPL s

skrech
skrech commented Jun 20, 2018

Expected behavior

Ignore non-top-level dirs listed in projectile-globally-ignored-directories with both methods of indexing (native and alien).

Actual behavior

Fix introduced in #1119 fixes ignoring of non-top-level dirs for alien indexing mode but not for native.

Steps to reproduce the problem

  1. Put this in init.el:

projectile-globally-ignored-directories (append '("*__py

lsp-mode
cbourgeois
cbourgeois commented Oct 14, 2019

Hello,

After setting up lsp-mode, I noticed a signifcant slowdown in emacs starting time that using benchmark-init I traced to lsp-mode. I am using lsp-deferred and tried various use-package configurations but none was able to successfully speedup the startup time.

Here is the benchmark, note that flymake also takes a significant setup time even though it is disabled in the config :

whxvd
whxvd commented Jan 10, 2019

According to docstring M-x sp-clone-sexp RET on (| ()) should yield

(  ())
(  ())

because point is two spaces before an sexp, i.e. not immediately before. But the actual behavior results in

(  ()
   ())

as if it were executed on ( |()).

  • smartparens version: 20190103.2309
  • Active major-mode: lisp-interaction-mode
  • Smartparens strict mode: t
  • Emacs
techapu
techapu commented Jun 13, 2019

In the Issue #161 we have been talking about the org-brain "API", and the need to document the use of the org-brain functions from elisp with the needed arguments, parameters, etc. I want to work with you in what you need related to the more complex linking workflow possible.

All about the issue #163 is a good example of a coding, reference and documentation need for me. How do I

fleutot
fleutot commented Mar 29, 2018

This file structure:

$ ls
mycode.c  other_file.c
$ git init
Initialized empty Git repository in /home/gauthier/tmp/dumb/.git/
$ git add mycode.c && git commit -m"Init"
[master (root-commit) 5271e5a] Init
 1 file changed, 15 insertions(+)
 create mode 100644 mycode.c

mycode.c:

typedef int my_type_t;

my_type_t a;
my_type_t my_function(my_type_t in);
int main(void)
You can’t perform that action at this time.