如何在Sublime Text的SideBarEnhancements插件中配置功能“使用pdf打开”

时间:2019-12-21 14:25:48

标签: sublimetext3 sublime-text-plugin

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

1 个答案:

答案 0 :(得分:1)

在Sublime Text的SideBarEnhancements插件中配置功能“使用pdf打开”。 -单击文件以调出菜单。 -选择“打开方式”>“编辑应用程序” -如果您在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”中,则需要自行调整“路径”,“应用程序”,“扩展名”