UltraEdit支持Python语法高亮

本文详细介绍如何在UltraEdit编辑器中配置Python语法高亮显示,包括关键字、内置函数、方法等元素的设置方法,帮助提升Python编程效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

将以下文本加入到Ultraedit安装目录下的 wordfile.txt文件中,注意开头的“/L14”不能和你原有的语言重复:
来自:http://www.ultraedit.com/files/wf/python25.txt

/L14"Python" PYTHON_LANG Line Comment = # Escape Char = / String Literal Prefix = r File Extensions = PY PYW
/Indent Strings = ":"
/Regexp Type = Perl
/Function String = "^([ /t]*)(def|class)([ /t]+[^:]+):"
/Delimiters = !@%^&*()-+=|//{}[]:;"'`<> , .
/Open Brace Strings = "(" "[" "{"
/Close Brace Strings = ")" "]" "}"
/C1"Keywords" STYLE_KEYWORD
assert
break
class continue
def del
elif else except exec
finally for from
global
if import
lambda
object
pass print
raise return
try
while with
yield
/C2"Built-in Functions" STYLE_FUNCTION
Ellipsis
False
None NotImplemented
True
__import__
abs all any
basestring bool buffer
callable chr classmethod cmp coerce compile complex
delattr dict dir divmod
enumerate eval execfile
file filter float frozenset
getattr globals
hasattr hash help hex
id input int intern isinstance issubclass iter
len list locals long
map max min
oct open ord
pow property
range raw_input reduce reload repr reversed round
set setattr slice sorted staticmethod str sum super
tuple type
unichr unicode
vars
xrange
zip
/C3"Methods" STYLE_METHOD
Decimal
__abs__ __add__ __and__ __call__ __cmp__ __coerce__ __contains__ __del__ __delattr__ __delitem__
__delslice__ __div__ __divmod__ __eq__ __float__ __floordiv__ __ge__ __getattribute__ __getitem__
__getnewargs__ __getslice__ __gt__ __hash__ __hex__ __iadd__ __iand__ __idiv__ __ilshift__ __imod__
__imul__ __index__ __init__ __int__ __invert__ __ior__ __ipow__ __irshift__ __isub__ __iter__ __ixor__
__le__ __len__ __long__ __lshift__ __lt__ __mod__ __mul__ __ne__ __neg__ __nonzero__ __oct__ __or__
__pos__ __pow__ __radd__ __rand__ __rdiv__ __rdivmod__ __reduce__ __reduce_ex__ __repr__ __reserved__
__rfloordiv__ __rlshift__ __rmod__ __rmul__ __ror__ __rpow__ __rrshift__ __rshift__ __rsub__ __rtruediv__
__rxor__ __setattr__ __setitem__ __setslice__ __str__ __sub__ __xor__
add append
capitalize center clear close conjugate copy count
decode difference discard
encode endswith expandtabs extend
fileno find flush fromkeys
get getcontext
has_key
index insert intersection intersection_update isalnum isalpha isatty isdigit islower isspace issubset
issuperset istitle isupper items iteritems iterkeys itervalues
join
keys
ljust lower lstrip
next
pop popitem
read readline readlines remove replace reverse rfind rindex rjust rsplit rstrip
seek setdefault sort split splitlines startswith strip swapcase symmetric_difference
symmetric_difference_update
tell title translate truncate
union update upper
values
write writelines
zfill
/C4"Attributes" STYLE_ATTRIBUTE
__author__ __bases__ __class__ __dict__ __doc__ __email__ __members__ __methods__ __name__ __slots__
__version__
/C5"Exceptions"
ArithmeticError AssertionError AttributeError
BaseException
DeprecationWarning
EOFError EnvironmentError Exception
FloatingPointError FutureWarning
GeneratorExit
IOError ImportError ImportWarning IndentationError IndexError
KeyError KeyboardInterrupt
LookupError
MemoryError
NameError NotImplementedError
OSError OverflowError OverflowWarning
PendingDeprecationWarning
ReferenceError RuntimeError RuntimeWarning
StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit
TabError TypeError
UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning
UserWarning
ValueError
Warning WindowsError
ZeroDivisionError
/C6"Operators" STYLE_OPERATOR
!
%
&
*
+
-
// /
<
=
>
^
and as
in is
not
or
|
~
/C7"Common Libs"
.ElementTree .ascii .ast .audio .base .charset .dom .encoders .errors .etree .expat .generator .handler
.handlers .header .headers .idna .image .iterators .message .mime .minidom .multipart .nonmultipart .panel
.parser .parsers .path .pulldom .sax .saxutils .simple_server .stats .test_support .text .textpad .util
.utils .validate .visitor .wrapper .xmlreader
AL
BaseHTTPServer Bastion
CGIHTTPServer Carbon ConfigParser Cookie
DEVICE DocXMLRPCServer
FL
GL
HTMLParser
MimeWriter
NNTPError
Queue
SUNAUDIODEV ScrolledText SimpleHTTPServer SimpleXMLRPCServer SocketServer StringIO
Tix Tkinter
UserDict UserList UserString
__builtin__ __future__ __main__ _locale _winreg
aifc al anydbm array asynchat asyncore atexit audioop
base64 bdb binascii binhex bisect bsddb bz2
cPickle cProfile cStringIO calendar cd cgi cgitb chunk cmath cmd code codecs codeop collections colorsys
commands compileall compiler contextlib cookielib copy_reg crypt csv ctypes curses
datetime dbhash dbm decimal difflib dircache dis distutils dl doctest dumbdbm dummy_thread dummy_threading
email encodings errno exceptions
fcntl filecmp fileinput fl flp fm fnmatch formatter fpectl fpformat ftplib functools
gc gdbm getopt getpass gettext gl glob gopherlib grp gzip
hashlib heapq hmac hotshot htmlentitydefs htmllib httplib
ihooks imageop imaplib imgfile imghdr imp inspect itertools
jpeg
keyword knee
linecache locale logging
mailbox mailcap marshal math md5 mhlib mimetools mimetypes mimify mmap modulefinder msilib msvcrt
multifile mutex
netrc new nis nntplib
operator optparse os ossaudiodev
parser pdb pickle pickletools pipes pkgutil platform popen2 poplib posix posixfile pprint profile pstats
pty pwd py_compile pyclbr pydoc pyexpat
quopri
random re resource rexec rfc822 rgbimg rlcompleter robotparser runpy
sched select sets sgmllib sha shelve shlex shutil signal site sitecustomize smtpd smtplib sndhdr socket
spwd sqlite3 stat statvfs string stringprep struct subprocess sunau sunaudiodev symbol sys syslog
tabnanny tarfile telnetlib tempfile termios test textwrap thread threading time timeit token tokenize
trace traceback tty turtle types
unicodedata unittest urllib urllib2 urlparse user uu uuid
warnings wave weakref webbrowser whichdb winsound wsgiref
xdrlib xml xmlrpclib
zipimport zlib
/C8"Others"
self
### 实现Verilog HDL代码编辑器语法高亮 为了使Verilog HDL代码UltraEdit中具有良好的可读性和易维护性,可以通过配置特定的语法文件来实现语法高亮、自动缩进以及代码折叠等功能。具体方法如下: 对于希望支持 Verilog-98 的用户来说,`verilog.txt` 文件提供了必要的定义[^1]。此文件已经过修改以适应 L19 版本的要求,并包含了用于启用自动缩进和代码折叠的支持。 针对更现代的标准——Verilog-2001,则有专门定制过的 `verilog2001` 语法文件可用。该文件同样实现了上述特性并调整至适用于 L20 平台。 除了基本的语法着色外,还提供了一个名为 `wordfile.txt` 的辅助资源文件。通过替换 UltraEdit 安装目录中原有的同名文件,可以确保新版本中的关键词列表能够正确识别 Verilog 和 Verilog-2001 中的关键字,从而进一步增强语法高亮的效果。 下面是一个简单的 Python 脚本来展示如何加载这些自定义设置到 UltraEdit 编辑环境中(假设所有必需文件都位于同一路径下): ```python import os def apply_verilog_syntax_highlighting(version='98'): base_path = "path/to/your/syntax/files" if version == '98': syntax_file = os.path.join(base_path, "verilog.txt") elif version == '2001': syntax_file = os.path.join(base_path, "verilog2001") wordlist_file = os.path.join(base_path, "wordfile.txt") with open(syntax_file, 'r') as file: content = file.read() # 假设有一个函数可以直接向UltraEdit应用新的语法设定 ultraedit_apply_grammar(content) # 更新全局单词表 update_global_word_list(wordlist_file) def ultraedit_apply_grammar(grammar_content): print(f"Applying grammar:\n{grammar_content[:100]}...") # 这里仅模拟打印部分数据 def update_global_word_list(new_words_path): print(f"Updating global word list from {new_words_path}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值