4,032 questions
0
votes
1
answer
37
views
Sublime don't want to find words with only a few letter match
So, somehow - when I'm trying to search something - I need to fully write this word otherwise sublime will not find it.
Check screen:
enter image description here
Is that a new feature or that's a bug ...
1
vote
0
answers
42
views
Toggle comment color in Sublime Text
Since I write a lot of comments in my code I would like to toggle color of them. They can be default color(grayish) while I'm looking at the code, but when reading and writing them I would like to ...
0
votes
1
answer
85
views
Separate Build for every file/tab in Sublime Text
When you run Build System is Sublime by default it creates a bottom pop-up that is bound to that sublime window. When you change to other tabs bottom pop-up will still stay for the Build that you have ...
0
votes
1
answer
65
views
Default message when Build System starts in Sublime Text
When you run Sublime Build and it finishes, there is a message [Finished ] (in the picture). I would like to add default message when every Build starts to be like "[Started]":
Also it ...
1
vote
1
answer
131
views
Delete every whitespace or tab or newline until a character is present with Sublime
With ST2, at the current cursor position, I'd like to delete every whitespace or tab or newline until a character is present. CTRL+DEL or CTRL+J kind of works, but sometimes you have to repeat it ...
0
votes
1
answer
528
views
How to copy line in Sublime without new line
In Sublime when you have nothing selected and click ctrl+c you will copy whole line with the new line. How to remove that new line, so ctrl+c will copy only current line.
I'm using Sublime on Windows.
1
vote
1
answer
58
views
Ungreedy regex matching in sublime text 2
I'm fairly familiar with regex, but it seems I'm not so good at doing regex in sublime text 2, what I thought should work seems to match but too greedily.
I have a file with lots of mv commands in it ...
0
votes
2
answers
371
views
Shortcut to open the currently opened file's folder left panel
I know the "File > Open folder..." dialog box in Sublime.
The problem is that:
it first opens a "file picker" dialog box
after choosing the right folder, it opens the folder in ...
-2
votes
2
answers
686
views
Sublime Text 2: Find all 8 digit sequences between slashes and replace
I have an SQL file loaded up in Sublime Text 2 that has hundreds of strings I need to find and replace. I've been doing them one by one because I couldn't find a regex example and I don't know a lot ...
1
vote
1
answer
587
views
Reindent minified Javascript with Sublime
Let's say you have an example.js file open in SublimeText:
function foo(bar){a=1;b=2;for(var i=0;i<100;i++){console.log(i);};}
How to automatically have an indented code with SublimeText? such as:
...
0
votes
1
answer
42
views
Sublime Text: overlay cannot match file name with @
I have a file named [email protected], which have a @ in file name.
and I use cmd + p to open the overlay, then I input image,
the result shows all files which has image in it,
then I input @ to make my ...
8
votes
2
answers
15k
views
Comparing the contents of two files in Sublime Text, with a side by side view
I have already read Comparing the contents of two files in Sublime Text but the answers (either the native "Folders > Diff files" feature, or using FileDiffs) show the differences between ...
1
vote
1
answer
65
views
Codes in Sublime Text 2 and 3 are not in order
As the image above, formats for html and css suddenly became like this after I opened my sublime text 2 and 3, I can't even click ENTER. At first, this happened on my Sublime Text 2 so I uninstalled ...
0
votes
0
answers
623
views
Sublime Text 3 with SFTP package not mapping (syncing)
Background:
I'm currently using sublime text 3 (free) and have installed the (free) sublime SFTP package and I'd like to work remotely on my server files. I saw a youtube video that this is possible ...
2
votes
1
answer
317
views
Paste while in Overwrite / Insert mode with Sublime Text
When in Overwrite mode (enabled with Insert key), if the cursor is on the letter W:
Hello |World
then pasting 123 from clipboard (CTRL+V) gives:
Hello 123World
instead of Hello 123ld. How to have ...