The Wayback Machine - https://web.archive.org/web/20210308005706/https://github.com/topics/emacs
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 4,288 public repositories matching this topic...

doom-emacs
bnjmnt4n
bnjmnt4n commented Feb 16, 2021

It would be great if there were a module for the Zig programming language in the future. Right now, the tooling around Zig is still a little nascent, but I've created a WIP module in my own doom configuration: https://github.com/bnjmnt4n/system/tree/ab2c5b0072d2923372bfc3966fc6c1f834173582/doom/modules/lang/zig.

Plugins:

dadinn
dadinn commented Sep 3, 2020

I am running Emacs with the -nw flag from the terminal.

When looking at the commit graph using log all-branches (keymap l b) I cannot differentiate which is the currently checked-out branch, as they all look the same.

In contrast, when using Emacs GUI the current branch is highlighted/boxed, which makes it highly visible.

I would expect the font-faces to be different in the terminal i

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
nigredo-tori
nigredo-tori commented Feb 17, 2021

Expected behavior

With projectile-create-missing-test-files enabled, when using projectile-toggle-between-implementation-and-test in a file like .../src/main/.../foo.scala, Projectile should always create a file .../src/test/.../fooSpec.scala in the corresponding test directory if such file doesn't exist.

Actual behavior

If the project already contains a file with a name

bbatsov
bbatsov commented Jan 21, 2021

For JavaDoc to work properly for third-party libraries we need to register their JavaDoc like this:

(javadoc/add-remote-javadoc "com.amazonaws." "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/")
(javadoc/add-remote-javadoc "org.apache.kafka." "https://kafka.apache.org/090/javadoc/")

For the sake of convenience we can add some configuration map that gets evaluated when a REP