Vim capture group has an unwanted space Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to replace a character by a newline in VimDuplicate a whole line in VimTab key == 4 spaces and auto-indent after curly braces in VimVim clear last search highlightingWhat is your most productive shortcut with Vim?Redefine tab as 4 spacesHow to do case insensitive search in VimHow does the vim “write with sudo” trick work?What is a non-capturing group? What does (?:) do?How to exit the Vim editor?

Weaponising the Grasp-at-a-Distance spell

How do I deal with an erroneously large refund?

How to show a density matrix is in a pure/mixed state?

What's the connection between Mr. Nancy and fried chicken?

2 sample t test for sample sizes - 30,000 and 150,000

Is it OK if I do not take the receipt in Germany?

What is the ongoing value of the Kanban board to the developers as opposed to management

Magento 2 Editing phtml files in Production Mode

How can I introduce the names of fantasy creatures to the reader?

What helicopter has the most rotor blades?

Are Flameskulls resistant to magical piercing damage?

Marquee sign letters

Why does my GNOME settings mention "Moto C Plus"?

Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?

Is there a way to convert Wolfram Language expression to string?

tikz: drawing arrow

Putting Ant-Man on house arrest

Can gravitational waves pass through a black hole?

Should man-made satellites feature an intelligent inverted "cow catcher"?

Why doesn't the university give past final exams' answers?

Import keychain to clean macOS install?

How is an IPA symbol that lacks a name (e.g. ɲ) called?

Alternative to "rest in peace" (RIP)

Like totally amazing interchangeable sister outfit accessory swapping or whatever



Vim capture group has an unwanted space



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to replace a character by a newline in VimDuplicate a whole line in VimTab key == 4 spaces and auto-indent after curly braces in VimVim clear last search highlightingWhat is your most productive shortcut with Vim?Redefine tab as 4 spacesHow to do case insensitive search in VimHow does the vim “write with sudo” trick work?What is a non-capturing group? What does (?:) do?How to exit the Vim editor?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















The context is that I am copy pasting React props definition into the function arguments, so that I don't have to type the variable names one by one:



// Select these 3 lines with V3j 
MyComponent.propTypes =
formName: PropTypes.string.isRequired,
formPurpose: PropTypes.string.isRequired,
formPlaceholder: PropTypes.string.isRequired,
;

<MyComponent
// Past here with the output below <----------- expeted output
formName=formName
formPurpose=formPurpose
formPlaceholder=formPlaceholder
/>


To remove the : PropTypes.string.isRequired and change it to =variableNameHere I'm using the following Vim regex:



:'<,'>s/(.*)zs:.*/=1/g


This should capture the variable name, remove everything after : and put the capture inside the curly brackets on =.



The result is the following:



formName= formName
formPurpose= formPurpose
formPlaceholder= formPlaceholder


There's an unwanted space after { and I can't figure out what is that space in the regex. Any ideas?










share|improve this question
























  • What's expected output?

    – anubhava
    Mar 22 at 14:08











  • Updated the question to make it clear what's the expected output

    – Christopher Francisco
    Mar 22 at 14:14






  • 2





    you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

    – Doktor OSwaldo
    Mar 22 at 14:26












  • Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

    – Christopher Francisco
    Mar 22 at 15:23

















2















The context is that I am copy pasting React props definition into the function arguments, so that I don't have to type the variable names one by one:



// Select these 3 lines with V3j 
MyComponent.propTypes =
formName: PropTypes.string.isRequired,
formPurpose: PropTypes.string.isRequired,
formPlaceholder: PropTypes.string.isRequired,
;

<MyComponent
// Past here with the output below <----------- expeted output
formName=formName
formPurpose=formPurpose
formPlaceholder=formPlaceholder
/>


To remove the : PropTypes.string.isRequired and change it to =variableNameHere I'm using the following Vim regex:



:'<,'>s/(.*)zs:.*/=1/g


This should capture the variable name, remove everything after : and put the capture inside the curly brackets on =.



The result is the following:



formName= formName
formPurpose= formPurpose
formPlaceholder= formPlaceholder


There's an unwanted space after { and I can't figure out what is that space in the regex. Any ideas?










share|improve this question
























  • What's expected output?

    – anubhava
    Mar 22 at 14:08











  • Updated the question to make it clear what's the expected output

    – Christopher Francisco
    Mar 22 at 14:14






  • 2





    you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

    – Doktor OSwaldo
    Mar 22 at 14:26












  • Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

    – Christopher Francisco
    Mar 22 at 15:23













2












2








2








The context is that I am copy pasting React props definition into the function arguments, so that I don't have to type the variable names one by one:



// Select these 3 lines with V3j 
MyComponent.propTypes =
formName: PropTypes.string.isRequired,
formPurpose: PropTypes.string.isRequired,
formPlaceholder: PropTypes.string.isRequired,
;

<MyComponent
// Past here with the output below <----------- expeted output
formName=formName
formPurpose=formPurpose
formPlaceholder=formPlaceholder
/>


