如何在 sublime Text 的 SideBarEnhancements 插件中配置 "open with pdf" 功能

How to Configure the feature "open with pdf" in SideBarEnhancements plugin of sublime Text

SideBarEnhancements 是一个非常有用的插件。如何使用 Ubuntu 18.04 中的内置 pdf 查看器直接打开 pdf?

在 sublime Text 的 SideBarEnhancements 插件中配置 "open with pdf" 功能。 - 单击文件以调出菜单。 - Select 'open with' > 'Edit Applications' - 如果您在 Ubuntu

中,请添加以下代码

            //application 3
            {
                "caption": "evince",
                "id": "side-bar-files-open-with-evince",

                "command": "side_bar_files_open_with",
                "args": {
                                    "paths": ["/usr/share/applications/evince"],
                                    "application": "evince", // linux
                                    "extensions":"pdf", //open all even folders
                                    "args":[]
                                },
                "open_automatically" : false // will close the view/tab and launch the application
            },

如果不在 'Ubuntu' 中,您将需要自己适当地调整 "paths"、"application"、"extensions"