Skip to content
#

Emacs

emacs logo

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 5,077 public repositories matching this topic...

doomemacs
hlissner
hlissner commented Feb 18, 2020

As Doom continues to grow, so have incoming bug reports for modules I do not use and toolchains I know little about, like :lang clojure or :tools ein, and so I struggle to support them.

If you know a little nix and use Doom, consider contributing a shell.nix file to the module(s) you use the most. Particularly :lang modules, so that I can get a test environment up and running to test ag

is:feature help wanted re:modules good first issue
brotzeit
brotzeit commented May 8, 2019
DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible,
       0, 1, "",
       doc: /* Make the frame FRAME visible (assuming it is an X window).
If omitted, FRAME defaults to the currently selected frame.  */)
  (Lisp_Object frame)
{
  struct frame *f = decode_live_frame (frame);

  /* I think this should be done with a hook.  */
#ifdef HAVE_WINDOW_SYSTEM
  if (FRA
good first issue Active PR
dvdkhlng
dvdkhlng commented Feb 23, 2022

Expected behavior

M-x projectile-switch-open-project should not list projects for which I previously ran M-x projectile-kill-buffers

Actual behavior

M-x projectile-switch-open-project does lists projects for which I previously ran M-x projectile-kill-buffers

Steps to reproduce the problem

Make sure you have internal buffers (buffer name prefixed with space " ") fo

laheadle
laheadle commented May 28, 2022

Expected behavior

Setting the option to customize the behavior of cljfmt should take effect by customizing that behavior.

Actual behavior

Setting the option to customize the behavior of cljfmt has no effect.

Steps to reproduce the problem

I have set:

(setq cider-format-code-options
        '(("remove-consecutive-blank-lines?" t)
          ("remove-multiple-non-i
enhancement good first issue
munen
munen commented Jul 7, 2022

Org mode syntax allows for links to CUSTOM_ID like so:

* TODO CR: Ability to link to CUSTOM_ID headers
:PROPERTIES:
:CUSTOM_ID: demo_link
:END:

* Unrelated stuff

This links to the [[#demo_link][change request]].

One option would be to use native JS with elem.scrollIntoView().

enhancement good first issue
c4eater
c4eater commented Feb 19, 2021

Hi,
Looks like auto-complete ignores completion-styles when building the candidate list...
Problem shows itself on non substring based completion styles, eg. partial-completion.

To reproduce:
(Emacs 27.1, auto-complete #aafd3f5)

; <emacs --no-init-file>
; <set up path to auto-complete>
(require 'auto-complete)
(require 'auto-complete-config)
(ac-config-default)
(define-key
question good first issue