たくさんの単語を強調しようとしているので、pygments拡張機能を作成しました。基本的には機能しますが、それでも満足のいくものではありません。
うまくいくはずの簡単なアイデアは次のとおりです。単語を適切に強調表示し、これらの単語と一致しない他のすべてのテキストをテキストで強調表示します。しかし、これはハングアップします:
from pygments.lexer import RegexLexer
from pygments.token import *
class HotKeyPoetry(RegexLexer):
name = 'HotKeyPoetry'
aliases = ['HotKeyPoetry']
filenames = ['*.hkp']
tokens = {
'root': [
(r'\bAlt\b', Generic.Traceback),
(r'\bShft\b', Name.Variable),
(r'\bSpc\b', Operator),
(r'\bCtrl\b', Keyword.Type),
(r'\bRet\b', Name.Label),
(r'\bBkSpc\b', Generic.Inserted),
(r'\bTab\b', Keyword.Type),
(r'\bCpsLk\b', String.Char),
(r'\bNmLk\b', Generic.Output),
(r'\bScrlLk\b', String.Double),
(r'\bPgUp\b', Name.Attribute),
(r'\bPgDwn\b', Name.Builtin),
(r'\bHome\b', Number.Oct),
(r'\bEnd\b', Name.Constant),
(r'\bDel\b', Name.Decorator),
(r'\bIns\b', Number.Integer.Long),
(r'\bWin\b', Name.Builtin.Pseudo),
(r'\bF1?[1-9]\b', Name.Function),
(r'(?!\b(Alt|Shft|Spc|Ctrl|Ret|BkSpc|Tab|CpsLk|NmLk|ScrlLk|PgUp|PgDwn|Home|End|Del|Ins|Win|F5)\b)', Text),
]
}
仕事に別のレクサーを使用したほうがいいのではないでしょうか。
編集1
それで
r"(.+?)(?:$|\b(?=(Alt|Shft|Spc|Ctrl|Ret|BkSpc|Tab|CpsLk|NmLk|ScrlLk|PgUp|PgDwn|Home|End|Del|Ins|Win|F[12]?[1-9])\b))"
私が探していた排他的な正規表現です。
今、私は#
コメント文字を作成しようとしています-それ以降のすべて(行内)がコメントになるように:私は試しました:
r"(.+?)(?:$|#.*$|\b(?=(Alt|Shft|Spc|Ctrl|Ret|BkSpc|Tab|CpsLk|NmLk|ScrlLk|PgUp|PgDwn|Home|End|Del|Ins|Win|F[12]?[1-9])\b))"
と
r"([^#]+?)(?:$|\b(?=(Alt|Shft|Spc|Ctrl|Ret|BkSpc|Tab|CpsLk|NmLk|ScrlLk|PgUp|PgDwn|Home|End|Del|Ins|Win|F[12]?[1-9])\b))"
に続く
(r'#.*$', Comment),
また、2番目の状態を追加しようとしました:
'comment': [
(r'#.*$', Comment),
],
-しかし、何も機能しません。
編集2
完全に機能するpygments拡張Pythonパッケージはこちらです。あなたは得ることができます
python setup.py build
python setup.py install --user
pygmentsに登録します。次に、次のコマンドでテストできます。
pygmentize -f html -O full -o test.html test.hkp
または言語を指定します。
pygmentize -f html -O full -l HotKeyPoetry -o test.html test.hkp
これがサンプルtest.hkp
です:
Ctrl-Alt-{Home/End} ⇒ {beginning/end}-of-visual-line
Ctrl-Alt-{b/↓/↑} ⇒ {set/goto next/goto previous} bookmark # I have it in okular and emacs
Alt-{o/O} ⇒ switch-to-buffer{/-other-window}
Ctrl-{o/O} ⇒ find-file{/-other-window}
Ctrl-x o ⇒ ergo-undo-close-buffer # it uses ergoemacs' recently-closed-buffers
Ctrl-Alt-O ⇒ find-alternate-file
(コメントはホットキーにはあまり役立ちませんが、PyMOLには必要です)。