Sublime2解析错误

时间:2014-11-10 18:54:29

标签: sublimetext2

我在Sublime2 SFTP中遇到错误。

解析sftp-config.json文件时出错: 没有JSON对象可以被解码

我不确定会发生什么。感谢帮助。我已经尝试卸载并重新安装SFTP插件但是没有修复它。

这是我的代码:

{
    // The tab key will cycle through the settings when first created
    // Visit http://wbond.net/sublime_packages/sftp/settings for help

    // sftp, ftp or ftps
    "type": "sftp",

    "save_before_upload": true,
    "upload_on_save": false,
    "sync_down_on_open": false,
    "sync_skip_deletes": false,
    "sync_same_age": true,
    "confirm_downloads": false,
    "confirm_sync": true,
    "confirm_overwrite_newer": false,

    "host": "54.173.65.194",
    "user": "brent",
    //"password": "password",
    //"port": "22",

    "remote_path": "/example",
    "ignore_regexes": [
        "\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
        "sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
        "\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
    ],
    //"file_permissions": "664",
    //"dir_permissions": "775",

    //"extra_list_connections": 0,

    "connect_timeout": 30,
    //"keepalive": 120,
    //"ftp_passive_mode": true,
    //"ftp_obey_passive_host": false,
    //"ssh_key_file": "~/.ssh/id_rsa",
    //"sftp_flags": ["-F", "/path/to/ssh_config"],

    //"preserve_modification_times": false,
    //"remote_time_offset_in_hours": 0,
    //"remote_encoding": "utf-8",
    //"remote_locale": "C",
    //"allow_config_upload": false,
}

4 个答案:

答案 0 :(得分:1)

转到 〜/的.config /崇高文本-3 /封装/用户/ sftp_servers 并删除导致错误的文件 此sftp_server文件夹包含所有现有的服务器连接配置,因此您可以通过正确读取错误来确定导致问题的那个。

答案 1 :(得分:0)

我认为它可能是connect_timeout之后的','(逗号)。与Python不同,Javscript / json不允许在列表的最后一项上使用尾随逗号。

答案 2 :(得分:0)

我通过卸载Sublime 2,删除所有首选项并重新安装来解决它。它现在有效。

答案 3 :(得分:0)

在我的MacOS上,里面是非json文件app.py(可能是另一个文件)

/Users/<your_username>/Library/Application Support/Sublime Text 3/Packages/User/sftp_servers

删除后,错误消失了