去死吧,spammer们
之前忙考试,没空收拾你们,这次全清理掉了。
to spammers: go back to hell.
I'm back.
Posted by
Unknown
at
13:13
0
comments
(defun comint-within-single-quotes (beg end)(let ((countsq (comint-how-many-region "\\(\\=\\|[^\\\\]\\)\'" beg end)))(= (mod countsq 2) 1)))(defun comint-within-double-quotes (beg end)(let ((countdq (comint-how-many-region "\\(\\=\\|[^\\\\]\\)\"" beg end)))(= (mod countdq 2) 1)))(defun* comint-within-quotes-2 (beg end &key (quotes :both))(case quotes(:both (comint-within-quotes beg end))(:single (comint-within-single-quotes beg end))(:double (comint-within-double-quotes beg end))))
Posted by
Unknown
at
00:13
0
comments
Labels: emacs
I use a black bg color theme in emacs,while ipython outputs like this by default:
(unless (member "-colors" py-python-command-args)
(setq py-python-command-args
(nconc py-python-command-args
(list "-colors"
(cond
((eq frame-background-mode 'dark)
"Linux")
((eq frame-background-mode 'light)
"LightBG")
(t ; default (backg-mode isn't always set by XEmacs)
"LightBG"))))))
Posted by
Unknown
at
11:14
1 comments
Labels: emacs