Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.

0

Home Buyers: Lock in these Low Mortgage Rates Now

vurocolley 12 років тому оновлено Kevian 12 років тому 1
Mortgage rates are at an all-time low. Recent data released by Freddie Mac from 1972 through February 2013 illustrate just what historic times home buyers currently live in.

With the Federal Reserve purchasing $45 billion worth of longer-term Treasuries and $40 billion in mortgage-backed securities—for a total of $85 billion each month—30-year fixed rates have been driven down below 4.0% for the first time ever.

When large institutions buy large quantities of bonds—say $85 billion per month—bond prices are bid higher, which drives bond rates down (bond prices and rates are inversely related). And this is exactly what the Fed intends to do—push mortgage rates down to give relief to home buyers and make it possible to finance their next home.

This maneuver by the U.S. central bank is known as quantitative easing (QE) and is unprecedented in its scale. How much longer the Fed will make these monthly purchases is unknown. What is known, however, is that the Fed cannot continue this program indefinitely. Meaning at some point, these purchases will end and rates will normalize.

When will rates increase? How high will they go? How fast will they move? Nobody can predict exactly what rates will look like going forward.

But if you lock in a fixed rate today, you won’t have to worry where rates go tomorrow.

For more information: visit us!


Westhill Sample Rental House

498 - This Rambler Feels Like Home! | $1,750/mo. - 3 bd / 2.5 ba

36526 3rd Ave SW, Federal Way, WA 98023 | Welcome home to this sprawling rambler located in a secluded Federal Way neighborhood. This home has a large, bright kitchen with a large window to let the sun shine through. Off of the kitchen is a dining room with vaulted ceilings, a formal dining room, and a large living room with fireplace. Home also features a deck overlooking the property’s two acres, large grass yard, and pond!

Image 281
0

CONSOLE INTERACTION

Nihar Gagneja 12 років тому 0
right now, you can't interact with the console. for example you cannot use std::cin in c++ or a scanner in java, and you have to compile outside of sublime, and this is such a huge feature that it is missing. 
0

Odd behaviour of collumn select with keyboard

Bent Furevik 14 років тому оновлено Jon Skinner 14 років тому 2
When selecting collumns of code with Ctrl+Alt + Up or Down the marker only expands in height. I think it should have one fixed point of origin from where the marker expands either up or down, but not in both directions. Now I have to start over if I selected too much. 

I'm on Windows btw.
0

Javascript syntax highlighting for wrapped functions

Ben Vanik 14 років тому 0
If you have a function that wraps syntax highlighting will be broken.

For example, this function will be correctly highlighted:
foo.func = function(a, b, c) {
};

But this function won't be:
foo.func = function(a,
  b, c) {
};

0

Function hints in status bar

John Helveston 12 років тому оновлений 12 років тому 2

It would be great if function hints could pop up in the status bar as you type, like they do in the R console. For example, in R if you start typing "plot(", the bottom of the console displays the function hint "plot(x, y, ...)" so you know what the function arguments are. This might be too specific to R, but I'm sure other languages have something similar. Maybe this could be built into the Enhanced-R plugin?

0

Add ids to Context.sublime-menu separators

Will Bond 14 років тому 0
I've been working on a few packages and it would be very useful to be able to position entries in the context menu. Right now for the included Context.sublime-menu files only one has an id, "end". If you could add ids to the ones surrounding the "select_all" command, that would be awesome!

Thanks!
0

Provide a context manager for View.{begin,end}_edit

Patryk Zawadzki 14 років тому 0

Something along the lines of:

class Editor(object):    def __init__(self, view, command, args):        self.view = view        self.command = command        self.args = args    def __enter__(self):        self.edit = self.view.begin_edit(self.command, self.args)        return self.edit    def __exit__(self, exc_type, exc_val, exc_tb):        self.view.end_edit(self.edit)
class View(…):    def edit(self, command, args):        return Editor(self, command, args)

Would allow one to forget about the problems of pairing begins with ends:

with view.edit(…, …):    do_something()    do_something_else()
0

Create project

SkS 14 років тому 0

If you delete all folders from the project and it will be empty, but not saved, then saving will display the last opened folder in the project.


I apologize for my bad English.

0

Commenting a line without selecting is broken

Satyajit Ranjeev 14 років тому 0

Lets say I have a line: 
    <li><a href="news.html"> News</a></li>
assume the cursor is where the | is, when I press Command / this is the output:
    <li><a href="news.html"><!--  -->News</a></li>
The output should have been:
    <!-- <li><a href="news.html">News</a></li> -->
This seems to be broken in html, css and js files, but works with python. 

0

Fast and easy settings framework

Catalin Poida 12 років тому 0
It's great that there is a file where you can edit the settings, but it takes a lot to learn how to edit it and to customize it.
It would be great to have a window where to have all the setting and even more a search tool for the settings. When dealing with many settings, it takes you a lot find the specific option, that is why a search box for the settings will be most appreciated.