Sublime Forum

Sublime Text 3 Beta

#15

Okay. Thanks. Congrats on shipping by the way :smile:

0 Likes

#16

Hopefully the $15 upgrade version starts from purchases made 12/2012 and on considering that’s within the last 30 days!

0 Likes

#17

Thanks jps \o/

How could I buy the upgrade licence ?

0 Likes

#18

Upgrade licenses aren’t available yet, nor are they required. The plan is that upgrading won’t need to happen until 3.0 is released, and I don’t want anyone paying before they need to.

0 Likes

Mandatory Paid Upgrade
#19

Did Cmd+Return stopped working as insert new line?

0 Likes

#20

It’s working for me. If you enter “sublime.log_commands(True)” and “sublime.log_input(True)” in the console, what output do you when when you press cmd+return?

0 Likes

#21

Awesome, so far v3 easily beats v2. Seems to be a lot faster than v2, almost on par with v1. And I finally get to disable animations :smile:

Just a couple of questions:

Is there a theme that copies v1? Tabs are hard to distinguish in 2/3 and they take up more space.
How do I completely hide the folder view? view -> folders is grayed out.
What font rendering was used in v1? Trying the various pixel rendering options I’m getting close, but not quite there yet.
How can I view char encoding for a file? In v1, hovering over the tab will display the file name as well as encoding in the status bar.

And I think the status text isn’t affected by the font rendering settings (things like tab count in the status bar). Is this intentional or a bug?

Thanks Jon.

(apologies if some those features were provided by plugins, been using the same setup for almost 3 years and have probably forgotten a plugin I installed)

0 Likes

#22

Without begin_edit, how do I do something like this:

                    self.__view.run_command("adb_add_line", {"some_data": data, "instance": self})
                    # or
                    self.__view.run_command("adb_add_line", {"some_data": data, "callback": self.callback})

This currently gives me:

sublime_api.view_run_command(self.view_id, cmd, args) TypeError: Value required

Do I have to expand it to self.__view.run_command("adb_add_line", {"every": single, "data": needed, "to": run, "this": command})?

0 Likes

#23

quarnster: the latter option:

self.view.run_command("adb_add_line", {"every": single, "data": needed, "to": run, "this": command})

The advantage of this approach is that issued commands will work correct with repeat, as well as with macros.

0 Likes

#24

FFFFF :confused: Yeah, not such a huge fan either

Yeah, it would be nice if you could somehow run arbitrary functions as commands, with access to closures, so you don’t have to do all that explicit dependency marshaling.

Note there’s lots of times from inside an on_change callback passed to show_input_panel that you need an Edit object to make sure sublime paints updates you make therein.

Or from timeouts, or … etc

0 Likes

#25

https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-snc7/407754_355723507788989_1336919739_n.jpg

Meanwhile, in Australia …

0 Likes

#26

jps: ok, got it.

Are (displayname, insertname) style auto completions no longer supported, or just not working yet? This code

import sublime_plugin import sublime class EVL(sublime_plugin.EventListener): def on_query_completions(self, view, prefix, locations): return (("Hello(world)\tint", "Hello(${1:world})")], 0)
inserts “Hello(world) int” (ie, the first item)

0 Likes

#27

on_query_completions is intended to be backwards compatible, so it’s likely a bug. I’ll take a look at it.

0 Likes

#28

Is there any option to open each project in different process / thread?
I’m working with a huge project on PHP (thousands of files) and sublime text going to be crazy when tryed to index that. Even after close project and window tab associated with, other windows with other project still has performance issues until restart of sublime text.

This problem exists both on 2 and 3 versions.

0 Likes

#29

>>> import sqlite3 Traceback (most recent call last): File "<string>", line 1, in <module> File "X/sqlite3/__init__.py", line 23, in <module> File "X/sqlite3/dbapi2.py", line 26, in <module> ImportError: No module named '_sqlite3'

Is there a reason why sqlite3 is still not available?

Could this possibly enable building external C libraries for SublimeText? Working pyzmq is something that I dream about :smile:

EDIT3:
Can plugin_host be launched separately from the editor? Unit testing plugins would be great.

0 Likes

#30

Great news!

JPS, can you comment on the upgrade process (OSX)? I understand that plugins will probably be broken. But what about user settings, key bindings, macros, etc.? Is it possible to install ST3 separately?

Thanx!!

0 Likes

#31

I just (mostly) ported sublimelint. Looks like view.set_status() is broken?
It won’t trigger reliably for me inside on_selection_modified() every other view I select. On odd views, it just swallows the status update. Even the built-in line/column number won’t update.

So if I select views 1, 2, 3, 4 in order it’ll only work for views 1, 3 or 2, 4. If I then select 1, 3, 2, 4 in order? It’ll only work for 1, 2 or 3, 4.

I’m on OSX with build 3006.

0 Likes

#32

Indexing is fully asynchronous, and does no work in the main thread. I do most of my testing using the chromium project (>100k files), and observe no slowdowns.

0 Likes

#33

Unfortunately It’s not possible, as plugin_host isn’t responsible for the implementation of the API, just for communication with the main sublime_text process over shared memory.

0 Likes

#34

@jps Is the new name for the app on OSX (“Sublime Text”, without a version number) intentional? It’s great that I can install the new beta side-by-side with ST2, but there’s a small inconsistency in naming. Maybe “Sublime Text 3” would sound better? (Sure I can rename the installation folder, but still).

0 Likes