elisp

gtags.el でライブラリも検索

global-5.7.6 + gtags.el-2.5で動作確認済み。 init-gtags.el (require 'gtags) (defvar gtags-libpath nil "Library directory of language.") (make-variable-buffer-local 'gtags-libpath) (defadvice gtags-goto-tag (before gtags-goto-tag-gtagslibpat…

flymake で yaml のシンタックスチェック

#!/usr/bin/env php parse(file_get_contents($_SERVER['argv'][1])); } catch (InvalidArgumentException $e) { echo "Unable to parse the YAML string: " . $e->getMessage() . "\n"; } (defun flymake-ya…