@@ -8,80 +8,84 @@ The aim of this extension is to increase productivity by unifying set of actions
8
8
Select a text of a file and open the * editor commands* _ (ctrl+shift+P / cmd+shift+P)_ and search for one of the next commands:
9
9
10
10
#### >Copy Selection
11
- copy the selection in a new file
11
+ copy the selection in a new file.
12
12
13
13
---
14
14
#### >Move Selection
15
- move the selection in a new file, results in having the original text deleated
15
+ Move the selection in a new file, results in having the original text deleated.
16
16
17
17
---
18
18
#### >Isolate Selection
19
- isolate the selection, results in having the content of the document replaced with just the selected text
19
+ Isolate the selection, results in having the content of the document replaced with just the selected text.
20
20
21
21
---
22
22
#### >Search Selection
23
- search for the selection on * google*
23
+ Search for the selection on * google* .
24
24
25
25
---
26
26
#### >URL Encode Selection
27
- it will replace the selected text with a URL encoded version of it
27
+ It will replace the selected text with a URL encoded version of it.
28
28
29
29
---
30
30
#### >Base64 Encode Selection
31
- it will replace the selected text with a Base64 encoded version of it
31
+ It will replace the selected text with a Base64 encoded version of it.
32
32
33
33
---
34
34
#### >URL Decode Selection
35
- it will replace the selected text with a URL decoded version of it
35
+ It will replace the selected text with a URL decoded version of it.
36
36
37
37
---
38
38
#### >Base64 Decode Selection
39
- it will replace the selected text with a Base64 decoded version of it
39
+ It will replace the selected text with a Base64 decoded version of it.
40
40
41
41
---
42
42
#### >Lowercase Selection
43
- turns the selected text to lowercase
43
+ Turns the selected text to lowercase.
44
44
45
45
---
46
46
#### >Uppercase Selection
47
- turns the selected text to uppercase
47
+ Turns the selected text to uppercase.
48
48
49
49
---
50
50
#### >Camel to Snake case Selection
51
- the selected camel case text will be turned to snake case _ (eg. callAsync -> call\_ async)_
51
+ The selected camel case text will be turned to snake case _ (eg. callAsync -> call\_ async)_ .
52
52
53
53
---
54
54
#### >Snake to Camel case Selection
55
- the selected snake case text will be turned to camel case _ (eg. call\_ async -> callAsync)_
55
+ The selected snake case text will be turned to camel case _ (eg. call\_ async -> callAsync)_ .
56
56
57
57
---
58
58
#### >Kebab to Camel case Selection
59
- the selected kebab case text will be turned to camel case _ (eg. call-async -> callAsync)_
59
+ The selected kebab case text will be turned to camel case _ (eg. call-async -> callAsync)_ .
60
60
61
61
---
62
62
#### >Camel to Kebab case Selection
63
- the selected camel case text will be turned to kebab case _ (eg. callAsync -> call-async)_
63
+ The selected camel case text will be turned to kebab case _ (eg. callAsync -> call-async)_ .
64
64
65
65
---
66
66
#### >Kebab to Snake case Selection
67
- the selected kebab case text will be turned to snake case _ (eg. call-sync -> call\_ async)_
67
+ The selected kebab case text will be turned to snake case _ (eg. call-sync -> call\_ async)_ .
68
68
69
69
---
70
70
#### >Snake to Kebab case Selection
71
- the selected snake case text will be turned to kebab case _ (eg. call\_ sync -> call-async)_
71
+ The selected snake case text will be turned to kebab case _ (eg. call\_ sync -> call-async)_ .
72
72
73
73
---
74
74
#### >Length of Selection
75
- pops an alert, in the bottom right corner, with the information of the length of the selected text
75
+ Pops an alert, in the bottom right corner, with the information of the length of the selected text.
76
76
77
77
---
78
78
#### >Number of non ASCII Characters in Selection
79
- pops an alert, in the bottom right corner, with the information of the number of non ascii characters in the selected text
79
+ Pops an alert, in the bottom right corner, with the information of the number of non ascii characters in the selected text.
80
80
81
81
---
82
82
#### >Reverse Selection
83
- It will reverse the selection, line by line
83
+ It will reverse the selection, line by line.
84
+
85
+ ---
86
+ #### >Log Selection
87
+ Puts the selection in a log call, just after the line of the selection. The log will include an log ID. _ ** Currently only works for JavaScript._
84
88
85
89
---
86
90
#### >Lorem Ipsum on Selection
87
- replaces the selection with * lorem ipsum* , if nothing is selected will replace the whole line where the cursor is placed
91
+ Replaces the selection with * lorem ipsum* , if nothing is selected will replace the whole line where the cursor is placed.
0 commit comments