Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
;;; multi-select.el --- Provides multiple noncontiguous selections. | |
;; This file is NOT part of Emacs. | |
;; Copyright (C) 2005, Steve Yegge <steve.yegge at gmail dot com> | |
;; Parts Copyright (C) Lawrence Mitchell <[email protected]> | |
;; Filename: multi-select.el | |
;; Version: 0.9 (pending XEmacs support for version 1.0) | |
;; Author: Steve Yegge <stevey at gmail dot com> | |
;; Created: April 10th 2005 |
#!/bin/bash | |
# Applies the Monokai color scheme to the current terminal session. | |
declare -A map0 | |
map0=( [foreground ]='#F8F8F2' [background ]='#272822' | |
[cursor ]='#F8F8F0' [selection ]='#49483E' | |
[pink ]='#F92672' [green ]='#A6E22E' | |
[yellow ]='#E6DB74' [blue ]='#66D9EF' | |
[purple ]='#AE81FF' [orange ]='#FD971F' | |
[gray ]='#75715E' ) |
# Let's not localize programming languages. Please >_< | |
# | |
# Feel free to fork and expand and/or add more languages as an example | |
# to why this would be horrible. | |
# Ruby in English | |
if user.is_alive? | |
# send spam mail |
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |
/** | |
* This file is licensed to you 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 | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
# Word and Character Count service for Mac OS X | |
# | |
# Adds a Word and Character Count option to the text selection context menu in all apps | |
# | |
# Use Automator.app to create a new service, and then select the Run AppleScript action. | |
# Paste this code in to the text box, and save as Word and Character Count. Now switch to | |
# a new app, select some text, and open the context menu to find the new option. | |
on run {input, parameters} | |
tell application "System Events" |