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
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb | |
index 8e562c7..5cded5d 100644 | |
--- a/lib/bundler/cli.rb | |
+++ b/lib/bundler/cli.rb | |
@@ -155,6 +155,10 @@ module Bundler | |
method_option "production", :type => :boolean, :banner => | |
"Deprecated, please use --deployment instead" | |
def install(path = nil) | |
+ if path == "help" | |
+ help("install") |
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 split-dedicated-window (b size) | |
(interactive "BBuffer: \nNLines to show: ") | |
(split-window (selected-window) (+ size 2)) | |
(set-window-buffer (selected-window) b) | |
(set-window-dedicated-p (selected-window) t)) |
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 erc-cmd-UNTRACK (&optional target) | |
"Add TARGET to the list of target to be tracked." | |
(if target | |
(erc-with-server-buffer | |
(let ((untracked (car (erc-member-ignore-case target erc-track-exclude)))) | |
(if untracked | |
(erc-display-line | |
(erc-make-notice (format "%s is not currently tracked!" target)) | |
'active) | |
(add-to-list 'erc-track-exclude target) |
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 comment-or-uncomment-region-or-line (&optional lines) | |
"If the line or region is not a comment, comments region | |
if mark is active, line otherwise. If the line or region | |
is a comment, uncomment." | |
(interactive "P") | |
(if mark-active | |
(if (< (mark) (point)) | |
(comment-or-uncomment-region (mark) (point)) | |
(comment-or-uncomment-region (point) (mark))) |
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 split-dedicated-window (b size) | |
(interactive "BBuffer: \nNLines to show: ") | |
(split-window (selected-window) (+ size 2)) | |
(set-window-buffer (selected-window) b) | |
(set-window-dedicated-p (selected-window) t)) |
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 insert-current-line () | |
"insert the current line number into the current buffer." | |
(interactive) | |
(insert (number-to-string (line-number-at-pos)))) |
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
edit () { | |
new_args=() | |
LIMIT=$# | |
for ((i = 1; i <= $LIMIT; i++ )) do | |
eval file="\$$i" | |
if [[ -e $file && ! -O $file ]] | |
then | |
new_args[i]="/sudo::$file" | |
else | |
new_args[i]=$file |
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
(define-ibuffer-filter filename-or-dired | |
"Toggle current view to buffers with filename or dired-directory matching QUALIFIER." | |
(:description "filename-or-dired" | |
:reader (read-from-minibuffer "Filter by filename (regexp): ")) | |
(or | |
(ibuffer-awhen (buffer-local-value 'buffer-file-name buf) | |
(string-match qualifier it)) | |
(ibuffer-awhen (buffer-local-value 'dired-directory buf) | |
(string-match qualifier it)))) |
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
def twitter_oauth_client | |
oauth = Twitter::OAuth.new(TwitterAuth.consumer.key,TwitterAuth.consumer.secret) | |
def oauth.setup_from_twitter_auth(at,as,t) | |
@atoken = at | |
@asecret = as | |
@access_token = t | |
end | |
oauth.setup_from_twitter_auth access_token, access_secret, token | |
Twitter::Base.new(oauth) | |
end |
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
# sudo/tramp friendly version of my edit command | |
# invokes Emacs on the file, but using sudo | |
function sedit() { | |
edit /sudo::$* | |
} |