Sublime Forum

Default browser in Plugins

#1

I installed some plugins in Sublime Text 2 (paid), and when I run any operation that needs to interact with the browser, it ALWAYS opens Firefox.

Note: Chromium is default browser

I tried uninstalling Firefox, al the plugins do not work.
I tried looking at the source of plugins, and there is nothing referencing Firefox.

What do I do?

Details:
OS: Ubuntu 12.10 x64
Sublime Text version: Dev Channel 2220

0 Likes

#2

If there is installed package “SideBarEnhancements” there is the preferences file.
Preferences -> Package Settings -> Sidebar -> Settings Default
There, at bottom there is the list of browsers.

0 Likes

#3

Yes, I had this plugin installed, but even if I change to chromium does not work.

But just to be clear: I installed a plugin for Google Translate, which opens the browser to select a word. However, the source code of the plugin, there is no reference to firefox anywhere, only a few calls ‘import webbrowser’, or something.

[code]{
“statusbar_modified_time” : false,
“statusbar_modified_time_format” : “%A %b %d %H:%M:%S %Y”,

"statusbar_file_size" : false,

"close_affected_buffers_when_deleting_even_if_dirty" : false,

"hide_open_with_entries_when_there_are_no_applicable" : false,

"confirm_before_deleting" : true,


"disabled_menuitem_edit":               false,
"disabled_menuitem_open_run":           false,
"disabled_menuitem_open_in_browser":    false,
"disabled_menuitem_open_in_new_window": false,
"disabled_menuitem_find_in_project":		false,
"disabled_menuitem_copy_name":          false,
"disabled_menuitem_copy_path":          false,
"disabled_menuitem_paste_in_parent":    false,

//if installed in a default location maybe this works.
"default_browser": "chromium" //one of this list: firefox, chrome, chromium, opera, safari

}
[/code]

0 Likes

#4

The path to chromium is…?

0 Likes

#5

But, in ‘default configuration’, have only a ‘name’, not a ‘path’.
Anyway, how I can put the path with condition (new tab in current session)?

0 Likes

#6

I asked for the path, then I Can add it to the plugin…

0 Likes