Skip to content
clojure logo

Clojure

Clojure is a functional, dynamic, general-purpose programming language. It provides built-in concurrency support via software transactional memory and asynchronous agents, and offers a rich set of immutable, persistent data structures. Clojure runs on JVM, JavaScript VMs, and Common Language Runtime.

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

ekkl
ekkl commented Jul 9, 2018
  1. Select theme with thick strip in line number block.
  2. Save and restart. Open some file. Нou see that the first characters of the lines are hidden under stripe.
  3. Open another file. All display properly.
  4. If you see carefully that the whole block with line numbers in the first case is shifted to the left.
    First file
    First file
PombeirP
PombeirP commented Dec 7, 2018

Problem

Currently, push notifications are not grouped (even though we call setGroupSummary), so the user potentially ends up with a ton of push notifications in the notification center.

Implementation

We should:

  • maintain a summary PN with a fixed ID
    • we call setNotificationId on it so we can update it later without creating a new one. Maybe the sender ID hash (from) can be used
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 (

colinhicks
colinhicks commented Sep 29, 2016

Currently, changes to plugin information models need to be mirrored, manually in the respective README.md.

This proposal outlines a possible approach to:

  1. Generate the relevant portion of the README directly from the info model.
  2. Integrate into the existing plugin release process.

A: Create a doc-gen lein plugin to render an information-model map into markdown

  • Content should correspond
martinklepsch
martinklepsch commented Dec 22, 2017
Classpath conflict: org.clojure/clojure version 1.8.0 already loaded, NOT loading version 1.3.0

If you specify a Clojure version in boot.properties and don't specify the same Clojure version in your :dependencies you will get a warning like the one above.

Not sure if this is worth it but we could provide some more context for the specific case of Clojure:

Classpath confli
hlship
hlship commented Mar 21, 2017

Tracking down a problem with the latest upgrade. Because of a resolve failure, the arguments to a field are included in an error map; one value is a java.time.LocalDateTime. Cheshire throws an exception when streaming this as JSON, and the final result is a response with a body that is the empty string.

The right solution is to use cheshire.generator/add-encoder:

(add-encoder LocalDa
liberator
You can’t perform that action at this time.