How can I use sublime text with the Hindi language? I just want to copy and paste the word: " इटली " in the editor, but It returns me the following text instead:
How to remove that circle?
You can't remove that circle.But that won't cause a problem. If you are going to show it in a web-page it will be shown normally.
Other solution is to use notepad instead.
Related
In Notepad ++ we can use Move to other view for copy/paste attributes easily . But How i use sublime text 2 like two windows at a time for copy/paste attributes easily ?
If I understood your question right you will find the answer by accessing sublime's menu View>Layout>... Columns
When I unfold a line in Sublime Text, I don't like how the lines contained inside are already unfolded. I want to use a plugin that fixes this. Below are some images that help explain what I'm looking for.
Imagine a variable user folded like this in Sublime Text:
When I unfold the user variable, I want my code to look like...
And if I unfold user.friends, I want my code to look like...
Is there a plugin like this that exists for Sublime Text?
Thank you for any help!
Is there any way to output coloful text to the sublime text console? I tried this:
"\033[0;32mTest\033[0m"
and the console displays something similar to this:
ESC[0;32mTestESC[0m"
Unfortunately, the Sublime Text console is essentially monochrome. Its foreground and background colors can be changed via the Packages/Theme - Default/Widgets.stTheme file (or your theme's equivalent), but you can't colorize output using terminal escape codes, like you are using.
In notepad++ there is a toolbar button to switch on/off display of EOL characters, i.e. carriage return and line feed.
Can Sublime Text 2 do the similar thing?
In case anyone is here years later, I found success with the sublime package RawLineEdit.
Install with Package Control
Enter Raw Line Edit: Toggle into the command palette (via Ctrl+Shift+P)
Further documentation of features can be found in the User Guide.
Note that this package is only supported in Sublime Text 3.
Sublime Text does not currently support displaying EOL characters.
http://sublimetext.userecho.com/topic/104394-is-it-possible-to-show-all-characters-spaces-tabs-cr-lf-etc/
There is a quick workaround, in the search, enable the Regular expression and the search value use \n. You will see all the line feed is highlighted.
05 2021
This might not really helpful for OP question and also the question is 8yrs old and iam assuming he must have got a answer pretty early on.
This is anyone still looking for the answer to show the carriage return in Sublime text 3.
As on May 2021 the current version is 3.2.2
Detailed version of #Sam YC answer
Tested in Sublime text 3
Press Ctrl+ F (Windows)
Select the first box 'Regular Expression (Alt+R)'
Also select 'Highlight matches' (Last box with plain border)
Enter \n
You should see something like this. If you do not see anything, just toggle the 'Highlight matches'.
There is another way to achieve this.
Go to preference -> choose "settings-user"
In the file opened paste this command.
"ensure_newline_at_eof_on_save": true
I am working with Visual Studio 2008 editor. Is there a way to take a piece of text for example, highlight it and use shortcuts to quickly add markup?
For example, lets say I have a text, I went to: the store and I want to bold it, I have to type <b>the store</b>. Is there a quicker and easier way to do this?
Select text, Ctrl+X, type in your tags which will be autoclosed by vs, Ctrl+V
With HTML Editor just press Ctrl+B...
With regular text editor VS does not provide something build-in, but you can add custom macros. Something like the following will do job for you.
Sub MakeSelectionBold()
DTE.ActiveDocument.Selection.Text = "<b>" + DTE.ActiveDocument.Selection.Text + "</b>"
End Sub
You can then assign it to the short-cut or add button to your toolbar.