- Patch #13900: Update URL when changing tab
- Feature #14614: View hooks for user preferences
- Feature #13945: Disable autofetching of repository changesets if projects are closed
- Feature #13746: Highlighting of source link target line
- Feature #8253: Update CodeRay to 1.1 final
- Defect #15058: Project authorization EnabledModule N+1 queries
- Defect #16032: Repository.fetch_changesets > app/models/repository/git.rb:137:in `[]=’: string not matched (IndexError)
- Defect #15849: Redmine:Fetch_Changesets Single-inheritance issue in subclass “Repository:Git”
- Defect #15781: Customfields have a noticabl
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
digraph jed_extra { | |
node [style=filled ]; | |
ffap [color=deepskyblue]; | |
hyperman [color=deepskyblue]; | |
info [color=deepskyblue]; | |
hyperhelp [color=deepskyblue]; | |
tokenlist [color=deepskyblue]; | |
grep [color=deepskyblue]; |
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
# This add a new matching method 'pinyin' to percol(https://github.com/mooz/percol) | |
# In this matching method, first char of each Chinese character's pinyin sequence is used for matching. | |
# For example, 'zw' matching '中文' (ZhongWen), '中午'(ZhongWu), '作为' (ZuoWei) etc. | |
# Usage: | |
# percol --match-method pinyin SomeFileContainingChinese.txt | |
class FinderMultiQueryPinyin(FinderMultiQuery): | |
def get_name(self): | |
return "pinyin" |
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
#** prompt | |
autoload -Uz promptinit | |
promptinit | |
prompt adam1 | |
#** completion | |
# Use modern completion system | |
autoload -Uz compinit | |
compinit |
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
if WinExists("Text Filter - [CNBlogs_Ing") Then | |
WinActivate("Text Filter - [CNBlogs_Ing") | |
Else | |
$last = "20110101" | |
$lastfile = "D:\Downloads\CNBlogs_Ing_Backup_201103281004.txt" | |
$path = "d:\Downloads\"; | |
$search = FileFindFirstFile($path & "CNBlogs_Ing_Backup*.txt") |
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 youdao (words) | |
"Use cmd line `translate' to translate selection, and show result in popup tip. | |
google translate: | |
http://code.google.com/p/tranny/ | |
http://www.commandlinefu.com/commands/view/5034/google-translate | |
youdao: http://hexlee.iteye.com/blog/1442506 | |
" | |
(interactive |
It's recommented to install addon Color Toggle or Blank Your Monitor + Easy Reading, thus when some web pages goes ugly, you can revert to firefox defaults easily.
For Chrome, try Change Colors
fg: #000000
bg: #ffffff
link: #0000ee
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 anything-c-source-org-headings | |
'((name . "Org Headings") | |
(headline . "^[*]+ ") | |
(condition . (eq major-mode 'org-mode)) | |
(migemo) | |
(persistent-action . (lambda (elm) | |
(anything-c-action-line-goto elm) | |
(show-subtree))) |
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 anything-c-tab-list () | |
"Return a list of buffer names of current tabbar group. " | |
(unless (and (featurep 'tabbar) | |
tabbar-mode) | |
(error "Error: tabbar-mode not turned on.")) | |
(with-current-buffer anything-c-tab-current-buffer | |
(mapcar #'(lambda (tab) (buffer-name (tabbar-tab-value tab))) | |
(tabbar-tabs (tabbar-current-tabset t))))) | |
(setq anything-c-tab-current-buffer nil) |
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
@@ -153,19 +192,28 @@ | |
(defvar qtmstr-outline-header-map | |
(progn (let ((km (make-sparse-keymap))) | |
- (define-key km [mouse-2] #'qtmstr-outline-on-header-click) | |
- (define-key km "\r" #'qtmstr-outline-on-header-return) | |
+ (define-key km [mouse-1] #'qtmstr-outline-on-header-click) | |
+ (define-key km [mouse-3] #'show-subtree) | |
+ (define-key km (kbd "C-c TAB") #'outline-toggle-children) | |
+;; (define-key km "\r" #'qtmstr-outline-on-header-return) |
NewerOlder