Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
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,160 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
brotzeit
brotzeit commented May 13, 2019
DEFUN ("frame-char-height", Fframe_char_height, Sframe_char_height,
       0, 1, 0,
       doc: /* Height in pixels of a line in the font in frame FRAME.
If FRAME is omitted or nil, the selected frame is used.
For a terminal frame, the value is always 1.  */)
  (Lisp_Object frame)
{
#ifdef HAVE_WINDOW_SYSTEM
  struct frame *f = decode_any_frame (frame);

  if (FRAME_WINDOW_P (f))
ahungry
ahungry commented Sep 9, 2019

I did some fast debugging last week on this, and it seems to be with how it's calling sesman to get the active sessions.

I think CIDER should work around this, as the behavior appears well defined at the sesman level (given an active buffer, give linked sessions).

However, the Common Lisp variant of this with SLIME and slime-selector works regardless of what buffer the user is currently in (

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
nloyola
nloyola commented Aug 23, 2019

Describe the bug
If there is a syntax error in the file and I call lsp-format-buffer, I do not get visual feedback that the formatting failed.

I can see the error the formatter generated in *lsp-log*.

To Reproduce
Create a syntax error in a file and then call lsp-format-buffer.

Expected behavior
An error should be shown to the user. Most likely in the minibuffer.

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.