Henrik Kjerringvåg
Henrik Kjerringvåg
I have a use-case where emoticons would be nice to have 😀 In fact, all use-cases could need a little more flare ✨
If you cycle a document that just have collapsed headers, no table of contents etc, I expect that cycling would toggle expand/collapse of those headers and not try all the...
By using fully qualified namespaces in classnames, we can pretty much get rid of name-collisions. What if garden would do something like this: ```clojure (ns foo (:require [garden.core :refer [css]]))...
Whenever `selectors/&` is used an exception is raised: `Assert failed: (vector? tagged-data)` Using the vector-form works `[:&:.foo]`, but as far as I know, that can not be combined with other...
```clojure [:.Container [(s/& (s/> (s/not :.Compact) (s/+ :* :*))) {:margin-left (u/rem 2)}]] ``` prints: ``` .Container &:not(.Compact) > * + * ``` instead of ``` .Container:not(.Compact) > * + *...
If you have Xvim set up with `set clipboard=unnamed`so that you can copy/paste between the global clipboard, the last character is always missing when pasting into Xcode from an external...
Using `t` or `f` for jumping to characters doesn't work with `[` or `]`.
What would it entail to add support for `org-msg`? I have yet to look into `ebdb`'s code, but if it is feasible and someone could make a high-level outline of...
## What's wrong It's no longer possible to clone https://git.savannah.gnu.org/git/emacs/nongnu.git due to a zero-padded file mode in the object `2699d230e3b592ae42506d7b5c969a7ac6a4593c`. I believe this is a `straight.el` specific mirror and thus...
```clojure (coerce/to-date "2018-03-08T09:46:48+01:00") ;; => #inst "2018-03-08T08:46:48.000-00:00" ;; Yay! (coerce/to-date "2018-03-08T09:46:48.7833333+01:00") ;; => nil ;; Nai! ``` In this case, replacing `coerce/to-date` with `js/Date.` worked just fine