Sublime Forum

20090929 Beta

#1

There are a few new features, as well as a collection of fixes.

There’s a new option, copyOnMouseSelect, which will automatically copy the selected text to the clipboard when selecting with the mouse - this is experimental, and may be removed in the future.

Also, due to popular demand, the wantScollBars option has been split into two options for horizontal and vertical scrollbars.

I’ve made some changes to PackageSetup for this release, and while I’ve tested it and everything appears fine, you may want to backup your User/Default.sublime-keymap file in case it does get eaten.

0 Likes

#2

the link to this beta doesn’t appear on the download page. i have used:
http://www.sublimetext.com/Sublime%20Text%2020090929%20Setup.exe

0 Likes

#3

what about pasteOnMouseMiddleClick true

0 Likes

#4

[quote=“vim”]

what about pasteOnMouseMiddleClick true[/quote]

Doable with autohotkey

~MButton::
~^~MButton::
  IfWinActive, ahk_class SKMainWindowClass
    Send, ^v
    return

u still have sublime functionality with middle click (multiple selections with ctrl+middleclick,etc…) with the difference that if u double click middle button u will paste (ctrl+v)
and “IfWinActive, ahk_class SKMainWindowClass” takes care this only works when ur inside sublime (active window is sublime) so wont interfere with any other software =]

0 Likes