Also, once I've added a folder, I right-click on it to "remove folder" and nothing happens. I can't figure out how to get rid of it. Bug?
Yeah, I’m seeing this too. Win 7x64
Also, once I've added a folder, I right-click on it to "remove folder" and nothing happens. I can't figure out how to get rid of it. Bug?
Yeah, I’m seeing this too. Win 7x64
[quote=“atomi”]I just wanted to say that ctrl+space now errors with: no available completions.
So the completions drop down never shows up.[/quote]
Can you give some more information? Ctrl+Space is working fine for me.
[quote=“aoi”]When type somethings on another window, the letters show up on the first window only.
steps
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=“jps”]
[quote=“atomi”]I just wanted to say that ctrl+space now errors with: no available completions.
So the completions drop down never shows up.[/quote]
Can you give some more information? Ctrl+Space is working fine for me.[/quote]
I’m not sure what else to tell you. It’s just plain not working.
Step 1: unzip portable win x64 package.
Step 2: run sublime text
Step 3: open new file with .xml extension
And press ctrl+space - no completions dialogue.
I understand the ctrl+space should work without having entered any characters so if there is any other way I can help (by turning on some kind of debugging/logging) let me know.
Ctrl+Space won’t show anything for an empty XML file. However, there does appear to be an issue in this circumstance:
aa
ab
|
(The pipe is where the cursor is). Pressing Ctrl+Space isn’t working here, but it should be - I’ll look into it. If you type an ‘a’ though, then Ctrl+Space will work fine.
Hey i just registered to write down a small little bug i just found:
I know, nothing dramatical, but maybe in another scenario this bug might be more heavier.
ctrl+spacebar doesn’t seem to bring up the completions list if the prefix is an empty string. I think it used to in previous builds. Is this by design? I personally preferred the old behavior.
EDIT:
Nevermind, it’s my fault…
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.
[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.
[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
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.
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