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
(progn | |
;; The number of defined-colors ... probably won't need this... :) | |
;; (setq c (list-length (defined-colors))) | |
(insert "var emacsColors = [\n") | |
;;(setq beg (point)) | |
(loop for c in (defined-colors) |
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
;;; hideshowvis.el --- Add markers to the fringe for regions foldable by hideshow.el | |
;; | |
;; Copyright 2008-2012 Jan Rehders | |
;; | |
;; Author: Jan Rehders <[email protected]> | |
;; Contributions by Bryan Waite and Michael Heerdegen | |
;; | |
;; Version: 0.4 | |
;; Additional contributions: 2010, 2012, Jason Milkins. | |
;; |
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
html { font-size: 62.5%; } | |
html, body { height: 100%; } | |
body { | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: 150%; | |
line-height: 1.3; | |
color: #f6e6cc; | |
width: 700px; | |
margin: auto; |
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
# yasnippet: snippet-mode | |
# name: choose | |
# -- | |
\${$1:$$(yas/choose-value '( $0 ))\} |
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
(setq htmlEntitiesReplaceMap | |
'( | |
["\"" """] | |
["&" "&"] | |
["'" "'"] | |
["<" "<"] | |
[">" ">"] | |
["¡" "¡"] | |
["¢" "¢"] | |
["£" "£"] |
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
http://www.labnol.org/software/keyboard-typing-shortcuts-for-iphone-ipad/13564/ |
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
#name: DependencyProperty | |
# -- | |
public static readonly DependencyProperty ${1:name}Property = | |
DependencyProperty.Register( | |
"$1", | |
typeof(${2:type}), | |
typeof(${3:enclosingType})); | |
public $2 $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
(defun move-text-internal (arg) | |
(cond | |
((and mark-active transient-mark-mode) | |
(if (> (point) (mark)) | |
(exchange-point-and-mark)) | |
(let ((column (current-column)) | |
(text (delete-and-extract-region (point) (mark)))) | |
(forward-line arg) | |
(move-to-column column t) | |
(set-mark (point)) |
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
;;; sockpuppet.el - Emacs client interface for sockpuppet chat server | |
(defconst sockpuppet-version "0.8.0") | |
;; Copyright (c)2010 Jasonm23. (by)(nc)(sa) Some rights reserved. | |
;; Author: Jasonm23 <[email protected]> | |
;; This file is not part of GNU Emacs. | |
;; This program is free software; you can redistribute it and/or | |
;; modify it under the terms of the GNU General Public License as |
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
<?xml version="1.0" encoding="utf-8"?> | |
<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/mx" | |
autoDrawBackground="false"> | |
<s:Group width="600" | |
height="70"> | |
<s:Rect width="100%" | |
height="100%" | |
radiusX="6" |