Sublime Forum

Dev Build 2043

#30

It highlights the added and removed lines in a diff. Your color scheme needs to assign a colour to the relevant scopes, and not all do. The default colour scheme, Monokai Bright, does. You can see an example using the Show Unsaved Changes context menu item.

0 Likes

#31

Oh I see!

Man that’s cool :smiley:

0 Likes

#32

[quote=“jps”]Show Unsaved Changes prints its results to an output panel instead of a new file
[/quote]

I think the old way of displaying diffs (in a new buffer) was more user friendly. Now, we’ll have to scroll and scroll and scroll to review the diff, and diffs are generally long documents. Please, make this configurable.

0 Likes

#33

You can use the diff_changes_to_buffer setting to make it like the last version

0 Likes

#34

Cool! BTW, this is not documented in Base File.sublime-settings.

0 Likes

#35

[quote]Build 2044
Release Date: 10 March 2011

* Diff commands work with UTF-8 files[/quote]

It would be nice if this feature was available for all files.
Do you think that you could make it work for the default encoded file ?
Something like (warning untested dirty code):

try: b = self.view.substr(sublime.Region(0, self.view.size())).splitlines() a = codecs.open(fname, "r", "utf-8").read().splitlines() except UnicodeDecodeError: try: a = codecs.open(fname, "r", self.view.settings().get('fallback_encoding').rpartition('(')[2].partition(')')[0]).read().splitlines() except UnicodeDecodeError: sublime.status_message("Diff only works with UTF-8 files") return

0 Likes

#36

Double clicking a folder in the sidebar should unfold it (and fold if it is unfolded). Clicking on this small gray arrow is not very comfortable.

0 Likes

#37
  • 100
0 Likes

#38

+10000 (+ekolguy’s 100)

0 Likes

#39

Aren’t we running out of free bindings by now?

0 Likes

#40

When will I be able to use the arrow keys in the file/folder panel?
And when will there be little icons in that same panel to create file/directory in the hierarchy?

I requested this months ago!

Please implement :smiley:

0 Likes

#41

[quote=“gregmax17”]When will I be able to use the arrow keys in the file/folder panel?
And when will there be little icons in that same panel to create file/directory in the hierarchy?

I requested this months ago!

Please implement :smiley:[/quote]

Please don’t add toolbars /icons.
But, I do agree with adding arrow keys support to navigate the sidebar.

0 Likes

#42

I think there needs to be a file delete confirmation dialog, or else some important file will be deleted by accident sooner or later.
Ideally, this should work as in “delete from project”, not deleting the file physically.

0 Likes

#43

I’m not seeing this - when I create the second window, then the second window receives input focus, and I can type there as normal. I can click between windows and type in either, and closing the second window doesn’t not appear to cause a crash. Also testing on Ubuntu 10.10. This wasn’t happening for you on build 2042?[/quote]

Could you check this?
youtu.be/8OWhKG60qPk
It was ok before… I’m not sure what is the problem, because even I downgrade it, or upgrade it, same problem again… the video is on 2039…
It may other software’s bug. but it happen only on Sublimetext. not other text editor, Geany, gedit, and so on…

0 Likes

#44

Dev Build 2045 is out now with a couple of small changes. This should be the last dev build before the next regular version.

0 Likes

#45

I was puzzled because none of the new features seemed to work. It turns out, Sublime still can’t sync with certain shares, right?

0 Likes

#46

I don’t know of any outstanding issues with network shares

0 Likes

#47

I had to hit “Refresh Folders” for the new changes to be displayed on the sidebar. I’ll try to come up with a repro.

0 Likes

#48

Oh, I see what you’re saying. If you’re on a windows machine, and the share is a Samba share, then you’re reliant on Samba’s implementation of ReadDirectoryChangesW, which I believe is not supported.

0 Likes

#49

Why don’t I get the same context-menu options (rename, diff, etc) with the open files in the sidebar?
In the sidebar, what is the difference between “Delete folder” and “Remove folder”. “Delete folder” did nothing, as far as I can tell?

0 Likes