3

我希望 python stacktrace 行像终端中的超链接一样。我最喜欢的编辑器应该打开文件并转到正确的行:

Traceback (most recent call last):
  File "/home/foo_eins_dt/djangotools/utils/smtputils.py", line 73, in _inner_to_outbox
    return func(*args, **kwargs)
  File "/home/foo_eins_dt/foo_mail/tests/EditTest.py", line 289, in test_something
    beleg_ids=importutils.import_msg_file(temp)
TypeError: bar() takes exactly 2 arguments (1 given)

到目前为止,我使用 gnome-terminal,但我可以切换到不同的终端。

示例:我想点击,File "/home/foo_eins_dt/foo_mail/tests/EditTest.py"文件 EditTest.py 应该在第 289 行打开。

4

2 回答 2

3

对于互联网的未来:这在iTerm 2的 OS X 中是可能的

这是我使用 Sublime Text 的设置:~/bin/magic-iterm-open.py

#!/usr/bin/python

import sys
from subprocess import call

if len(sys.argv) > 2:

    pathToSubl = "/Users/rainer/bin/"

    filename, linenum = sys.argv[1], sys.argv[2]
    rest = "" if len(sys.argv) < 4 else sys.argv[3]

    if not filename.endswith('.py'):
        # I believe this approximates iTerm's default
        call(['/usr/bin/open', filename])
    else:
        newLinenum = linenum
        if not str.isdigit(linenum):
            line = linenum.split(",")
            if len(line) > 1:
                newLinenum = filter(str.isdigit, line[1])

        command = ["{0}subl".format(pathToSubl),
                   "--add",  # If you'd like to add to your current sublime project
                   "{0}:{1}".format(filename, newLinenum)]

        call(command)

以及 iTerm2 中的配置:

在此处输入图像描述

所有功劳都归于旧的 redit 帖子,在这里:https ://www.reddit.com/r/SublimeText/comments/1kanze/iterm2_jump_to_location_in_sublime_text_23/

于 2016-06-08T02:59:54.643 回答
1

我认为没有任何终端开箱即用地支持此功能。当我执行 Cmd-单击文件名时,我的终端(Mac 上的 iTerm)会打开文件。但它忽略了行号。

另一方面,研究支持 Python 和嵌入式终端的 IDE。其中一些更有可能支持您的用例。

于 2013-09-17T11:24:38.160 回答