To remove the : PropTypes.string.isRequired and change it to =variableNameHere I'm using the following Vim regex:



:'<,'>s/(.*)zs:.*/=1/g


This should capture the variable name, remove everything after : and put the capture inside the curly brackets on =.



The result is the following:



formName= formName
formPurpose= formPurpose
formPlaceholder= formPlaceholder


There's an unwanted space after { and I can't figure out what is that space in the regex. Any ideas?










share|improve this question
















The context is that I am copy pasting React props definition into the function arguments, so that I don't have to type the variable names one by one:



// Select these 3 lines with V3j 
MyComponent.propTypes =
formName: PropTypes.string.isRequired,
formPurpose: PropTypes.string.isRequired,
formPlaceholder: PropTypes.string.isRequired,
;

<MyComponent
// Past here with the output below <----------- expeted output
formName=formName
formPurpose=formPurpose
formPlaceholder=formPlaceholder
/>


To remove the : PropTypes.string.isRequired and change it to =variableNameHere I'm using the following Vim regex:



:'<,'>s/(.*)zs:.*/=1/g


This should capture the variable name, remove everything after : and put the capture inside the curly brackets on =.



The result is the following:



formName= formName
formPurpose= formPurpose
formPlaceholder= formPlaceholder


There's an unwanted space after { and I can't figure out what is that space in the regex. Any ideas?







regex vim






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 15:22







Christopher Francisco

















asked Mar 22 at 14:00









Christopher FranciscoChristopher Francisco

6,6941760127




6,6941760127












  • What's expected output?

    – anubhava
    Mar 22 at 14:08











  • Updated the question to make it clear what's the expected output

    – Christopher Francisco
    Mar 22 at 14:14






  • 2





    you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

    – Doktor OSwaldo
    Mar 22 at 14:26












  • Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

    – Christopher Francisco
    Mar 22 at 15:23

















  • What's expected output?

    – anubhava
    Mar 22 at 14:08











  • Updated the question to make it clear what's the expected output

    – Christopher Francisco
    Mar 22 at 14:14






  • 2





    you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

    – Doktor OSwaldo
    Mar 22 at 14:26












  • Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

    – Christopher Francisco
    Mar 22 at 15:23
















What's expected output?

– anubhava
Mar 22 at 14:08





What's expected output?

– anubhava
Mar 22 at 14:08













Updated the question to make it clear what's the expected output

– Christopher Francisco
Mar 22 at 14:14





Updated the question to make it clear what's the expected output

– Christopher Francisco
Mar 22 at 14:14




2




2





you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

– Doktor OSwaldo
Mar 22 at 14:26






you may have a whitespace at the beginning of the line maybe replace .* with w* may help? Can not reproduce that without the whitespace. If you can run vim without your plugins/conf (vim -u NONE) and try again

– Doktor OSwaldo
Mar 22 at 14:26














Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

– Christopher Francisco
Mar 22 at 15:23





Seems like I had whitespaces, silly me. I updated the question to include the whitespaces

– Christopher Francisco
Mar 22 at 15:23












1 Answer
1






active

oldest

votes


















4














Use



:'<,'>s/[[:blank:]]*(.*)zs:.*/=1/g


The spaces you get are the leading spaces before your expression.






share|improve this answer


















  • 1





    Can also use s instead of [[:blank:]] here. It is a bit easier to type

    – Peter Rincker
    Mar 22 at 18:20











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55301267%2fvim-capture-group-has-an-unwanted-space%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









4














Use



:'<,'>s/[[:blank:]]*(.*)zs:.*/=1/g


The spaces you get are the leading spaces before your expression.






share|improve this answer


















  • 1





    Can also use s instead of [[:blank:]] here. It is a bit easier to type

    – Peter Rincker
    Mar 22 at 18:20















4














Use



:'<,'>s/[[:blank:]]*(.*)zs:.*/=1/g


The spaces you get are the leading spaces before your expression.






share|improve this answer


















  • 1





    Can also use s instead of [[:blank:]] here. It is a bit easier to type

    – Peter Rincker
    Mar 22 at 18:20













4












4








4







Use



:'<,'>s/[[:blank:]]*(.*)zs:.*/=1/g


The spaces you get are the leading spaces before your expression.






share|improve this answer













Use



:'<,'>s/[[:blank:]]*(.*)zs:.*/=1/g


The spaces you get are the leading spaces before your expression.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 22 at 14:33









Alexey GodinAlexey Godin

1945




1945







  • 1





    Can also use s instead of [[:blank:]] here. It is a bit easier to type

    – Peter Rincker
    Mar 22 at 18:20












  • 1





    Can also use s instead of [[:blank:]] here. It is a bit easier to type

    – Peter Rincker
    Mar 22 at 18:20







1




1





Can also use s instead of [[:blank:]] here. It is a bit easier to type

– Peter Rincker
Mar 22 at 18:20





Can also use s instead of [[:blank:]] here. It is a bit easier to type

– Peter Rincker
Mar 22 at 18:20



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55301267%2fvim-capture-group-has-an-unwanted-space%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해