1

崇高なテキスト2内からインタラクティブにpythonを実行しようとしています.

このスレッドで提案されたことを試しました: Running Python interactively from within Sublime Text 2

import sublime, sublime_plugin

class PydevCommand(sublime_plugin.WindowCommand):
    def run(self):
        self.window.run_command('set_layout', {"cols":[0.0, 1.0], "rows":[0.0, 0.5, 1.0], "cells":[[0, 0, 1, 1], [0, 1, 1, 2]]})
        self.window.run_command('repl_open',{"type": "subprocess",
                                             "encoding": "utf8",
                                             "cmd": ["python2.7", "-i", "-u", "$file"],
                                             "cwd": "$file_path",
                                             "syntax": "Packages/Python/Python.tmLanguage",
                                             "external_id": "python2.7"
                                             })
        self.window.run_command('move_to_group', { "group": 1 }) 

そしてキーバインディングを使用します:

{"keys": ["f5"], "command": "pydev"}

ただし、これは機能しますが、Pythonモジュールにアクセスできないため、エラーが発生します。

これは私が実行しているビルドであり、これは正常に動作しますが、インタラクティブ モードを使用する前に常に終了します。

{
    "cmd": ["python", "-ui", "$file"],
    "path": "/opt/local/bin:/opt/local/sbin:/Library/Frameworks/Python.framework/Versions/2.7/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin",
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python"
}

これを読んでくれてありがとう!

4

2 に答える 2

0

以下を試してください。

交換

self.window.run_command('repl_open',{"type": "subprocess",
                                    "encoding": "utf8",
                                    "cmd": ["python2.7", "-i", "-u", "$file"],
                                    "cwd": "$file_path",
                                    "syntax": "Packages/Python/Python.tmLanguage",
                                    "external_id": "python2.7"
                               })

self.window.run_command('run_existing_window_command', {
                        "id": "repl_python",
                        "file": "config/Python/Main.sublime-menu"
                    })

ファイルからコマンドを借りました/SublimeREPL/config/Python/Default.sublime-commands。私は個人的に IPython を使用しているので、オプションを使用します"id" : "repl_python_ipython"

とにかく、最終的なプラグインはそのようにする必要があります...

import sublime, sublime_plugin

class PydevCommand(sublime_plugin.WindowCommand):
    def run(self):
        self.window.run_command('set_layout', {
                                 "cols":[0.0, 1.0], 
                                 "rows":[0.0, 0.5, 1.0], 
                                 "cells":[[0, 0, 1, 1], [0, 1, 1, 2]]
                              })
        self.window.run_command('run_existing_window_command', {
                        "id": "repl_python",
                        "file": "config/Python/Main.sublime-menu"
                    })
        self.window.run_command('move_to_group', { "group": 1 })

それが機能するかどうかを確認してください。

于 2014-12-23T12:04:02.763 に答える
0

ほとんどのpython2.7場合、Macports ではなく、Apple による OSX ネイティブ Python インストールにマップされます。

次のように変更してみてください。

    "cmd": ["/opt/local/bin/python2.7", "-ui", "$file"],
于 2014-01-20T07:55:06.990 に答える