SublimeText RegReplace Highlighted Text Only - sublimetext2

I am trying to use the Sublime Text Plugin RegReplace package so I can highlight a line of text and replace spaces with dashes.
Goal
Hello My Name is Jesse, Highlight, CTRL + . replaces with:
Hello-My-Name-is-Jesse -- for the purpose for saving time creating markdown links.
Currently Working, But Runs Entire File
I would really like this to only replace the text I have highlighted wit a hotkey, is this possible?
I have this in reg_replace_rules.sublime-settings
{
"replacements": {
"replace_spaces_with_dash": {
"find" : "(\\s)",
"replace": "-",
"greedy": true,
"case": false
}
}
}
Here is my User Hotkeys
{
"keys": ["ctrl+."],
"command": "reg_replace",
"args": {"replacements": ["replace_spaces_with_dash"]}
},
However, this replaces the entire file with spaces. I am missing something I hope, I am not sure the scope. Any help would be appreciated.

Related

How can i generate number for same piece of text using VS Code

i have many pieces of code same for example like this
alt="Greece"
alt="Greece"
alt="Greece"
alt="Greece"
Can i somehow modify it to this? Is there any kind of function like in Excel or something like that please? Imagination write it manualy each is horrible
alt="Greece 1"
alt="Greece 2"
alt="Greece 3"
...
alt="Greece 200"
You can use the extension Regex Text Generator
select the word Greece
select all cases you want with
Ctrl+D multiple times
Ctrl+Shift+L to select all
use Shift+Alt+Click to create multiple cursors
if needed RightArrow to get all cursors after the word Greece
execute command: Generate text based on Regular Expression (regex)
As Original Text Regex use: .*
As Generator Regex use: {{=i+1}} (watch the space as first char)
Look at the preview, use Esc to cancel and Enter to accept
You can use any calculation based on i you want and you can also match number in the selected text and use that in the calculation N[...].
You can also add the word Greece by using Greece {{=i+1}}
You have a couple of options. First, using the extension, Find and Transform (disclaimer, I wrote that extension, this is very easy. Make this keybinding in your keybindings.json (after installing the extension):
{
"key": "alt+n", // whatever keybinding you like
"command": "findInCurrentFile",
"args": {
"find": "(alt=\"Greece\")",
"replace": "$1 ${matchNumber}",
"isRegex": true
}
},
Actually you can make it even easier if you first select what you want to modify (see the demo below). Then use this simple keybinding:
{
"key": "alt+n",
"command": "findInCurrentFile",
"args": {
"replace": "$1 ${matchNumber}", // what you select will be put into $1
"isRegex": true
}
},
Another option - not quite as easy
Snippets have a variable $CURSOR_NUMBER which is useful here.
Make this keybinding:
{
"key": "alt+n",
"command": "editor.action.insertSnippet",
"args": {
"snippet": "$TM_SELECTED $CURSOR_NUMBER"
},
"when": "editorHasSelection"
},
Do a find on your desired text match: alt="Greece"
Ctrl+Shift+L to select all occurrences of the find match.
Trigger the snippet via its keybinding.
Demo of this method:
So this second method is more steps but doesn't require an extension.

VS Code editor: how select everything until next tag - or next occurent of <

There are keyboard shortcuts to select everything between matching brackets and to grow and shrink your selecting, however sometimes there is another markup inside. Is there a way to select everything from coursor to beginning of the next element? For example the cursor sits after the tag. When pressing shortcut I want to:
<p>Select only this text<span>and not this</span>, also not this.</p>
Thank you
You can use the extension Select By.
In your settings.json
"selectby.regexes": {
"till-angle-bracket": {
"forward": "<",
"forwardInclude": false
}
}
You can use the command Select text range based on regex and select till-angle-bracket from the list
or you can add a keybinding
{
"key": "ctrl+shift+y", // or any other key-combo
"when": "editorTextFocus",
"command": "selectby.regex",
"args": ["till-angle-bracket"]
}

Paste multi-cursor copy/paste WITHOUT newlines in sublime text

Is there a way to paste a multi-cursor (Ctrl+d, Ctrl+d, ... Ctrl+C) select, stripped of its newlines?
If [...] represents the highlight, and ⦙ the cursor:
The ⦙[red].
The ⦙[blue].
The ⦙[green].
And if I pasted I'd get:
red
blue
green⦙
but instead I want
redbluegreen⦙
Is this possible?
Save the following script #:
/Packages/Paste Without NewLines/paste_without_newlines.py
import sublime, sublime_plugin
class paste_without_newlines( sublime_plugin.TextCommand ):
def run( self, edit ):
clipboard = sublime.get_clipboard()
clipboard = clipboard.replace( "\n", "" )
sublime.set_clipboard( clipboard )
self.view.run_command( "paste" )
To execute via Command Palette > Paste Without NewLines, add the following code #:
/Packages/Paste Without NewLines/Default.sublime-commands
[
{
"caption": "Paste Without NewLines",
"command": "paste_without_newlines",
},
]
To execute via Ctrl + Shift + Alt + V, add the following code #:
/Packages/Paste Without NewLines/Default.sublime-keymap
[
{
"keys": ["ctrl+shift+alt+v"],
"command": "paste_without_newlines",
},
]
For anyone else stumbling across this, there's a sublime text package that solves this exact problem, it's called Paste PDF Text Block.
You can then Ctrl+Alt+v the text you want to copy from a pdf file into a new file in Sublime Text.
Worked a treat, and is a good solution if you don't know enough about making your own packages in sublime text, like me :(

Alter behavior of "}" shortcut in Sublime Text 3 Vintage Mode

In Sublime Text 3 Vintage Mode, the keyboard shortcut "}" performs the following command:
{
"keys": ["}"],
"command": "set_motion",
"args": {
"motion": "move",
"motion_args": {
"by": "stops",
"empty_line": true,
"extend": true,
"forward": true,
"separators": "",
"word_begin": false
}
}
}
I can't find good documentation for set_motion and I'm not sure where to start to implement this from scratch.
How do I change the behavior so that instead of moving to the next empty line, it moves to the next line with only whitespace?
Thanks!
Can't really help with the set_motion command, but doing it yourself via a plugin shouldn't be to bad. First off, here is a link to the ST3 API docs. You will be creating a sublime_plugin.TextCommand. Of particular interest are view#sel, view#line, and view#substr.
view#sel will get you the position of the cursor(s).
view#line with a point passed in (initially retrieved from view#sel) will create give you a region of the entire line.
view#substr takes the region (result from view#line) and returns the string of the characters in that line. You can use a regular expression to see if that line contains only white space, and place the cursor appropriately. If the line does not meet the requirement, you can increase the second point in the region to move to the next line.
Hope that helps getting you moving in the right direction.
Here is a comment from the softwares author on the options availability for “by”: “stops”
https://forum.sublimetext.com/t/restoring-st2-cursor-move-by-word-behaviour-in-st3-on-os-x/14035
If you need more control, then using the move command with “by”: “stops” should allow more configurability. When using stops, you need to tell the command which logical units to stop on. The options are:
"word_begin": false,
"word_end": false,
"punct_begin": false,
"punct_end": false,
"sub_word_begin": false,
"sub_word_end": false,
"line_begin": false,
"line_end": false,
"empty_line": false,

Indenting code in Sublime text 2?

In Visual Studio I can press Ctrl+K+D to indent everything so the code is structured nicely and readable. Is there a shortcut in Sublime 2 to do the same?
You can find it in Edit → Line → Reindent, but it does not have a shortcut by default.
You can add a shortcut by going to the menu Preferences → Keybindings → User, then add there:
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
(example of using the F12 key for that functionality)
The config files use JSON-syntax, so these curly braces have to be placed comma-separated in the square-brackets that are there by default. If you don't have any other key-bindings already, then your whole Keybindings → User file would look like this, of course:
[
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false}}
]
The reindent command only works on the currently selected lines unless the "single_line" argument is set to false.
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
Now, pressing f12 will reindent the entire document.
No one seems to love mac re-indentation, So here How I do it:
[
{ "keys": ["command+shift+i"], "command": "reindent"}
]
In Preferences > Key Binding - User
One more extra tip:
add
{ "keys": ["command+0"], "command": "focus_side_bar" }
to have sidebar file tree view navigation using keyboard.
Note:
Add , at the end of each {}, if you have more than one {} set of objects
There is no default shortcut for reindenting a file. However you can create one by following eznme's answer above.
You can also use the Command Palette by pressing:
Control+Shift+P (or ⌘+Shift+P on a Mac)
Type the first few characters of Reindent e.g: rein
Press Enter to run the command(The first command at the top should now show Indentation: Reindent Lines)
For those interested it is easy to change but for a lover of Netbeans and the auto-format you can change the key binding from F12 to ctrl+shift+F to use your beloved key binding. Sad part is that you have to select all to format the entire file. Netbeans still has the upper hand on that. If anyone knows how to overcome that limitation I'm all ears. Otherwise happy reindenting (auto-formating).
To indent with the same keys like Visual Studio Ctrl+K+D (I am a Visual Studio user so I am used to this combination) I suggest:
[
{ "keys": ["ctrl+k", "ctrl+d"], "command": "reindent", "args": {"single_line": false} }
]
Write this on Preferences>Key Bindings - User
It is very simple. Just go to Edit=>Line=>Reindent
Netbeans like Shortcut Key
Go to Preferences > Key Bindings > User and add the code below:
[
{ "keys": ["ctrl+shift+f"], "command": "reindent", "args": {"single_line": false} }
]
Usage
Ctrl + Shift + F
Select all code that you intend to indent, then hit Ctrl + ] in Sublime text to indent.
For macOS users, use command + ] to indent, and command + [ to un-indent.
code formatter.
simple to use.
1.Install
2.press ctrl + alt + f (default)
Thats it.
Beside of the inbuilt 'reindent' function, you can also install other plugins, such as SublimeAStyleFormatter and CodeFormatter. These plugins are better for their specify language.
Just in case this stop working for anyone like me, in OS X, the command key is identified as superso it should be able to do something like this:
[
{
"keys": ["super+i"],
"command": "reindent",
"args": {
"single_line":
false}
}
]
in this case using command+i is going to indent your whole code (eclipse like :) )
I used to use Alt + Shift + F in NetBeans, I checked and there isn't any collision in the default keymap array of sublime, so I added it to my sublime and I'm using it without any problem.
For those who like the default key binding for IntelJ IDEA, select Preferences > Settings - User:
And paste in the following to have the command + shift + l shortcut for auto indent:
[
{ "keys": ["command+shift+l"], "command": "reindent"}
]
You can add a shortcut by going to the menu Preferences → Keybindings → User, then add there:
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
For Auto-Formatting in Sublime Text 2: Install Package: Tag from Command Palette, then go to Edit -> Tag -> Auto-Format Tags on Document
Select everything, or whatever you want to re-indent and do Alt+ E+L+R.
This is really quick and painless.
This is my configuration for sublime-keymap:
[
{
"keys": [",+=+="],
"command": "reindent",
"args": {
"single_line": false
}
}
]
For vim people, just use ,== to reindent the whole file.
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} }
You can get the reindent option by using the above code
Steps:
Open Sublime Text.
Open Preferences.
Open Key Bindings -User.
Put below code:
[{"keys": ["ctrl+shift+c"], "command": "reindent"},]
I use CtrlShiftC and you also use other key shortcut.