My code snippets is;
"echo": {
"prefix": "echo",
"body": [
"echo \"\";"
],
"description": "a"
}
How I get cursor position in double quotes?
My code snippets is;
"echo": {
"prefix": "echo",
"body": [
"echo \"\";"
],
"description": "a"
}
How I get cursor position in double quotes?
$0
signals the location of the final cursor stop
"echo": {
"prefix": "echo",
"body": [
"echo \"$0\";"
],
"description": "a"
}
© 2022 - 2024 — McMap. All rights reserved.