Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.
Block comment in Ruby
I select some lines and press ctrl+shift+/:
It's incorrect. I expect to see this:
Remove unnecessary/unused File types
I primarily use sublime for Web development, and the file types in use are HTML, CSS, JS, PHP. I want to remove the unnecessary filetypes and syntax files that gets loaded like c++, erlang, java etc. Is there a way to configure this?
Open in browser of choice option for ST3
Whenever I run a command that opens the browser by default it opens in firefox. I primarily use chrome and even have that set to the default.
JSP Autocomplete for self terminated tags fail if there is a ":" in the element
When typing the code below, using syntax JSP, when you get to the closing div tag it will not auto complete the div but rather the <foo:bar .../> because it doesn't understand that it is self terminated. Only reproducible when a ":" is present (which are common in JSP for TagLibs).
<div>
<foo:bar attribute="hi" />
</div>
same keybindings on all platforms
I just started using sublime and I'm loving it! I work on both mac and linux, however, and I'm finding it super annoying that the default keybindings are so different between platforms. I know I can go through them all and remap them, but an easy way to do that by default would be awesome.
view.show(sublime.Region(a, b)) scrolls to wrong region in view
Some vars I work with:
visible_region = (366, 998) # manually centered view
selection = [26, 26] # cursor in line w/o selection
region = [26, 26] # in this case same as selection
visible_region = [16, 36] # first row, last row from above
size = 2099 # self.view.size()
region_size = 0 # diff between region end and begin
visible_size = 20 # diff between last and first row
begin = 16 # calculated first row
end = 36 # calculated last row
target_region = (366, 946) # calculated for self.view.show()
target_region = [16, 36] # translated into first, last row
visible_region = (603, 1351) # region I get after self.view.show()
Any idea?
A few things
my wishes today:
1) While using colums, rows or grid and working on a special file, can open only the file i wish in an new view (like new instance) in fullscreenmode, so i have all the screen just for this one file (maybe a bigger script as the others). When closing or saving or just tipping in the file, the original in colums, rows or grid becomes the same content (just mirroring in the new view).
2) Make borders in colums, rows or grid flexible to move right/left/up/down. Fe: in grid moving the top vertical border from group 1 and 2 a bit to the left, but vertical border of group 3 and 4 stays in the middle.
3) When working with two or more monitors and using ST2 and one Browser (for example), i wish to have a new instance in Montor 2 without TAB (means: not TAB monitor 1 (ST2), TAB monitor 2 (ST2), TAB browser; i wish to TAB just ST2, TAB browser, TAB ST2, TAB browser,...
4) Show/hide MiniMap for each file separatly (just for this and for this file for ex.)
5) MULTILINGUAL (wanna got german and german dictionary)
So far, sublime text is the best and nicest editor i got (and i got many editors for editing HTML, CSS, JS, PHP, SQL,...). The last few years i used Notepad++ most of my time, now i got Sublime and i love it!
THANKS!
Browse for Folder Dialog - Clipboard
Bug in multiline commenting
If I select the following code below and press Ctrl-* to comment the whole block, ST2 only uncomments this line /* Disable master mode and enable as slave with SLA */.
void aery::twi_init_slave(uint16_t sla) { /* Software reset. */ aery::twi->CR.swrst = 1; while (aery::twi->CR.swrst); /* Disable master mode and enable as slave with SLA */ aery::twi->SMR.sadr = sla; aery::twi->CR.msdis = 1; aery::twi->CR.sven = 1; }Result:
void aery::twi_init_slave(uint16_t sla) { /* Software reset. */ aery::twi->CR.swrst = 1; while (aery::twi->CR.swrst); Disable master mode and enable as slave with SLA aery::twi->SMR.sadr = sla; aery::twi->CR.msdis = 1; aery::twi->CR.sven = 1; }Expected result:
// void aery::twi_init_slave(uint16_t sla) // { // /* Software reset. */ // aery::twi->CR.swrst = 1; // while (aery::twi->CR.swrst); // /* Disable master mode and enable as slave with SLA */ // aery::twi->SMR.sadr = sla; // aery::twi->CR.msdis = 1; // aery::twi->CR.sven = 1; // }
"z" key misbehaving in Vintage insert mode
Customer support service by UserEcho