This file contains hidden or 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
;; reference-user-comment.el | |
;(global-set-key "\C-c\C-r" 'ruc-reference-document) | |
(require 'popup) | |
(require 'gtags) | |
(defun ruc-reference-document () | |
"This function display document comment | |
from user defined function | |
@return (popup) document" |
This file contains hidden or 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
(defvar ebb:display-taget "" | |
"ebbで表示する文字を設定") | |
(defcustom ebb:display-limit 7 | |
"表示する文字数を設定" | |
:type 'integer | |
:group 'ebb) | |
(defcustom ebb:display-interval 0.5 |
This file contains hidden or 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
(defvar polygon-flag nil) | |
(defun polygon-shock () | |
(interactive) | |
(cond | |
(polygon-flag | |
(custom-set-faces | |
'(default ((t (:background "red" :foreground "white"))))) | |
(setq polygon-flag nil)) | |
(t |
This file contains hidden or 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
(defvar display-couple-parenthesis-type "token") | |
(defvar display-couple-parenthesis-process nil) | |
(defvar display-couple-parenthesis-interval 0.5) | |
;; 表示を行表示に切り替える | |
(defun switch-display-couple-parenthesis-line () | |
"switch display couple parenthesis type to line" | |
(interactive) | |
(setq display-couple-parenthesis-type "line")) |
NewerOlder