All Questions
2 questions
0
votes
0
answers
74
views
Sublime Text 3 : Creating Snippet using simple regex
I tried to create a simple snippet that check if there is a 's' and print me the result
${1:s} ${1/(^s$)/(?1yes:no)/}
When there is only an s it should print me "s yes"
else it should ...
1
vote
0
answers
276
views
Create text manipulation function to execute in Visual Studio Code
Is it possible to create a function to manipulate a text selection?
I'd like to select a paragraph and tell Visual Studio Code (or in any other text editor) to execute a function on that selection.
I'...