Skip to content

Instantly share code, notes, and snippets.

;;; evil-indent-textobject.el --- evil textobjects based on indentation
;; Original evil-indent-textobject.el Copyright (C) 2013 Michael Markert
;; Modifications Copyright (C) 2014 Eivind Fonn
;; Author: Eivind Fonn <evfonn@gmail.com>
;; Created: 2014-08-31
;; Version: 1.0.0
;; Package-Version: 20140918.707
;; Keywords: convenience evil
;; URL: http://github.com/TheBB/evil-indent-textobject
@mahinshaw
mahinshaw / computed.cljs
Created March 24, 2016 17:39
Utlizing `om/computed` to pass local state between components.
(ns computed
(:require [om.next :as om :refer-macros [defui]]
[sablono.core :as html :refer-macros [html]))
(defui SubComponent
om/IQuery
(query [this] [:id
:data])
om/Ident