- Multiple cursors (or carets)
- Move caret to next blank line (coming)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns friendtest.core | |
(:use midje.sweet | |
ring.mock.request | |
compojure.core | |
friendtest.core | |
[ring.middleware.session store memory] | |
[ring.middleware.session.memory :only (memory-store)] | |
[ring.middleware.session :only (wrap-session)] | |
[cemerick.friend.util :only (gets)]) | |
(:require [compojure [handler :as handler]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
// Move tabs | |
// | |
// {"position": "-1"}, {"position": "+1"} | |
{"keys": ["alt+1"], "command": "move_tab", "args": {"position": "0"}}, | |
{"keys": ["alt+2"], "command": "move_tab", "args": {"position": "1"}}, | |
{"keys": ["alt+3"], "command": "move_tab", "args": {"position": "2"}}, | |
{"keys": ["alt+4"], "command": "move_tab", "args": {"position": "3"}}, | |
{"keys": ["alt+5"], "command": "move_tab", "args": {"position": "4"}}, | |
{"keys": ["alt+6"], "command": "move_tab", "args": {"position": "5"}}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// ALT+CLICK -> Go to definition | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["alt"], | |
"press_command": "drag_select", | |
"command": "goto_definition" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; User behaviors | |
;; ----------------------------- | |
;; Behaviors are stored as a set of diffs that are merged together | |
;; to create the final set of functionality that makes up Light Table. You can | |
;; modify these diffs to either add or subtract functionality. | |
;; | |
;; Behaviors are added to tags, objects with those tags then automatically gain | |
;; whatever logic the behavior imparts. To see a list of user-level behaviors, | |
;; start typing a word related to the functionality you want in between the square | |
;; brackets (e.g. "theme"). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["super"], | |
"press_command": "drag_select", | |
"command": "goto_definition" | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2014 Jared Rummler <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn- title-case-word [w] | |
(if (zero? (count w)) | |
w | |
(str (Character/toTitleCase (first w)) | |
(subs w 1)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local net = require "luanode.net" | |
local host = "userstream.twitter.com" | |
local secure = process.argv[1] == "secure" | |
if secure then | |
console.log("Using secure connection (HTTPS)") | |
local c = net.createConnection(443, host) | |
c:on("connect", function() |