-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Single click for opening files & directories #114
Comments
Should be possible theoretically. You have to create your own command with unique name which will handle click (like our doubleclick) and bind this new command to click in sublime-mousemap file (like Default.sublime-mousemap). Now the trick is that you should call |
I can't get double click to work - is it enabled by default? |
Yes, double click is enabled, perhaps you have to restart Sublime Text. |
Hi @vovkkk, no errors. I'm running 3114 after restarting. |
What exactly happen when you double click? |
@vovkkk I'm using Mac OS X. Nothing happens on double click.
|
You have two plugins, mouse-maps of which are conflicting with SFB: WordHighlight, and SublimeXiki. You may add them to ignored packages and see if dblclk works, to be sure if I’m right or not: {
"ignored_packages":
[
"WordHighlight",
"SublimeXiki",
"Vintage"
]
} The easiest fix is dropping SFB mouse-map to your |
Thanks that fixes the double click |
Make a little extesion like - # Path to save this file => Packages/User/NoPreview.py
import sublime
import sublime_plugin
import os
class NoPreview(sublime_plugin.EventListener):
def on_load(self, view):
if (os.path.exists(view.file_name())):
view.run_command('save') and name this file as It works good for me to open files with single click, I'm using windows 8.1. |
Is it possible to require only a single click in order to open files & expand directories?
The text was updated successfully, but these errors were encountered: